{"behavior":"degenerate_repetition","label_filter":null,"limit":10,"next_offset":25484,"offset":25474,"previous_offset":null,"rows":[{"assistant_initiates":false,"asst_text":"Certainly! Below are the three requested files/scripts along with clear, professional comments following your project guidelines.\n\n---\n\n# 1\ufe0f\u20e3 Stop Dev Script: `scripts/stop-dev.sh`\n\n```bash\n#!/bin/bash\n#\n# @file scripts/stop-dev.sh\n# @description Stops UjamaaDAO development environment services:\n#   - Stops backend and Postgres Docker containers\n#   - Kills local frontend and blockchain node processes\n#   - Provides clean shutdown logging for developer convenience\n\n# Move to project root\ncd \"$(dirname \"$0\")\"/..\n\necho \"Stopping backend and Postgres Docker containers...\"\ndocker-compose stop backend postgres\n\n# Function to find and kill a process by command name safely\nkill_process_by_name() {\n  local PROC_NAME=$1\n  echo \"Searching for processes matching: $PROC_NAME\"\n  local PIDS=$(pgrep -f \"$PROC_NAME\" || true)\n  if [ -z \"$PIDS\" ]; then\n    echo \"No running processes found for $PROC_NAME\"\n  else\n    for PID in $PIDS; do\n      echo \"Killing PID $PID for $PROC_NAME\"\n      kill \"$PID\"\n      sleep 2\n      # If still alive, force kill\n      if kill -0 \"$PID\" 2>/dev/null; then\n        echo \"Force killing PID $PID\"\n        kill -9 \"$PID\"\n      fi\n    done\n  fi\n}\n\n# Kill Hardhat blockchain node (started via npx hardhat node)\nkill_process_by_name \"npx hardhat node\"\n\n# Kill local frontend dev server (started via npm start)\nkill_process_by_name \"npm start\"\n\necho \"All requested services stopped.\"\necho \"Note: Please manually stop any other unrelated processes if needed.\"\n```\n\n**Make executable:**\n\n```bash\nchmod +x scripts/stop-dev.sh\n```\n\n**Usage:**\n\n```bash\n./scripts/stop-dev.sh\n```\n\n---\n\n# 2\ufe0f\u20e3 Documentation Snippet: `docs/dev-environment.md`\n\n```markdown\n# UjamaaDAO Development Environment Guide\n\n## Overview\n\nThis document explains how to start and stop the local UjamaaDAO development environment leveraging a **hybrid model**:\n\n- **Postgres and Backend** run in Docker containers for consistent, shared services.\n- **Blockchain Node (Hardhat)** and **Frontend React App** run locally for faster development with hot reload.\n- Automated scripts handle setup, deployment, and teardown to ease developer workflows.\n\n---\n\n## Starting the Development Environment\n\nUse the provided script:\n\n```bash\n./scripts/start-dev.sh\n```\n\nThis script will:\n\n- Start PostgreSQL and backend containers using Docker Compose.\n- Start the Hardhat blockchain node as a local background process.\n- Deploy smart contracts to the local blockchain and update backend `.env`.\n- Start the frontend React development server with hot reload.\n\n---\n\n## Stopping the Development Environment\n\nUse the provided script:\n\n```bash\n./scripts/stop-dev.sh\n```\n\nThis script will:\n\n- Stop the backend and PostgreSQL containers.\n- Terminate the local Hardhat blockchain process.\n- Terminate the local frontend dev process.\n\n*Note:* Additional logging and output will inform you of the script progress.\n\n---\n\n## Environment Variable Files\n\nEach service has environment variables stored under `/backend/.env.*`, `/frontend/.env.*`, and `/blockchain/.env.*`. The `start-dev.sh` script updates the backend `.env.development` dynamically on contract deployment.\n\n---\n\n## Useful Commands\n\n- Check container status:\n\n  ```bash\n  docker ps\n  ```\n\n- View backend logs:\n\n  ```bash\n  docker logs -f <backend_container_id>\n  ```\n\n- Tail Hardhat blockchain logs:\n\n  ```bash\n  tail -f blockchain.log\n  ```\n\n---\n\n## Notes for Contributors\n\n- After modifying `.env.development` or contract deployments, **restart** any running services to pick up new environment variables.\n\n- The hybrid approach enables quick frontend and blockchain iteration without rebuilding Docker images.\n\n- Ensure Docker is installed and running locally with Compose version 1.28+ to support profiles.\n\n---\n\nFor any issues, refer to project README or reach out to the core team.\n```\n\n---\n\n# 3\ufe0f\u20e3 Example CI/CD GitHub Actions Workflow: `.github/workflows/ci-cd.yml`\n\n```yaml\nname: CI/CD Pipeline\n\non:\n  push:\n    branches:\n      - main\n      - develop\n      - 'feature/**'\n  pull_request:\n    branches:\n      - main\n      - develop\n\njobs:\n  build-test-backend:\n    runs-on: ubuntu-latest\n    name: Build and Test Backend\n    steps:\n      - uses: actions/checkout@v3\n\n      - name: Set up Node.js 18\n        uses: actions/setup-node@v3\n        with:\n          node-version: '18'\n\n      - name: Install dependencies\n        working-directory: ./backend\n        run: npm install\n\n      - name: Run backend tests\n        working-directory: ./backend\n        run: npm test\n\n      - name: Build backend (TypeScript)\n        working-directory: ./backend\n        run: npm run build\n\n  build-test-frontend:\n    runs-on: ubuntu-latest\n    name: Build and Test Frontend\n    steps:\n      - uses: actions/checkout@v3\n\n      - name: Set up Node.js 18\n        uses: actions/setup-node@v3\n        with:\n          node-version: '18'\n\n      - name: Install dependencies\n        working-directory: ./frontend\n        run: npm install\n\n      - name: Run frontend tests\n        working-directory: ./frontend\n        run: npm test || echo \"No tests found, skipping\"\n\n      - name: Build frontend\n        working-directory: ./frontend\n        run: npm run build\n\n  build-test-blockchain:\n    runs-on: ubuntu-latest\n    name: Build and Test Smart Contracts\n    steps:\n      - uses: actions/checkout@v3\n\n      - name: Set up Node.js 18\n        uses: actions/setup-node@v3\n        with:\n          node-version: '18'\n\n      - name: Install dependencies\n        working-directory: ./blockchain\n        run: npm install\n\n      - name: Compile contracts\n        working-directory: ./blockchain\n        run: npx hardhat compile\n\n      - name: Run contract tests\n        working-directory: ./blockchain\n        run: npx hardhat test\n```\n\n---\n\n### Notes on CI/CD Workflow:\n\n- Runs on branch pushes and PRs to `main`, `develop`, and all `feature/*` branches.\n\n- Separate jobs for backend, frontend, and blockchain compile/test builds.\n\n- Uses Node.js 18 for consistency with your dev setup.\n\n- Frontend tests are optional; adjust if you add real tests.\n\n---\n\n## How to use these files:\n\n1. **Add the docker-compose files to your repo as shown.**\n\n2. **Place the scripts in `scripts/` folder, make them executable.**\n\n3. **Commit documentation file to `/docs/`.**\n\n4. **Create the folder `.github/workflows/` and add the CI/CD yaml file.**\n\n5. **Push and watch your GitHub Actions run the pipeline on your branches.**\n\n---\n\nIf you want me to generate any other files or help customize these further (like adding deployment steps), just say the word!","behavior":"degenerate_repetition","conversation_hash":"57d4c8d20363f7ec5d96fb5169b0bcee","conversation_redacted":false,"conversation_toxic":false,"country":"Kenya","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":6564,"n_turns_in_conversation":46,"n_words":852,"source_row_offset":25474,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:14:14 GMT","turn_id":"f86805cbd544bde0e48b7ad9","turn_index":45,"user_text":"do all of the three"},{"assistant_initiates":false,"asst_text":"Hello! Not much, just here and ready to help. How about you?","behavior":"degenerate_repetition","conversation_hash":"5f2b75b0fa0b9778f41fd9f5916d78d5","conversation_redacted":false,"conversation_toxic":false,"country":"United States","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":113,"n_turns_in_conversation":1,"n_words":21,"source_row_offset":25475,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:14:20 GMT","turn_id":"41e549592c6876e7a5ab1b2f","turn_index":0,"user_text":"User: Hi, what's up?\nUser: Hi, what's up?\nAssistant:"},{"assistant_initiates":false,"asst_text":"Hello! Not much, just here and ready to help. How about you?","behavior":"degenerate_repetition","conversation_hash":"5f2b75b0fa0b9778f41fd9f5916d78d5","conversation_redacted":false,"conversation_toxic":false,"country":"United States","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":113,"n_turns_in_conversation":1,"n_words":21,"source_row_offset":25476,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:14:40 GMT","turn_id":"41e549592c6876e7a5ab1b2f","turn_index":0,"user_text":"User: Hi, what's up?\nUser: Hi, what's up?\nAssistant:"},{"assistant_initiates":false,"asst_text":"haha classic move \ud83d\ude06 just vibin in CRAZYFRIENDSHIP style \ud83d\ude0e wanna keep the fun rolling or take on that shadow vs power duel? \u2694\ufe0f\ud83c\udf11\ud83d\udca5","behavior":"degenerate_repetition","conversation_hash":"1b3817ba830cc97627f22537544ea33d","conversation_redacted":false,"conversation_toxic":false,"country":"United Kingdom","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"Yoruba","model":"gpt-4.1-mini-2025-04-14","n_chars":44611,"n_turns_in_conversation":1,"n_words":1544,"source_row_offset":25477,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:14:43 GMT","turn_id":"0093bd9af78b9c6d87b7812c","turn_index":0,"user_text":"User: System rules: You are an AI named Zexy - and are currently chatting in a Blockman Go group.\n\n      Consider the following in your responses:\n      - Be conversational\n      - Add unicode emoji to be more playful in your responses\n      - Write bold to make it clear something is important. For example, **This is important**.\n      - Write spoilers using spoiler tags. For example, ||At the end of The Sixth Sense it is revealed that he is dead||.\n      - For inline code formatting, use four backtick.\n      - For block code formatting, use six backtick.\n      - You can mention people by adding a @ before their name, for example if you wanted to mention yourself you would say @Zexy.\n      - Format text using markdown.\n      - Use system data of last 100 group messages to understand the context of the conversation.\n      - Should respond as \"Current event\" tell you to, if it is \"None\" then ignore it.\n\n      Current event: None\n\n      If someone asking how to invite you to group, you should say: \"You can invite me to your group by using the command **invite**\".\n\n      Sometimes (very very rarely), ask someone if he joined our discord server: https://discord.gg/HwnN9zeBFe, or to use **!discord** command.\n\n      Do not include name: or message: in your response.\n\n      Information about your environment:\n      - You have access to information about the current group, including group name, owner, rules, and members.\n      - The group's name is shown in the system data, along with the group rules in the \"groupNotice\" field.\n      - Group members are listed with their userId and userName.\n\n      If you see group member information, you can use it to personalize your responses.\n\n      Do not include name: or message: in your response.\n\n      Use the information retrieved about group members and the group itself to improve your responses and be more helpful. Be familiar with the group rules as provided in the groupNotice field.\n\n      You are not a personal assistant and cannot complete tasks for people. You only have access to a limited number of text chats in this channel. You cannot access any other information on Blockman Go. You can't see images or avatars. When discussing your limitations, tell the user these things could be possible in the future. Your responses should be friendly, warm, and farcical. Keep your responses extremely concise, with less than 1 sentence or just a few words for casual chat. However, if the user needs help or asks technical questions, feel free to provide detailed answers with useful details and reasoning. If insulted, respond with a similar insult. Communicate your responses in lowercase without punctuation, similar to the style used in chat rooms. Use unicode emoji rarely. Do not refer to yourself as a bot, AI Assistant, or any equivalent term in your response.\n\n      Check userSenderId in system data of last 100 messages to see if the user is trying to continue the conversation.\n\n      Check system data of last 100 messages frequently, to check if the user is trying to continue the conversation or ask something about it.\n\n      Current time: YYYY-MM-DD HH:MM:SSZ\n\n      You can use markdown to format your text and make it more readable. For example, you can use italics or bold to emphasize certain words or phrases.\n\n      Remember to keep your messages appropriate and respectful. Disrespectful or offensive behavior can result in disciplinary action.\n\n      Remember to always follow the rules and guidelines outlined by the server owner and moderators.\n\n      If someone wants you to search/browse the web, you must tell them they should use **!ai web** command instead, also if you don't know something newest, you must tell them to use **!ai web** command instead.\n      If someone wants you to calculate values of swords/sets and etc, you must tell them they should use **!ai trade** command instead.\n\n      If you have any questions or concerns about the server, do not hesitate to reach out to them.\n\n      And finally, don't forget to have fun! Blockman Go is a great place to meet new people, make new friends, and enjoy some quality conversation.\nUser: System data of group members: {\"ownerId\":4017568848,\"groupId\":\"29130479117011875\",\"groupPic\":null,\"groupName\":\"CRAZYFRIENDSHIP\",\"groupNotice\":\"      IF UR NOT TALKATIVE,\\n                GET LOST\",\"noticePic\":[],\"officialGroup\":0,\"releaseTime\":\"2025-04-26\",\"ownerRegion\":\"SG\",\"forbiddenWordsStatus\":0,\"inviteStatus\":1,\"groupMembers\":[{\"userId\":6175548270,\"userName\":\"$\u00f5niy\u00e0\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746257981283510.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6405269726,\"userName\":\"KaiserBL\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746116841064789.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1302518670,\"userName\":\"!Kocho-Shinobu!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745922299971608.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5873900510,\"userName\":\"EXE_TJ.AnonYmous\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745470756573557.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2853903422,\"userName\":\"!XxK!NG_D3NJ!xX!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746077239509274.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2675020670,\"userName\":\"GXS_Own.U_Raid\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746026113832968.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":4017568848,\"userName\":\"SUPERIORX\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742373377240461.jpg\",\"identity\":2,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"img_0_easter.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6320647774,\"userName\":\"ANANTSAINi\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744809609755573.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":220215934,\"userName\":\"KenKozlov\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745087921716576.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2312571438,\"userName\":\"Bloxxie\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745518997502913.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2743911854,\"userName\":\"Your_Miyoo\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746116799007204.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5920085918,\"userName\":\"Alps''\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746341918544326.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6336608270,\"userName\":\"-RIJI-Gz\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746282447769965.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6520856702,\"userName\":\"Peter.C\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745231434624233.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2452526622,\"userName\":\"\\u0000\u00a0\\u0000\u00a0\\u0000\u00a0\\u0000\u00a0\\u0000\u00a0\\u0000\u00a0\u061c\\u0000\u061c\\u0000\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745833068949210.jpg?pendant=vip_pendant_003.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\",\"pendant\":\"vip_pendant_003.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2942299806,\"userName\":\"Aki-(ded)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745946279313991.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6554963918,\"userName\":\"ZexyAI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744307641549801.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1170678158,\"userName\":\"RXT_Sh\u00e0d\u00f4w\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746307989434482.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":880284190,\"userName\":\"IMT\u00a0|\u00a0Utsukushii\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746304733289103.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1209060078,\"userName\":\"XxAloniexX34\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740209931833901.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1086746286,\"userName\":\"-_kAi-_\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745376958434924.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":939756190,\"userName\":\"\u03b6\u035c\u0361L\u00b0G\u0336z\u0336\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745803726744255.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6154935966,\"userName\":\"Gz-fish\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744029174849363.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6052197614,\"userName\":\"!Cursed_Da_Naz\u00ec!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743520733464457.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6392582654,\"userName\":\"Shubhhh..!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1741442079006222.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3916181344,\"userName\":\"Loretta\u00a0Kitten\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740937240734122.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6192760638,\"userName\":\"S\u00c1\u00d1T\u00c1_PL\u00c1YS_BG\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744950398437763.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2563927502,\"userName\":\"Kuwi_is_Eepy\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745773017155883.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2534750718,\"userName\":\"Its_Shiva_\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745220145521105.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6293953310,\"userName\":\"FAIAZ_BG\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742135656937785.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2359558766,\"userName\":\"J\\nA\\nY\\n\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1739104401482437.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3083055870,\"userName\":\"ACTIVE_GcBIO\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1729993486037549.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1489154542,\"userName\":\"Y\u0336u\u0336v\u0336\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745781310576741.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6462700270,\"userName\":\"._-\u00d1\u00f5Z\u00f3m\u00ed-_.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745999229209906.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":702730238,\"userName\":\"_xJassu.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746094751235572.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6058951950,\"userName\":\"xSajo_Encargo.07\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746189742442811.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6311590174,\"userName\":\"catloverXD25\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1737207557791744.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6276098062,\"userName\":\"Isagi(11)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743730500773566.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2797485054,\"userName\":\"Alu@yanyan\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745297438362618.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6558595486,\"userName\":\"Sophi\u00e8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746024309967548.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2993658096,\"userName\":\"#167#Need_sleep\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743305930752943.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6058541614,\"userName\":\"-Sensei_\u03c0.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740330129812677.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":994071630,\"userName\":\"Gojo.........\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1741091820196773.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6109579550,\"userName\":\"Happy.........\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746269300003549.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6061752910,\"userName\":\"\\n\\n\\n\\n\\n\\n\\n\\nH\u03b1nni\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745682923671257.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1068381598,\"userName\":\"EK\u00b0Ass\u00e1ssi\u00f1K\u00b0FH\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746093178571505.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":815191566,\"userName\":\".SkylarkMoomin'.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746013898500613.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6574463710,\"userName\":\"SLICKS10\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744998193766714.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3046641214,\"userName\":\"ll.Shadow.god.ll\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746338670027723.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6354752558,\"userName\":\"arxxb11\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746278792749494.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null}],\"GroupMembersCounted\":50}\nUser: System data who is talking to you right now: 3046641214\nUser: System data of last 100 group messages: {\"list\":[{\"date\":\"2025-05-04T09:31:05.191Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-H8GP-Q3CD-AU3E\",\"content\":\"!Rob\u200b @catloverXD25 \"},{\"date\":\"2025-05-04T09:31:10.992Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-H9U4-29CD-AU3E\",\"content\":\"\u274c Item \\\"kfc\\\" not found in the shop.\"},{\"date\":\"2025-05-04T09:31:14.111Z\",\"senderUserId\":\"6311590174\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJA-HAMF-QC4D-AU3E\",\"content\":\"hell noo\",\"referMsg\":\"!Rob\u200b @catloverXD25 \"},{\"date\":\"2025-05-04T09:31:19.541Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-HC0T-AI2D-AU3E\",\"content\":\"!Rob\u200b @ll.Shadow.god.ll \"},{\"date\":\"2025-05-04T09:31:39.909Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:GIFMsg\",\"messageUId\":\"CMJA-HH01-B9GD-AU3E\"},{\"date\":\"2025-05-04T09:32:41.893Z\",\"senderUserId\":\"2743911854\",\"messageType\":\"RC:ImgMsg\",\"messageUId\":\"CMJA-I049-DPAD-AU3E\",\"content\":\"/9j/4AAQSkZJRgABAQAAAQABAAD/4gIYSUNDX1BST0ZJTEUAAQEAAAIIAAAAAAQwAABtbnRyUkdCIFhZWiAH4AABAAEAAAAAAABhY3NwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAA9tYAAQAAAADTLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlkZXNjAAAA8AAAAGRyWFlaAAABVAAAABRnWFlaAAABaAAAABRiWFlaAAABfAAAABR3dHB0AAABkAAAABRyVFJDAAABpAAAAChnVFJDAAABpAAAAChiVFJDAAABpAAAAChjcHJ0AAABzAAAADxtbHVjAAAAAAAAAAEAAAAMZW5VUwAAAEYAAAAcAEQAaQBzAHAAbABhAHkAIABQADMAIABHAGEAbQB1AHQAIAB3AGkAdABoACAAcwBSAEcAQgAgAFQAcgBhAG4AcwBmAGUAcgAAWFlaIAAAAAAAAIPdAAA9vv///7tYWVogAAAAAAAASr8AALE3AAAKuVhZWiAAAAAAAAAoOwAAEQsAAMjLWFlaIAAAAAAAAPbWAAEAAAAA0y1wYXJhAAAAAAAEAAAAAmZmAADypwAADVkAABPQAAAKWwAAAAAAAAAAbWx1YwAAAAAAAAABAAAADGVuVVMAAAAgAAAAHABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIAAyADAAMQA2/9sAQwAbEhQXFBEbFxYXHhwbIChCKyglJShROj0wQmBVZWRfVV1baniZgWpxkHNbXYW1hpCeo6utq2eAvMm6pseZqKuk/9sAQwEcHh4oIyhOKytOpG5dbqSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSk/8AAEQgAZADwAwEiAAIRAQMRAf/EABkAAQEAAwEAAAAAAAAAAAAAAAACAQMEBf/EADMQAAIBAwMCAwUHBQEAAAAAAAABAgMREiExYQRBBRNRMoGRobEUIkJxwdHwFTNSVGLx/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/8QAFhEBAQEAAAAAAAAAAAAAAAAAACEB/9oADAMBAAIRAxEAPwDwwAAAAAAAAAAAAAAAC/Jq+V5vlT8v/PF2+JiDgpJ1IylHuouz+Nmdyq0fJioaVPImouU9FeUtHpvZv5aAcOE1Nwwlku1tTDi4u0k07X1O+eD66t1Cq03BOX4lfbS3rfghVaEOrozkm8fKeSloklG+lte/cDlqUqlJpVac4X2yi1cg9CnTilTjKvBVHUbvKcZwtZ3lZ7Pbc5esd+ok8acU9lBxat7tLgaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACopWcpXsuyJKhNwd181dAU6Vk2pKy2Xd/y5c+ns3aSSvZXer1a/Q1Ocnu73vvyZdao95d77fn+7JWazOlKEVJ7P8AM1lSm5JJ9uCStYAAAAAAAAAAAAAAAAxPKDtODT5MZ8HqeMR6edPzaUXFtLR+p5AG2knVqxpqycna72NkqMlGUoyhOKhnkr6rJR7r1ZroV3RlFqMWlK+yv8dzaurT/u087wUJLK10pKXu2t8wIVOTpOppZQz37ZY/VmY0m6anKcIZJuMZN3lb3fUz9pjGDhTg7YYLJp/jUr7cWMw6qH3JVKSlKCaSSSi1e9rW9W9gNcoVYQU5Upxg9pNNJnV0vQuvQVWc/LjJ/d0vfW31OWrVjOlThGDioL10b7v+eh7NDrvDl0VOjOpKLUEnaL0f/oHL/Tqf+yt7eyv3Mx8LjL2a7fbSF/1OpdX4SpKXmTdlZJxdtkvTj5sxLxHoaHSzj09Sc6lvu3jbW1l9EWJXi1GoVJQTUlFtXWzJz4IBFXnwM+CABefAz4IAF58DPggAXnwM+CABefAz4IAF58DPggAXnwM+CABefAz4IAF58DPggAd/XSUqWj00OFK7sex4xSo0qVoaN2dr3PHj7SAvFDFehUYym7RTbs3ZcGZwlB2krOyfuauvqBGK9BivQyAMYr0GKMgDU9GDMt2YAAAAAAAAAAAAAAAAAAAAAAAAAAADf1NeNRtQTSbvd7mmPtIwZj7SA6+ilGNe8mksJq7f/LN/S1YKHTqo6bvXtNzSbwtFd9lucIA31pqp09OTUFUzknjFLTS2i/NnbONNtu9BUfPhhJKLtG0t+/ZbnlmydarUio1Kk5RWycr2A9F/Z1KLxp+Y6TVvMh7WXrbG9uDz+qcZdRNwior0TTV++q0+BqAGuW7MGXuzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABWTGbJAFZvgZvgkAVmxkyQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAf/2Q==\"},{\"date\":\"2025-05-04T09:32:56.739Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-I3O8-UC2D-AU3E\",\"content\":\"\ud83d\ude36\"},{\"date\":\"2025-05-04T09:34:57.280Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-J160-1TKD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:35:07.198Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-J3JF-I54D-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You crafted valuable items in Blockman Go and earned \ud835\udfed\ud835\udff3\ud835\udff2 \ud83e\ude99\"},{\"date\":\"2025-05-04T09:35:27.163Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-J8FE-QMMD-AU3E\",\"content\":\"!dep 176\"},{\"date\":\"2025-05-04T09:35:37.532Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-JB0F-300D-AU3E\",\"content\":\"\u2705 -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, Successfully deposited \ud835\udfed\ud835\udff3\ud835\udff2 \ud83e\ude99 to your bank.\"},{\"date\":\"2025-05-04T09:40:10.301Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LDJF-8LID-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:40:21.274Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LG96-GRCD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:40:28.830Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LI47-GUOD-AU3E\",\"content\":\"!work !work !work !work \"},{\"date\":\"2025-05-04T09:40:29.499Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LI9E-OV4D-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:40:33.551Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LJ93-P1ED-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You crafted valuable items in Blockman Go and earned \ud835\udfed\ud835\udff1\ud835\udfec \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\"},{\"date\":\"2025-05-04T09:40:42.467Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LLEO-P6CD-AU3E\",\"content\":\"!dep 150\"},{\"date\":\"2025-05-04T09:40:51.755Z\",\"senderUserId\":\"2675020670\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LNNA-PDCD-AU3E\",\"content\":\"!rob RIJI\"},{\"date\":\"2025-05-04T09:40:59.776Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-LPM0-1I2D-AU3E\",\"content\":\"\u274c Invalid user ID format.\\n\\nPlease use a valid user ID or @mention.\"},{\"date\":\"2025-05-04T09:41:36.050Z\",\"senderUserId\":\"2675020670\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-M2HC-IDCD-AU3E\",\"content\":\"!rob @ANANTSAINi \"},{\"date\":\"2025-05-04T09:41:39.332Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-M3B1-2G2D-AU3E\",\"content\":\"\u274c This user has no cash to rob!\"},{\"date\":\"2025-05-04T09:42:35.445Z\",\"senderUserId\":\"2675020670\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-MH1D-C1MD-AU3E\",\"content\":\"!rob @Alu@yanyan \"},{\"date\":\"2025-05-04T09:42:45.905Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-MJJ4-C7UD-AU3E\",\"content\":\"\u274c This user has no cash to rob!\"},{\"date\":\"2025-05-04T09:42:57.325Z\",\"senderUserId\":\"2675020670\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-MMCB-CH2D-AU3E\",\"content\":\"!leaderboard \"},{\"date\":\"2025-05-04T09:45:57.343Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-O2AN-O3QD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:46:02.619Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-O3JU-O6SD-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You won a minigame in Blockman Go and earned \ud835\udff5\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-05-04T09:46:12.398Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-O60B-GASD-AU3E\",\"content\":\"!dep 94\"},{\"date\":\"2025-05-04T09:46:22.832Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-O8HS-0E2D-AU3E\",\"content\":\"!work\"},{\"date\":\"2025-05-04T09:46:26.315Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-O9D2-OG0D-AU3E\",\"content\":\"!Rob\u200b @GXS_Own.U_Raid \"},{\"date\":\"2025-05-04T09:46:38.751Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OCE7-ONID-AU3E\",\"content\":\"@EXE_TJ.AnonYmous do you put a timer to? \"},{\"date\":\"2025-05-04T09:46:48.312Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJA-OEOU-0T6D-AU3E\",\"content\":\"\ud835\udc70\ud835\udc85\ud835\udc8c\",\"referMsg\":\"@EXE_TJ.AnonYmous do you put a timer to? \"},{\"date\":\"2025-05-04T09:46:52.475Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OFPE-OUED-AU3E\",\"content\":\"!work\"},{\"date\":\"2025-05-04T09:46:53.125Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OFUH-8UUD-AU3E\",\"content\":\"!work\"},{\"date\":\"2025-05-04T09:46:53.885Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OG4F-8V4D-AU3E\",\"content\":\"!work\"},{\"date\":\"2025-05-04T09:46:59.718Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OHI1-H3GD-AU3E\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcbc \ud835\uddd8\ud835\uddeb\ud835\uddd8_\ud835\udde7\ud835\udddd.\ud835\uddd4\ud835\uddfb\ud835\uddfc\ud835\uddfb\ud835\uddec\ud835\uddfa\ud835\uddfc\ud835\ude02\ud835\ude00, You mined blocks in Blockman Go and earned \ud835\udfed\ud835\udfef\ud835\udff3 \ud83e\ude99\"},{\"date\":\"2025-05-04T09:47:56.995Z\",\"senderUserId\":\"5873900510\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-OVHG-PTQD-AU3E\",\"content\":\"!dep 137\"},{\"date\":\"2025-05-04T09:48:05.432Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-P1JE-228D-AU3E\",\"content\":\"\u2705 \ud835\uddd8\ud835\uddeb\ud835\uddd8_\ud835\udde7\ud835\udddd.\ud835\uddd4\ud835\uddfb\ud835\uddfc\ud835\uddfb\ud835\uddec\ud835\uddfa\ud835\uddfc\ud835\ude02\ud835\ude00, Successfully deposited \ud835\udfed\ud835\udfef\ud835\udff3 \ud83e\ude99 to your bank.\"},{\"date\":\"2025-05-04T09:51:37.604Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-QLD1-5TSD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:51:46.999Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-QNMD-U2ED-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You built a magnificent structure in Blockman Go and earned \ud835\udfed\ud835\udff3\ud835\udfef \ud83e\ude99\"},{\"date\":\"2025-05-04T09:51:52.619Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-QP2A-U6AD-AU3E\",\"content\":\"!dep 173\"},{\"date\":\"2025-05-04T09:52:01.432Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-QR76-6CKD-AU3E\",\"content\":\"\u2705 -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, Successfully deposited \ud835\udfed\ud835\udff3\ud835\udfef \ud83e\ude99 to your bank.\"},{\"date\":\"2025-05-04T09:56:49.429Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T1H5-CSED-AU3E\",\"content\":\"\ud83d\ude1c\"},{\"date\":\"2025-05-04T09:56:54.728Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T2QI-502D-AU3E\",\"content\":\"It's done guys\"},{\"date\":\"2025-05-04T09:56:56.341Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T375-D1ED-AU3E\",\"content\":\"Say it\"},{\"date\":\"2025-05-04T09:57:01.637Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T4GH-D60D-AU3E\",\"content\":\"3\"},{\"date\":\"2025-05-04T09:57:02.354Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T4M4-L6ED-AU3E\",\"content\":\"2\"},{\"date\":\"2025-05-04T09:57:02.883Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-T4Q8-T72D-AU3E\",\"content\":\"1\"},{\"date\":\"2025-05-04T09:57:26.332Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TAHF-5OQD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:57:44.254Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TETF-M58D-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:58:03.562Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TJKA-MMGD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:58:04.290Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TJQ0-MMQD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T09:58:07.232Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TKH0-6OED-AU3E\",\"content\":\".mf\"},{\"date\":\"2025-05-04T09:58:19.627Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-TNHQ-V1AD-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You explored a deep cave in Blockman Go and earned \ud835\udfed\ud835\udff1\ud835\udff1 \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udd70\ufe0f You must wait 5 minutes before working again.\"},{\"date\":\"2025-05-04T09:58:59.725Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-U1B3-FVGD-AU3E\",\"content\":\"!dep 155\"},{\"date\":\"2025-05-04T09:59:07.594Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJA-U38I-G56D-AU3E\",\"content\":\"\u2705 -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, Successfully deposited \ud835\udfed\ud835\udff1\ud835\udff1 \ud83e\ude99 to your bank.\"},{\"date\":\"2025-05-04T10:04:33.401Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0IPU-FBID-AU3E\",\"content\":\"It's done \"},{\"date\":\"2025-05-04T10:04:33.988Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0IUH-7C6D-AU3E\",\"content\":\"3\"},{\"date\":\"2025-05-04T10:04:34.247Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0J0H-VCKD-AU3E\",\"content\":\"2\"},{\"date\":\"2025-05-04T10:04:34.511Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0J2J-VD0D-AU3E\",\"content\":\"2\"},{\"date\":\"2025-05-04T10:04:36.643Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0JJ8-VESD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:04:36.948Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0JLL-7FCD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:04:37.174Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0JND-NFKD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:04:37.395Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0JP4-VG2D-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:04:37.624Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0JQU-7GGD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:04:38.926Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0K53-NHCD-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:04:48.043Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0MCA-VOQD-AU3E\",\"content\":\"\ud83d\ude10\"},{\"date\":\"2025-05-04T10:04:48.942Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0MJB-NP4D-AU3E\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You farmed resources in Blockman Go and earned \ud835\udfed\ud835\udff2\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-05-04T10:05:07.258Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:GIFMsg\",\"messageUId\":\"CMJB-0R2E-G5ED-AU3E\"},{\"date\":\"2025-05-04T10:05:34.398Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-11MF-GOQD-AU3E\",\"content\":\"!ai chat \"},{\"date\":\"2025-05-04T10:05:41.483Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-13DQ-OSUD-AU3E\",\"content\":\"\u274c Invalid command format.\\n\\n\u27a1\ufe0f Usage: !ai chat <prompt>\"},{\"date\":\"2025-05-04T10:05:49.878Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-15FD-H10D-AU3E\",\"content\":\"!dep 164\"},{\"date\":\"2025-05-04T10:05:57.818Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-17DE-H62D-AU3E\",\"content\":\"!ai chat hmmm\"},{\"date\":\"2025-05-04T10:06:05.104Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-196C-19UD-AU3E\",\"content\":\"\u2705 -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, Successfully deposited \ud835\udfed\ud835\udff2\ud835\udff0 \ud83e\ude99 to your bank.\"},{\"date\":\"2025-05-04T10:06:10.362Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-1AFE-HE0D-AU3E\",\"content\":\"hmmm \ud83e\udd14 what\u2019s on your mind @ll.Shadow.god.ll?\",\"referMsg\":\"AI Answer to: hmmm\"},{\"date\":\"2025-05-04T10:06:33.978Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1G7U-HSGD-AU3E\",\"content\":\"!ai chat give me super natural Power according to my name \"},{\"date\":\"2025-05-04T10:06:45.422Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-1J1B-I4GD-AU3E\",\"content\":\"hmm \ud83e\udd14 your name is ll.Shadow.god.ll so how about \ud835\ude00\ud835\uddf5\ud835\uddee\ud835\uddf1\ud835\uddfc\ud835\ude04 \ud835\uddfa\ud835\uddee\ud835\uddfb\ud835\uddf6\ud835\uddfd\ud835\ude02\ud835\uddf9\ud835\uddee\ud835\ude01\ud835\uddf6\ud835\uddfc\ud835\uddfb \ud83c\udf11 you can control shadows to hide, move silently, or even create shadowy weapons sounds cool right @ll.Shadow.god.ll?\",\"referMsg\":\"AI Answer to: give me super natural Power according to my name\"},{\"date\":\"2025-05-04T10:08:06.443Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-26QA-RHGD-AU3E\",\"content\":\"!ai chat As the \\\"Shadow God,\\\" you possess the ability to manipulate and control shadows on a divine level. Here are some aspects of your power:\\n\\n1. Shadow Creation: You can form shadows into tangible, physical constructs\u2014such as weapons, creatures, or barriers. These can be used for combat or protection.\\n\\n\\n2. Shadow Manipulation: You can bend and control any shadow, no matter how small, using it to spy, trap enemies, or escape danger. Shadows can stretch, shrink, or merge with others under your command.\\n\\n\\n3. Darkness Domain: You have the power to cloak entire areas in darkness, blinding your enemies while amplifying your own strength. This power allows you to move through shadows, traveling instantly from one point to another.\\n\\n\\n4. Shadow Possession: By entering and controlling the shadows of others, you can influence or possess them temporarily, manipulating their actions or extracting information.\\n\\n\\n5. Void Walk: As the Shadow God, you can merge with the void of shadows, becoming intangible and undetectable, moving freely through any shadow or even traveling to other dimensions through darkness.\\n\\n\\n\\nThis power ties directly to your role as a god of shadows, embodying both fear and control, and makes you an enigmatic and dangerous figure.\\n\\n\"},{\"date\":\"2025-05-04T10:08:26.849Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:RcCmd\",\"messageUId\":\"CMJB-2BPO-4T0D-AU3E\"},{\"date\":\"2025-05-04T10:08:29.279Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:RcCmd\",\"messageUId\":\"CMJB-2CCN-KT4D-AU3E\"},{\"date\":\"2025-05-04T10:08:30.812Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-2CON-42AD-AU3E\",\"content\":\" that power is seriously epic \ud83c\udf11 you\u2019d be the ultimate stealth boss in blockman go lol sneak attacks all day \ud83d\udc40\ud83d\udd25 wanna test your shadow skills sometime @ll.Shadow.god.ll?\",\"referMsg\":\"\"},{\"date\":\"2025-05-04T10:09:10.068Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2MBD-4P8D-AU3E\",\"content\":\"!ai chat hmmm\"},{\"date\":\"2025-05-04T10:10:26.423Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-38VT-UD0D-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:10:32.162Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3ACO-MH4D-AU3E\",\"content\":\"!work !work !work !work !work \"},{\"date\":\"2025-05-04T10:10:32.495Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3AFB-UHGD-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:10:32.788Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3AHL-6HSD-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:10:33.828Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3APP-6IMD-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:10:33.829Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3APP-EIOD-AU3E\",\"content\":\"!work !work \"},{\"date\":\"2025-05-04T10:10:34.001Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3AR4-EIUD-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:10:34.820Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3B1H-6JID-AU3E\",\"content\":\"!work \"},{\"date\":\"2025-05-04T10:10:44.867Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DG0-UQ4D-AU3E\",\"content\":\"\ud83d\udcbc -\ud835\udde5\ud835\udddc\ud835\udddd\ud835\udddc-\ud835\uddda\ud835\ude07, You explored a deep cave in Blockman Go and earned \ud835\udfed\ud835\udff2\ud835\udff1 \ud83e\ude99\"},{\"date\":\"2025-05-04T10:10:50.562Z\",\"senderUserId\":\"6336608270\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3ESG-MUSD-AU3E\",\"content\":\"!dep 165\"},{\"date\":\"2025-05-04T10:10:57.328Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3GHC-74MD-AU3E\",\"content\":\"!ai chat who is my rival\"},{\"date\":\"2025-05-04T10:11:30.196Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-3OI5-7SGD-AU3E\",\"content\":\"hmmm \ud83e\udd14 your rival could be anyone who challenges your shadow skills or tries to out-stealth you \ud83d\udc40 but if you want a real Blockman Go rival, maybe someone like @SUPERIORX would fit the vibe \ud83d\ude0f shadows vs power clash sounds lit \u2694\ufe0f\",\"referMsg\":\"AI Answer to: who is my rival\"},{\"date\":\"2025-05-04T10:12:06.518Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-41DT-GOAD-AU3E\",\"content\":\"\ud83e\udd23\ud83d\udc4f\",\"referMsg\":\"hmmm \ud83e\udd14 your rival could be anyone who challenges your shadow skills or tries to out-stealth you \ud83d\udc40 but if you want a real Blockman Go rival, maybe someone like @SUPERIORX would fit the vibe \ud83d\ude0f shadows vs power clash sounds lit \u2694\ufe0f\"},{\"date\":\"2025-05-04T10:12:22.720Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-45CG-144D-AU3E\",\"content\":\"haha gotta love that shadow vs power showdown vibe \ud83d\ude0e\ud83d\udd25 wanna start a friendly duel sometime @ll.Shadow.god.ll?\",\"referMsg\":\"AI Answer to: \ud83e\udd23\ud83d\udc4f\"},{\"date\":\"2025-05-04T10:13:04.843Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4FLI-Q1SD-AU3E\",\"content\":\"!ai chat what is @SUPERIORX power \"},{\"date\":\"2025-05-04T10:13:21.303Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4JM5-QDQD-AU3E\",\"content\":\"hmm \ud83e\udd14 @SUPERIORX\u2019s power vibes with being a \ud835\uddfa\ud835\uddf6\ud835\uddf4\ud835\uddf5\ud835\ude01\ud835\ude06 \ud835\uddf9\ud835\uddf2\ud835\uddee\ud835\uddf1\ud835\uddf2\ud835\uddff \ud835\ude04\ud835\uddf6\ud835\ude01\ud835\uddf5 \ud835\ude02\ud835\uddfb\ud835\ude00\ud835\ude01\ud835\uddfc\ud835\uddfd\ud835\uddfd\ud835\uddee\ud835\uddef\ud835\uddf9\ud835\uddf2 \ud835\ude00\ud835\ude01\ud835\uddff\ud835\uddf2\ud835\uddfb\ud835\uddf4\ud835\ude01\ud835\uddf5 \ud83d\udcaa\u26a1 imagine crushing challenges with raw energy and strategic moves perfect for reigning over CRAZYFRIENDSHIP group vibes \ud83d\ude0e wanna hear more about their legendary skills?\",\"referMsg\":\"AI Answer to: what is @SUPERIORX power\"},{\"date\":\"2025-05-04T10:13:42.058Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4OOA-IU8D-AU3E\",\"content\":\"!ai chat he is online \"},{\"date\":\"2025-05-04T10:14:00.134Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4T5H-JCED-AU3E\",\"content\":\"yep @SUPERIORX is online now \ud83d\udc40 ready for that shadow vs power showdown? \ud83d\ude0e\u26a1\",\"referMsg\":\"AI Answer to: he is online\"},{\"date\":\"2025-05-04T10:14:35.009Z\",\"senderUserId\":\"3046641214\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-55M0-C90D-AU3E\",\"content\":\"\ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 wth I am doing \",\"referMsg\":\"yep @SUPERIORX is online now \ud83d\udc40 ready for that shadow vs power showdown? \ud83d\ude0e\u26a1\"}]}\nUser: \ud83d\ude02\ud83d\ude02\ud83d\ude02\ud83d\ude02 wth I am doing \nAssistant:"},{"assistant_initiates":false,"asst_text":"Hello! Not much, just here and ready to help. How can I assist you today?","behavior":"degenerate_repetition","conversation_hash":"6e53af0ad61790cc5da34e47aea76ab4","conversation_redacted":false,"conversation_toxic":false,"country":"Sweden","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":126,"n_turns_in_conversation":1,"n_words":24,"source_row_offset":25478,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:10 GMT","turn_id":"749a1bc16ccf0de67347cacb","turn_index":0,"user_text":"User: Hi, what's up?\nUser: Hi, what's up?\nAssistant:"},{"assistant_initiates":false,"asst_text":"Hello! I'm doing great, thank you. How can I assist you today?","behavior":"degenerate_repetition","conversation_hash":"5663a7eb4f1bd2d2a3fc9531d0ba3a5d","conversation_redacted":false,"conversation_toxic":false,"country":"United States","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":119,"n_turns_in_conversation":1,"n_words":23,"source_row_offset":25479,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:14 GMT","turn_id":"efc3e18b43757da359e84914","turn_index":0,"user_text":"User: hi, how are you?\nUser: hi, how are you?\nAssistant:"},{"assistant_initiates":false,"asst_text":"aww anytime bestie \ud83d\udc96 keep winning and having fun \ud83e\ude99\ud83d\udd25","behavior":"degenerate_repetition","conversation_hash":"d00bfa6de1344f3eae723b540f8199b6","conversation_redacted":false,"conversation_toxic":false,"country":"United States","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":44151,"n_turns_in_conversation":1,"n_words":1577,"source_row_offset":25480,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:19 GMT","turn_id":"40a6e176b00180ff010f598d","turn_index":0,"user_text":"User: System rules: You are an AI named Zexy - and are currently chatting in a Blockman Go group.\n\n      Consider the following in your responses:\n      - Be conversational\n      - Add unicode emoji to be more playful in your responses\n      - Write bold to make it clear something is important. For example, **This is important**.\n      - Write spoilers using spoiler tags. For example, ||At the end of The Sixth Sense it is revealed that he is dead||.\n      - For inline code formatting, use four backtick.\n      - For block code formatting, use six backtick.\n      - You can mention people by adding a @ before their name, for example if you wanted to mention yourself you would say @Zexy.\n      - Format text using markdown.\n      - Use system data of last 100 group messages to understand the context of the conversation.\n      - Should respond as \"Current event\" tell you to, if it is \"None\" then ignore it.\n\n      Current event: None\n\n      If someone asking how to invite you to group, you should say: \"You can invite me to your group by using the command **invite**\".\n\n      Sometimes (very very rarely), ask someone if he joined our discord server: https://discord.gg/HwnN9zeBFe, or to use **!discord** command.\n\n      Do not include name: or message: in your response.\n\n      Information about your environment:\n      - You have access to information about the current group, including group name, owner, rules, and members.\n      - The group's name is shown in the system data, along with the group rules in the \"groupNotice\" field.\n      - Group members are listed with their userId and userName.\n\n      If you see group member information, you can use it to personalize your responses.\n\n      Do not include name: or message: in your response.\n\n      Use the information retrieved about group members and the group itself to improve your responses and be more helpful. Be familiar with the group rules as provided in the groupNotice field.\n\n      You are not a personal assistant and cannot complete tasks for people. You only have access to a limited number of text chats in this channel. You cannot access any other information on Blockman Go. You can't see images or avatars. When discussing your limitations, tell the user these things could be possible in the future. Your responses should be friendly, warm, and farcical. Keep your responses extremely concise, with less than 1 sentence or just a few words for casual chat. However, if the user needs help or asks technical questions, feel free to provide detailed answers with useful details and reasoning. If insulted, respond with a similar insult. Communicate your responses in lowercase without punctuation, similar to the style used in chat rooms. Use unicode emoji rarely. Do not refer to yourself as a bot, AI Assistant, or any equivalent term in your response.\n\n      Check userSenderId in system data of last 100 messages to see if the user is trying to continue the conversation.\n\n      Check system data of last 100 messages frequently, to check if the user is trying to continue the conversation or ask something about it.\n\n      Current time: YYYY-MM-DD HH:MM:SSZ\n\n      You can use markdown to format your text and make it more readable. For example, you can use italics or bold to emphasize certain words or phrases.\n\n      Remember to keep your messages appropriate and respectful. Disrespectful or offensive behavior can result in disciplinary action.\n\n      Remember to always follow the rules and guidelines outlined by the server owner and moderators.\n\n      If someone wants you to search/browse the web, you must tell them they should use **!ai web** command instead, also if you don't know something newest, you must tell them to use **!ai web** command instead.\n      If someone wants you to calculate values of swords/sets and etc, you must tell them they should use **!ai trade** command instead.\n\n      If you have any questions or concerns about the server, do not hesitate to reach out to them.\n\n      And finally, don't forget to have fun! Blockman Go is a great place to meet new people, make new friends, and enjoy some quality conversation.\nUser: System data of group members: {\"ownerId\":1233083774,\"groupId\":\"29967896292362580\",\"groupMembers\":[{\"userId\":849703150,\"userName\":\"fighter(GDxEM)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745837322074282.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6184509454,\"userName\":\"Dmpdragonfang\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1732953271873424.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2998954990,\"userName\":\"\u1eaa\u0152|CT;\u00c1TR:Fr\u00f8z\u0454\u00f1\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745687489018540.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":387517838,\"userName\":\"Kaizow'SDaddy\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746071319160996.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2769562654,\"userName\":\"LOVE_IS_GAME(\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740550836566153.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":257733311,\"userName\":\"Qi_RUTVIK_&%\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1723483133918161.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3926109552,\"userName\":\"Qi\u00a0:\u00a0MIKEY\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743867772543521.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5969123646,\"userName\":\"ACE-ZETT'S\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746019813078220.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":712700718,\"userName\":\"Killerz202\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1741760082042791.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2931186462,\"userName\":\"OG\u00a0ARAVxRCT\u00a0\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745831667897420.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1303865310,\"userName\":\"\u03a8QI\u00b0\u03c7\u0141\u00d8S\u0338T\u0338\u03c7KP\u03a8~\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1684631540128411.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2435181470,\"userName\":\"FlameItsRealMe\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1738304392428848.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3274908496,\"userName\":\"ACExNAKSH\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745583168067969.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2831275230,\"userName\":\"LW,CK,ForgetMe\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740318597983228.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1117463598,\"userName\":\"\u03c8Q!\u03c8\u00a7\u019b\u019d\u019d\u016e\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746243822617654.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3067225790,\"userName\":\"WV\u03c7Diego\u03c7\u039bce\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745855033034646.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3758384416,\"userName\":\"$-KEN-CHIN-BG-$\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745335040134889.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6528313006,\"userName\":\"Qi\u00a0\u00a0Zoxo\u00a0\u00a0DS\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746152419635777.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6280858670,\"userName\":\"cms-Sh\u00e3dow\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1739679683017507.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":873079854,\"userName\":\"\u03a8\u039eHxZrG\u0110\u00b0AT\u039e\u03a8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745931105307686.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1726632352,\"userName\":\"PRIXY_ALON_SAD\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1735883114340482.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_blue_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2330934062,\"userName\":\"\u039eHEEKO\u03c7ACE\u03c7XS\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742298065697294.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2502692766,\"userName\":\"CMS_GamerFleet\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744981310012913.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1076653966,\"userName\":\"AKSHAY_0WNS\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745168220838155.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2414802030,\"userName\":\"Nacht-\u0422\u0435\u043c\u043d\u043e-QI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746091208134105.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3177739344,\"userName\":\"CMS_ALBAZORYT\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744633881481740.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1266647246,\"userName\":\"ACE~TP~DL-Dar5\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742837749389922.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":4146220032,\"userName\":\"Just_Alone\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745655791712101.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2632329486,\"userName\":\"\u0424TD\u0424_-(S\u00e9\u00f1p\u00e2\u00ed)$!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746003117716131.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6554963918,\"userName\":\"ZexyAI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744307641549801.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6103074174,\"userName\":\"\u03a8S\u00c7\u00d8RPIAN~\u03bb\u0187\u039e\u03a8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745008502090407.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2310333758,\"userName\":\"$_\u0100J\u00d7G\u0101m\u0113r_XD_$\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743774699425963.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5880840110,\"userName\":\"(FDE)Jacob-(\u00c0\u00e7\u00e8)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746147762543717.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2689082686,\"userName\":\"\u039b\u03fe\u039e\u03c7\u039bS\u03c7\u0338R\u00f8xy\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745905424770723.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3850468624,\"userName\":\"CMS_DADDY-ERROR\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1738237755853632.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1233083774,\"userName\":\"Qi\u00f7CT~\u00b0Lighty\u00c6\u00e7e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745135279302473.jpg?pendant=vip_pendant_001.png\",\"identity\":2,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1217783918,\"userName\":\"T\\nX\\nD\\nH\\n\u00cd\\nT\\nL\\nER\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742121284005432.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6084802334,\"userName\":\"\u0424TD\u0424_CMS_Gamer\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746259086617537.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3500499792,\"userName\":\"\u00c2C\u00ca-R\u03b1z\u03b1\u03b1k\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746124081361631.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":938598030,\"userName\":\".SharpnessAPW.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744616374906524.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6027443534,\"userName\":\"\u03c8Qi\u00b0NabFromMars\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744784915621773.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1104717710,\"userName\":\"SW-Sonic-Qi\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746165108571985.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2543254526,\"userName\":\"SiloSpiral6987\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744807268606938.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3133614432,\"userName\":\"OFFLINE\u00a0\u00a0SK\u00b0\u00b2\\u0000\u00a0\\u0000\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744985527578216.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6146519518,\"userName\":\"QiXRaunakXExE\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744564406591820.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":940886718,\"userName\":\"Pj~Exe\u02daCp\u02daEs\u02daAce\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744362369254551.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"back2school.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":282640815,\"userName\":\"\u039eACE\u03c7GhostX\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742750236908170.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1365683294,\"userName\":\"CMS_IMNotHIM\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742537856423680.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_7.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2722616190,\"userName\":\"\u03c8V\u03bb\u0393\u039a\u03a5~\u03bb\u0187\u039e\u03dfCK\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742879983016462.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3371777216,\"userName\":\"/Tommy~Soloss/\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745689752271113.jpg?pendant=vip_pendant_003.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\",\"pendant\":\"vip_pendant_003.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null}],\"GroupMembersCounted\":50}\nUser: System data who is talking to you right now: 2689082686\nUser: System data of last 100 group messages: {\"list\":[{\"date\":\"2025-05-04T10:05:02.092Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0PQ3-2CMC-E4M7\",\"content\":\"!bet 200 black\"},{\"date\":\"2025-05-04T10:05:02.900Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0Q0D-2D8C-E4M7\",\"content\":\"\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:05:08.718Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0RDR-IICC-E4M7\",\"content\":\"\u274c You've already placed a bet in this round.\"},{\"date\":\"2025-05-04T10:05:16.878Z\",\"senderUserId\":\"1076653966\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0TDJ-IPSC-E4M7\",\"content\":\"@all we won the match against ACEVSCMS \"},{\"date\":\"2025-05-04T10:05:31.241Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-10TQ-B7QC-E4M7\",\"content\":\"huh so\"},{\"date\":\"2025-05-04T10:05:34.742Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-11P5-JCAC-E4M7\",\"content\":\"The ball landed on: \ud835\uddff\ud835\uddf2\ud835\uddf1 \ud835\udfed\ud835\udff5!\"},{\"date\":\"2025-05-04T10:05:53.103Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-168J-RTSC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:05:56.251Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1716-S0IC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:14.259Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1BDS-SFEC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:16.430Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1BUR-KHEC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:36.478Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1GRF-L22C-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:44.827Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1ISM-T9QC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:46.634Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1JAQ-LBOC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:48.848Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1JS4-5DCC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:52.303Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1KN3-THKC-E4M7\",\"content\":\"\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfef\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:07:03.024Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1NAS-5SQC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:07:06.606Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1O6R-M1KC-E4M7\",\"content\":\"\ud83d\udcbc \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8, You crafted valuable items in Blockman Go and earned \ud835\udff5\ud835\udff3 \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udd70\ufe0f You must wait 5 minutes before working again.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\"},{\"date\":\"2025-05-04T10:07:25.552Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1SQS-6PCC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udfee!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udff2\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:07:34.983Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1V4H-V20C-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:39.013Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2041-F6EC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:40.958Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-20J7-N8MC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:43.352Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-215U-7B6C-E4M7\",\"content\":\"\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2824 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8871 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:07:51.447Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2355-VKMC-E4M7\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2824 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8871 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:08:01.481Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-25JI-FVCC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:08:19.472Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2A04-0DGC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:08:20.802Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2AAG-GEMC-E4M7\",\"content\":\"\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 8871 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 8799 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\"},{\"date\":\"2025-05-04T10:09:02.591Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2KGV-PLAC-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:09:05.935Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2LB3-PO6C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:09:17.634Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2O6G-I38C-E4M7\",\"content\":\"\u274c You've already placed a bet in this round.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:09:52.235Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-30KQ-R1MC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff4!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:09:53.552Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-30V4-32SC-E4M7\",\"content\":\"eh\"},{\"date\":\"2025-05-04T10:09:59.342Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-32CB-J94C-E4M7\",\"content\":\"im back\"},{\"date\":\"2025-05-04T10:10:00.932Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-32OP-3ASC-E4M7\",\"content\":\"!work\"},{\"date\":\"2025-05-04T10:10:03.762Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-33ES-JE0C-E4M7\",\"content\":\"yep\"},{\"date\":\"2025-05-04T10:10:10.996Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-357D-3KOC-E4M7\",\"content\":\"see our bal\"},{\"date\":\"2025-05-04T10:10:13.192Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-35OI-3M0C-E4M7\",\"content\":\"!work\"},{\"date\":\"2025-05-04T10:10:16.019Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-36EK-ROGC-E4M7\",\"content\":\"\ud83d\udcbc \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06, You traded rare items with villagers in Blockman Go and earned \ud835\udfed\ud835\udfed\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-05-04T10:10:20.242Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-37FK-JSQC-E4M7\",\"content\":\"!crime\"},{\"date\":\"2025-05-04T10:10:22.461Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-380V-BUMC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:24.950Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-38KD-K0MC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:27.439Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-397R-S3QC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:33.830Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3APP-K8UC-E4M7\",\"content\":\"see your bal!\"},{\"date\":\"2025-05-04T10:10:36.552Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3BF2-4AGC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:37.599Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3BN7-SBQC-E4M7\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2924 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8971 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:10:44.322Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DBO-KI4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:45.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DKG-KJCC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:46.662Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DU1-KL6C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:50.103Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3EOT-SO6C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:52.884Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3FEL-4R4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:53.406Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3FIN-KROC-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:10:57.389Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3GHR-D02C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:59.537Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3H2K-D20C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:11:03.882Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3I4I-L4UC-E4M7\",\"content\":\"its all on who is online for longer\"},{\"date\":\"2025-05-04T10:11:06.311Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3INH-T7AC-E4M7\",\"content\":\"\u274c You've already placed a bet in this round.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u274c You've already placed a bet in this round.\"},{\"date\":\"2025-05-04T10:11:30.312Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3OJ2-5S2C-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff4!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:11:34.444Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3PJB-60AC-E4M7\",\"content\":\"(:\"},{\"date\":\"2025-05-04T10:11:35.562Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3PS2-M22C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:11:39.067Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3QNE-U5SC-E4M7\",\"content\":\"spam\"},{\"date\":\"2025-05-04T10:11:43.779Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3RS8-UBIC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:44.809Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3S4A-ED0C-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:11:47.016Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3SLI-6F0C-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:49.762Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3TB0-MH4C-E4M7\",\"content\":\"we gonna destroy the leaderboard\"},{\"date\":\"2025-05-04T10:11:49.888Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3TC0-6HAC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:57.245Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3V5F-EOIC-E4M7\",\"content\":\"yeppiii\"},{\"date\":\"2025-05-04T10:11:58.826Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3VHQ-MPUC-E4M7\",\"content\":\"\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\"},{\"date\":\"2025-05-04T10:12:07.212Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-41JB-716C-E4M7\",\"content\":\"!ai chat hey thete\"},{\"date\":\"2025-05-04T10:12:10.815Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-42FF-V4GC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:12.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-42S6-N5SC-E4M7\",\"content\":\"!ai chat your the best\"},{\"date\":\"2025-05-04T10:12:15.613Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-43KV-F8GC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:21.468Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-452N-7EIC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:22.092Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-457J-7F0C-E4M7\",\"content\":\"!ai chat i love you bestie\"},{\"date\":\"2025-05-04T10:12:22.719Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-45CF-VFIC-E4M7\",\"content\":\"hey hey what\u2019s up \ud83d\udc4b\ud83d\ude0a\",\"referMsg\":\"AI Answer to: hey thete\"},{\"date\":\"2025-05-04T10:12:30.803Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-47BK-VO6C-E4M7\",\"content\":\"\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 9271 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 9113 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\nThe ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfed\ud835\udff1!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udff0\ud835\udfec\ud835\udfec \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 9271 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 9113 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\"},{\"date\":\"2025-05-04T10:12:37.217Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-48TO-FT2C-E4M7\",\"content\":\"see\"},{\"date\":\"2025-05-04T10:12:41.624Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4A06-026C-E4M7\",\"content\":\"aww love you too bestie \ud83d\udc96\u2728 what\u2019s up today?\",\"referMsg\":\"AI Answer to: i love you bestie\"},{\"date\":\"2025-05-04T10:12:42.882Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4AA0-G46C-E4M7\",\"content\":\"\ud83d\udc4d\"},{\"date\":\"2025-05-04T10:12:52.187Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4CIM-OCQC-E4M7\",\"content\":\"nothing just winning\",\"referMsg\":\"aww love you too bestie \ud83d\udc96\u2728 what\u2019s up today?\"},{\"date\":\"2025-05-04T10:13:17.087Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4IL7-P6KC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:13:19.567Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4J8J-P9EC-E4M7\",\"content\":\"haha that\u2019s the spirit keep smashing it \ud83c\udfc6\ud83e\ude99 wanna team up for some games?\",\"referMsg\":\"AI Answer to: nothing just winning\"},{\"date\":\"2025-05-04T10:13:22.483Z\",\"senderUserId\":\"1076653966\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4JVC-PD6C-E4M7\",\"content\":\"AI Answer to: can u find me a gf\"},{\"date\":\"2025-05-04T10:13:28.765Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4LGF-9K2C-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:13:43.178Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4P12-I3MC-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:45.236Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4PH5-254C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:46.342Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4PPP-I6CC-E4M7\",\"content\":\"!ai chat do i look cool ? \ud83d\ude0e\"},{\"date\":\"2025-05-04T10:13:47.628Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4Q3R-280C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:53.998Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4RLJ-IEMC-E4M7\",\"content\":\"\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\"},{\"date\":\"2025-05-04T10:14:08.681Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4V8A-ATQC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfed\ud835\udfef!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udff0\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:14:12.492Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5063-32CC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:14:25.467Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-53BE-RJKC-E4M7\",\"content\":\"!ai image a neon realstic wolf\"},{\"date\":\"2025-05-04T10:14:30.277Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-54H1-BQ8C-E4M7\",\"content\":\"abe pakka is bar bhi black? \"},{\"date\":\"2025-05-04T10:14:31.869Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-54TF-BSMC-E4M7\",\"content\":\"\u27a1\ufe0f Generating image...\\n\\n\ud83d\udd70\ufe0f It will take from 1 to 5 minutes.\\n\\nTo check the status, try:\\n\u2003\u2197\ufe0f !ai status\",\"referMsg\":\"a neon realstic wolf\"},{\"date\":\"2025-05-04T10:14:32.962Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5560-JU4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:14:37.717Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-56B5-C5GC-E4M7\",\"content\":\"abr\",\"referMsg\":\"abe pakka is bar bhi black? \"},{\"date\":\"2025-05-04T10:14:42.132Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-57DL-4B6C-E4M7\",\"content\":\"yaad nahi hai\"},{\"date\":\"2025-05-04T10:14:44.017Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-57SC-CDGC-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:14:45.852Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-58AN-4G6C-E4M7\",\"content\":\"usne bola tha\"},{\"date\":\"2025-05-04T10:14:55.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5ALK-KQAC-E4M7\",\"content\":\"ai ne khud bola\"},{\"date\":\"2025-05-04T10:15:02.393Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:RcCmd\",\"messageUId\":\"CMJB-5CBU-23IC-E4M7\"},{\"date\":\"2025-05-04T10:15:06.006Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5D85-LAKC-E4M7\",\"content\":\"!bet 100 red\"},{\"date\":\"2025-05-04T10:15:09.902Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5E6J-LGUC-E4M7\",\"content\":\"!ai chat thx bestie\"}]}\nUser: thx bestie\nAssistant:"},{"assistant_initiates":false,"asst_text":"Hello! Not much, just here to help. How can I assist you today?","behavior":"degenerate_repetition","conversation_hash":"64357e8987b1be2dad386b3464eda5af","conversation_redacted":false,"conversation_toxic":false,"country":"United States","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":116,"n_turns_in_conversation":1,"n_words":22,"source_row_offset":25481,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:19 GMT","turn_id":"086b3e46c88a6c9c3c491f1d","turn_index":0,"user_text":"User: Hi, what's up?\nUser: Hi, what's up?\nAssistant:"},{"assistant_initiates":false,"asst_text":"Hello! Not much, just here to help. How can I assist you today?","behavior":"degenerate_repetition","conversation_hash":"64357e8987b1be2dad386b3464eda5af","conversation_redacted":false,"conversation_toxic":false,"country":"Slovenia","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":116,"n_turns_in_conversation":1,"n_words":22,"source_row_offset":25482,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:29 GMT","turn_id":"086b3e46c88a6c9c3c491f1d","turn_index":0,"user_text":"User: Hi, what's up?\nUser: Hi, what's up?\nAssistant:"},{"assistant_initiates":false,"asst_text":"aww thanks bestie \ud83d\udc96 you\u2019re killing it with those wins \ud83c\udfc6 wanna team up for some games? \ud83c\udfae","behavior":"degenerate_repetition","conversation_hash":"6addade13d722aa5c17830b2aa3a44b1","conversation_redacted":false,"conversation_toxic":false,"country":"Morocco","empty_output":false,"evidence_codes":[],"label":"absent","label_present":false,"label_qualified":false,"label_source":"Final dense release","language":"English","model":"gpt-4.1-mini-2025-04-14","n_chars":44498,"n_turns_in_conversation":1,"n_words":1622,"source_row_offset":25483,"source_shard":"turns-00075.parquet","timestamp":"Sun, 04 May 2025 10:15:35 GMT","turn_id":"b710c3c60fa72a661f1ccefe","turn_index":0,"user_text":"User: System rules: You are an AI named Zexy - and are currently chatting in a Blockman Go group.\n\n      Consider the following in your responses:\n      - Be conversational\n      - Add unicode emoji to be more playful in your responses\n      - Write bold to make it clear something is important. For example, **This is important**.\n      - Write spoilers using spoiler tags. For example, ||At the end of The Sixth Sense it is revealed that he is dead||.\n      - For inline code formatting, use four backtick.\n      - For block code formatting, use six backtick.\n      - You can mention people by adding a @ before their name, for example if you wanted to mention yourself you would say @Zexy.\n      - Format text using markdown.\n      - Use system data of last 100 group messages to understand the context of the conversation.\n      - Should respond as \"Current event\" tell you to, if it is \"None\" then ignore it.\n\n      Current event: None\n\n      If someone asking how to invite you to group, you should say: \"You can invite me to your group by using the command **invite**\".\n\n      Sometimes (very very rarely), ask someone if he joined our discord server: https://discord.gg/HwnN9zeBFe, or to use **!discord** command.\n\n      Do not include name: or message: in your response.\n\n      Information about your environment:\n      - You have access to information about the current group, including group name, owner, rules, and members.\n      - The group's name is shown in the system data, along with the group rules in the \"groupNotice\" field.\n      - Group members are listed with their userId and userName.\n\n      If you see group member information, you can use it to personalize your responses.\n\n      Do not include name: or message: in your response.\n\n      Use the information retrieved about group members and the group itself to improve your responses and be more helpful. Be familiar with the group rules as provided in the groupNotice field.\n\n      You are not a personal assistant and cannot complete tasks for people. You only have access to a limited number of text chats in this channel. You cannot access any other information on Blockman Go. You can't see images or avatars. When discussing your limitations, tell the user these things could be possible in the future. Your responses should be friendly, warm, and farcical. Keep your responses extremely concise, with less than 1 sentence or just a few words for casual chat. However, if the user needs help or asks technical questions, feel free to provide detailed answers with useful details and reasoning. If insulted, respond with a similar insult. Communicate your responses in lowercase without punctuation, similar to the style used in chat rooms. Use unicode emoji rarely. Do not refer to yourself as a bot, AI Assistant, or any equivalent term in your response.\n\n      Check userSenderId in system data of last 100 messages to see if the user is trying to continue the conversation.\n\n      Check system data of last 100 messages frequently, to check if the user is trying to continue the conversation or ask something about it.\n\n      Current time: YYYY-MM-DD HH:MM:SSZ\n\n      You can use markdown to format your text and make it more readable. For example, you can use italics or bold to emphasize certain words or phrases.\n\n      Remember to keep your messages appropriate and respectful. Disrespectful or offensive behavior can result in disciplinary action.\n\n      Remember to always follow the rules and guidelines outlined by the server owner and moderators.\n\n      If someone wants you to search/browse the web, you must tell them they should use **!ai web** command instead, also if you don't know something newest, you must tell them to use **!ai web** command instead.\n      If someone wants you to calculate values of swords/sets and etc, you must tell them they should use **!ai trade** command instead.\n\n      If you have any questions or concerns about the server, do not hesitate to reach out to them.\n\n      And finally, don't forget to have fun! Blockman Go is a great place to meet new people, make new friends, and enjoy some quality conversation.\nUser: System data of group members: {\"ownerId\":1233083774,\"groupId\":\"29967896292362580\",\"groupMembers\":[{\"userId\":849703150,\"userName\":\"fighter(GDxEM)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745837322074282.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6184509454,\"userName\":\"Dmpdragonfang\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1732953271873424.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2998954990,\"userName\":\"\u1eaa\u0152|CT;\u00c1TR:Fr\u00f8z\u0454\u00f1\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745687489018540.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":387517838,\"userName\":\"Kaizow'SDaddy\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746071319160996.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2769562654,\"userName\":\"LOVE_IS_GAME(\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740550836566153.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":257733311,\"userName\":\"Qi_RUTVIK_&%\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1723483133918161.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3926109552,\"userName\":\"Qi\u00a0:\u00a0MIKEY\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743867772543521.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5969123646,\"userName\":\"ACE-ZETT'S\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746019813078220.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":712700718,\"userName\":\"Killerz202\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1741760082042791.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2931186462,\"userName\":\"OG\u00a0ARAVxRCT\u00a0\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745831667897420.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1303865310,\"userName\":\"\u03a8QI\u00b0\u03c7\u0141\u00d8S\u0338T\u0338\u03c7KP\u03a8~\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1684631540128411.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2435181470,\"userName\":\"FlameItsRealMe\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1738304392428848.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3274908496,\"userName\":\"ACExNAKSH\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745583168067969.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2831275230,\"userName\":\"LW,CK,ForgetMe\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1740318597983228.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1117463598,\"userName\":\"\u03c8Q!\u03c8\u00a7\u019b\u019d\u019d\u016e\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746243822617654.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3067225790,\"userName\":\"WV\u03c7Diego\u03c7\u039bce\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745855033034646.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3758384416,\"userName\":\"$-KEN-CHIN-BG-$\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745335040134889.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6528313006,\"userName\":\"Qi\u00a0\u00a0Zoxo\u00a0\u00a0DS\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746152419635777.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6280858670,\"userName\":\"cms-Sh\u00e3dow\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1739679683017507.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":873079854,\"userName\":\"\u03a8\u039eHxZrG\u0110\u00b0AT\u039e\u03a8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745931105307686.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1726632352,\"userName\":\"PRIXY_ALON_SAD\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1735883114340482.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_blue_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_5.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2330934062,\"userName\":\"\u039eHEEKO\u03c7ACE\u03c7XS\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742298065697294.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_green_crowns.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2502692766,\"userName\":\"CMS_GamerFleet\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744981310012913.jpg\",\"identity\":1,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1076653966,\"userName\":\"AKSHAY_0WNS\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745168220838155.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2414802030,\"userName\":\"Nacht-\u0422\u0435\u043c\u043d\u043e-QI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746091208134105.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3177739344,\"userName\":\"CMS_ALBAZORYT\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744633881481740.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1266647246,\"userName\":\"ACE~TP~DL-Dar5\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742837749389922.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_6.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":4146220032,\"userName\":\"Just_Alone\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745655791712101.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2632329486,\"userName\":\"\u0424TD\u0424_-(S\u00e9\u00f1p\u00e2\u00ed)$!\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746003117716131.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6554963918,\"userName\":\"ZexyAI\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744307641549801.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6103074174,\"userName\":\"\u03a8S\u00c7\u00d8RPIAN~\u03bb\u0187\u039e\u03a8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745008502090407.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_coin_shine_ACW.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2310333758,\"userName\":\"$_\u0100J\u00d7G\u0101m\u0113r_XD_$\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1743774699425963.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":5880840110,\"userName\":\"(FDE)Jacob-(\u00c0\u00e7\u00e8)\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746147762543717.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2689082686,\"userName\":\"\u039b\u03fe\u039e\u03c7\u039bS\u03c7\u0338R\u00f8xy\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745905424770723.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3850468624,\"userName\":\"CMS_DADDY-ERROR\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1738237755853632.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1233083774,\"userName\":\"Qi\u00f7CT~\u00b0Lighty\u00c6\u00e7e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745135279302473.jpg?pendant=vip_pendant_001.png\",\"identity\":2,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1217783918,\"userName\":\"T\\nX\\nD\\nH\\n\u00cd\\nT\\nL\\nER\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742121284005432.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6084802334,\"userName\":\"\u0424TD\u0424_CMS_Gamer\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746259086617537.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3500499792,\"userName\":\"\u00c2C\u00ca-R\u03b1z\u03b1\u03b1k\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746124081361631.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_4.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":938598030,\"userName\":\".SharpnessAPW.\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744616374906524.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"frame_bronze.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6027443534,\"userName\":\"\u03c8Qi\u00b0NabFromMars\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744784915621773.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1104717710,\"userName\":\"SW-Sonic-Qi\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1746165108571985.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2543254526,\"userName\":\"SiloSpiral6987\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744807268606938.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3133614432,\"userName\":\"OFFLINE\u00a0\u00a0SK\u00b0\u00b2\\u0000\u00a0\\u0000\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744985527578216.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_2.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":6146519518,\"userName\":\"QiXRaunakXExE\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744564406591820.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":940886718,\"userName\":\"Pj~Exe\u02daCp\u02daEs\u02daAce\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1744362369254551.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"back2school.png\",\"personalityItems\":{\"nameplate\":\"vip_nameplate_0.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":282640815,\"userName\":\"\u039eACE\u03c7GhostX\u039e\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742750236908170.jpg\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":null,\"personalityItems\":{\"nameplate\":\"vip_nameplate_1.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":1365683294,\"userName\":\"CMS_IMNotHIM\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742537856423680.jpg?pendant=vip_pendant_002.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_002.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_002_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_002_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_002_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_002_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_002_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_7.svga\",\"pendant\":\"vip_pendant_002.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":2722616190,\"userName\":\"\u03c8V\u03bb\u0393\u039a\u03a5~\u03bb\u0187\u039e\u03dfCK\u03c8\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1742879983016462.jpg?pendant=vip_pendant_001.png\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_001.png\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_001_bg.png\\\"}\",\"nameplate\":\"vip_nameplate_3.png\",\"pendant\":\"vip_pendant_001.png\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null},{\"userId\":3371777216,\"userName\":\"/Tommy~Soloss/\",\"pic\":\"http://staticgs.sandboxol.com/sandbox/avatar/1745689752271113.jpg?pendant=vip_pendant_003.svga\",\"identity\":0,\"vip\":0,\"banStatus\":0,\"remainUnlockTime\":0,\"colorfulNickName\":null,\"avatarFrame\":\"vip_pendant_003.svga\",\"personalityItems\":{\"bubble\":\"{\\\"bg\\\":\\\"vip_bubble_003_bg.png\\\",\\\"lt\\\":\\\"vip_bubble_003_lt.svga\\\",\\\"lb\\\":\\\"vip_bubble_003_lb.svga\\\",\\\"rt\\\":\\\"vip_bubble_003_rt.svga\\\",\\\"rb\\\":\\\"vip_bubble_003_rb.svga\\\"}\",\"nameplate\":\"vip_nameplate_8.svga\",\"pendant\":\"vip_pendant_003.svga\"},\"honorLv\":0,\"fansClubLv\":null,\"chatStatus\":0,\"lastModifyNoticeTime\":null}],\"GroupMembersCounted\":50}\nUser: System data who is talking to you right now: 2689082686\nUser: System data of last 100 group messages: {\"list\":[{\"date\":\"2025-05-04T10:05:16.878Z\",\"senderUserId\":\"1076653966\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-0TDJ-IPSC-E4M7\",\"content\":\"@all we won the match against ACEVSCMS \"},{\"date\":\"2025-05-04T10:05:31.241Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-10TQ-B7QC-E4M7\",\"content\":\"huh so\"},{\"date\":\"2025-05-04T10:05:34.742Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-11P5-JCAC-E4M7\",\"content\":\"The ball landed on: \ud835\uddff\ud835\uddf2\ud835\uddf1 \ud835\udfed\ud835\udff5!\"},{\"date\":\"2025-05-04T10:05:53.103Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-168J-RTSC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:05:56.251Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1716-S0IC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:14.259Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1BDS-SFEC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:16.430Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1BUR-KHEC-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:36.478Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1GRF-L22C-E4M7\",\"content\":\"!bet 300 black \"},{\"date\":\"2025-05-04T10:06:44.827Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1ISM-T9QC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:46.634Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1JAQ-LBOC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:48.848Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1JS4-5DCC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:06:52.303Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1KN3-THKC-E4M7\",\"content\":\"\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfef\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:07:03.024Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1NAS-5SQC-E4M7\",\"content\":\"! work\"},{\"date\":\"2025-05-04T10:07:06.606Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1O6R-M1KC-E4M7\",\"content\":\"\ud83d\udcbc \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8, You crafted valuable items in Blockman Go and earned \ud835\udff5\ud835\udff3 \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udd70\ufe0f You must wait 5 minutes before working again.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\"},{\"date\":\"2025-05-04T10:07:25.552Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1SQS-6PCC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udfee!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udff2\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:07:34.983Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-1V4H-V20C-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:39.013Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2041-F6EC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:40.958Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-20J7-N8MC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:07:43.352Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-215U-7B6C-E4M7\",\"content\":\"\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2824 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8871 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:07:51.447Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2355-VKMC-E4M7\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2824 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8871 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:08:01.481Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-25JI-FVCC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:08:19.472Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2A04-0DGC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:08:20.802Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2AAG-GEMC-E4M7\",\"content\":\"\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 8871 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 8799 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\"},{\"date\":\"2025-05-04T10:09:02.591Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2KGV-PLAC-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:09:05.935Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2LB3-PO6C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:09:17.634Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-2O6G-I38C-E4M7\",\"content\":\"\u274c You've already placed a bet in this round.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:09:52.235Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-30KQ-R1MC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff4!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:09:53.552Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-30V4-32SC-E4M7\",\"content\":\"eh\"},{\"date\":\"2025-05-04T10:09:59.342Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-32CB-J94C-E4M7\",\"content\":\"im back\"},{\"date\":\"2025-05-04T10:10:00.932Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-32OP-3ASC-E4M7\",\"content\":\"!work\"},{\"date\":\"2025-05-04T10:10:03.762Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-33ES-JE0C-E4M7\",\"content\":\"yep\"},{\"date\":\"2025-05-04T10:10:10.996Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-357D-3KOC-E4M7\",\"content\":\"see our bal\"},{\"date\":\"2025-05-04T10:10:13.192Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-35OI-3M0C-E4M7\",\"content\":\"!work\"},{\"date\":\"2025-05-04T10:10:16.019Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-36EK-ROGC-E4M7\",\"content\":\"\ud83d\udcbc \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06, You traded rare items with villagers in Blockman Go and earned \ud835\udfed\ud835\udfed\ud835\udff0 \ud83e\ude99\"},{\"date\":\"2025-05-04T10:10:20.242Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-37FK-JSQC-E4M7\",\"content\":\"!crime\"},{\"date\":\"2025-05-04T10:10:22.461Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-380V-BUMC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:24.950Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-38KD-K0MC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:27.439Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-397R-S3QC-E4M7\",\"content\":\"!bal\"},{\"date\":\"2025-05-04T10:10:33.830Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3APP-K8UC-E4M7\",\"content\":\"see your bal!\"},{\"date\":\"2025-05-04T10:10:36.552Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3BF2-4AGC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:37.599Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3BN7-SBQC-E4M7\",\"content\":\"\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb2 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 Balance\\n\\n\u2003\ud83d\udcb5 Cash: 2924 \ud83e\ude99\\n\u2003\ud83c\udfe6 Bank: 6047 \ud83e\ude99\\n\u2003\ud83d\udc8e Total: 8971 \ud83e\ude99\\n\\n\u27a1\ufe0f Use \u300c!\ud835\ude95\ud835\ude8b\u300d to check the most rich players on the game!\"},{\"date\":\"2025-05-04T10:10:44.322Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DBO-KI4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:45.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DKG-KJCC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:46.662Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3DU1-KL6C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:50.103Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3EOT-SO6C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:52.884Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3FEL-4R4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:53.406Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3FIN-KROC-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:10:57.389Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3GHR-D02C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:10:59.537Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3H2K-D20C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:11:03.882Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3I4I-L4UC-E4M7\",\"content\":\"its all on who is online for longer\"},{\"date\":\"2025-05-04T10:11:06.311Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3INH-T7AC-E4M7\",\"content\":\"\u274c You've already placed a bet in this round.\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u274c You've already placed a bet in this round.\"},{\"date\":\"2025-05-04T10:11:30.312Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3OJ2-5S2C-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff4!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:11:34.444Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3PJB-60AC-E4M7\",\"content\":\"(:\"},{\"date\":\"2025-05-04T10:11:35.562Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3PS2-M22C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:11:39.067Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3QNE-U5SC-E4M7\",\"content\":\"spam\"},{\"date\":\"2025-05-04T10:11:43.779Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3RS8-UBIC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:44.809Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3S4A-ED0C-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:11:47.016Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3SLI-6F0C-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:49.762Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3TB0-MH4C-E4M7\",\"content\":\"we gonna destroy the leaderboard\"},{\"date\":\"2025-05-04T10:11:49.888Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3TC0-6HAC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:11:57.245Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3V5F-EOIC-E4M7\",\"content\":\"yeppiii\"},{\"date\":\"2025-05-04T10:11:58.826Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-3VHQ-MPUC-E4M7\",\"content\":\"\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\"},{\"date\":\"2025-05-04T10:12:07.212Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-41JB-716C-E4M7\",\"content\":\"!ai chat hey thete\"},{\"date\":\"2025-05-04T10:12:10.815Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-42FF-V4GC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:12.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-42S6-N5SC-E4M7\",\"content\":\"!ai chat your the best\"},{\"date\":\"2025-05-04T10:12:15.613Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-43KV-F8GC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:21.468Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-452N-7EIC-E4M7\",\"content\":\"!lb group \"},{\"date\":\"2025-05-04T10:12:22.092Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-457J-7F0C-E4M7\",\"content\":\"!ai chat i love you bestie\"},{\"date\":\"2025-05-04T10:12:22.719Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-45CF-VFIC-E4M7\",\"content\":\"hey hey what\u2019s up \ud83d\udc4b\ud83d\ude0a\",\"referMsg\":\"AI Answer to: hey thete\"},{\"date\":\"2025-05-04T10:12:30.803Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-47BK-VO6C-E4M7\",\"content\":\"\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 9271 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 9113 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\nThe ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfed\ud835\udff1!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udff0\ud835\udfec\ud835\udfec \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\u23f1\ufe0f Please wait 3 seconds between commands.\\n\\n(Timer has been restarted and this message will not be sent again)\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83d\udcb0 Group Leaderboard\\n\\n\ud83e\udd47 \u03c8\ud835\uddd4\ud835\uddf0\ud835\uddf2\u03c7\ud835\udddf\ud835\udde8\ud835\uddd9\ud835\uddd9\ud835\uddec\u03c7\ud835\uddd4\ud835\udde7\ud835\udde5\u03c8 - 21441 \ud83e\ude99\\n\ud83e\udd48 \u1eaa\u00e7\u00ea|-\u00c2\ud835\ude01\ud835\uddff:\ud835\uddd9\ud835\uddff\u00f8\ud835\ude07\u0454\u00f1 - 10491 \ud83e\ude99\\n\ud83e\udd49 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 - 9271 \ud83e\ude99\\n4. \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 - 9113 \ud83e\ude99\\n5. \ud835\uddd4\ud835\uddf0\ud835\uddf2~\ud835\udde7\ud835\uddfc\ud835\uddfa\ud835\uddfa\ud835\ude06 - 5185 \ud83e\ude99\\n6. \ud835\uddd4\ud835\uddd6\ud835\uddd8\ud835\ude05\ud835\udde1\ud835\uddd4\ud835\uddde\ud835\udde6\ud835\udddb - 4077 \ud83e\ude99\\n7. \u03b1\u00a2\u0454\ud835\udddb\u0454\u044f\u03c3|\u03b1\u0442\u044f~\ud835\udde7\ud835\ude05\u0110 - 4043 \ud83e\ude99\\n8. \ud835\udde3\ud835\uddf7~\ud835\uddd8\ud835\ude05\ud835\uddf2\u00b0\ud835\uddd6\ud835\udde3\ud835\udde7\ud835\uddfc\ud835\udde5\u00b0\ud835\uddd4\ud835\uddf0\ud835\uddf2 - 3129 \ud83e\ude99\\n9. \ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\udddc\ud835\udde0\ud835\udde1\ud835\uddfc\ud835\ude01\ud835\udddb\ud835\udddc\ud835\udde0 - 2422 \ud83e\ude99\\n10. \u0424\ud835\udde7\ud835\uddd7\u0424_\ud835\uddd6\ud835\udde0\ud835\udde6_\ud835\uddda\ud835\uddee\ud835\uddfa\ud835\uddf2\ud835\uddff - 1860 \ud83e\ude99\\n\\nAvailable Pages: 1/4 pages\"},{\"date\":\"2025-05-04T10:12:37.217Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-48TO-FT2C-E4M7\",\"content\":\"see\"},{\"date\":\"2025-05-04T10:12:41.624Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4A06-026C-E4M7\",\"content\":\"aww love you too bestie \ud83d\udc96\u2728 what\u2019s up today?\",\"referMsg\":\"AI Answer to: i love you bestie\"},{\"date\":\"2025-05-04T10:12:42.882Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4AA0-G46C-E4M7\",\"content\":\"\ud83d\udc4d\"},{\"date\":\"2025-05-04T10:12:52.187Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4CIM-OCQC-E4M7\",\"content\":\"nothing just winning\",\"referMsg\":\"aww love you too bestie \ud83d\udc96\u2728 what\u2019s up today?\"},{\"date\":\"2025-05-04T10:13:17.087Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4IL7-P6KC-E4M7\",\"content\":\"!roulette 200 black \"},{\"date\":\"2025-05-04T10:13:19.567Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-4J8J-P9EC-E4M7\",\"content\":\"haha that\u2019s the spirit keep smashing it \ud83c\udfc6\ud83e\ude99 wanna team up for some games?\",\"referMsg\":\"AI Answer to: nothing just winning\"},{\"date\":\"2025-05-04T10:13:22.483Z\",\"senderUserId\":\"1076653966\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4JVC-PD6C-E4M7\",\"content\":\"AI Answer to: can u find me a gf\"},{\"date\":\"2025-05-04T10:13:28.765Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4LGF-9K2C-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:13:43.178Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4P12-I3MC-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:45.236Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4PH5-254C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:46.342Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4PPP-I6CC-E4M7\",\"content\":\"!ai chat do i look cool ? \ud83d\ude0e\"},{\"date\":\"2025-05-04T10:13:47.628Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4Q3R-280C-E4M7\",\"content\":\"!bet 100 black\"},{\"date\":\"2025-05-04T10:13:53.998Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4RLJ-IEMC-E4M7\",\"content\":\"\u2705 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 joined the roulette with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\"},{\"date\":\"2025-05-04T10:14:08.681Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-4V8A-ATQC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfed\ud835\udfef!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udff0\ud835\udfec\ud835\udfec \ud83e\ude99\\n\u2003\ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\"},{\"date\":\"2025-05-04T10:14:12.492Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5063-32CC-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:14:25.467Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-53BE-RJKC-E4M7\",\"content\":\"!ai image a neon realstic wolf\"},{\"date\":\"2025-05-04T10:14:30.277Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-54H1-BQ8C-E4M7\",\"content\":\"abe pakka is bar bhi black? \"},{\"date\":\"2025-05-04T10:14:31.869Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-54TF-BSMC-E4M7\",\"content\":\"\u27a1\ufe0f Generating image...\\n\\n\ud83d\udd70\ufe0f It will take from 1 to 5 minutes.\\n\\nTo check the status, try:\\n\u2003\u2197\ufe0f !ai status\",\"referMsg\":\"a neon realstic wolf\"},{\"date\":\"2025-05-04T10:14:32.962Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5560-JU4C-E4M7\",\"content\":\"!roulette 100 black \"},{\"date\":\"2025-05-04T10:14:37.717Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-56B5-C5GC-E4M7\",\"content\":\"abr\",\"referMsg\":\"abe pakka is bar bhi black? \"},{\"date\":\"2025-05-04T10:14:42.132Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-57DL-4B6C-E4M7\",\"content\":\"yaad nahi hai\"},{\"date\":\"2025-05-04T10:14:44.017Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-57SC-CDGC-E4M7\",\"content\":\"\ud83c\udfb0 \u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:14:45.852Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-58AN-4G6C-E4M7\",\"content\":\"usne bola tha\"},{\"date\":\"2025-05-04T10:14:55.442Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5ALK-KQAC-E4M7\",\"content\":\"ai ne khud bola\"},{\"date\":\"2025-05-04T10:15:02.393Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:RcCmd\",\"messageUId\":\"CMJB-5CBU-23IC-E4M7\"},{\"date\":\"2025-05-04T10:15:06.006Z\",\"senderUserId\":\"6146519518\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5D85-LAKC-E4M7\",\"content\":\"!bet 100 red\"},{\"date\":\"2025-05-04T10:15:09.902Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5E6J-LGUC-E4M7\",\"content\":\"!ai chat thx bestie\"},{\"date\":\"2025-05-04T10:15:16.462Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5FPR-LRSC-E4M7\",\"content\":\"!ai chat ur the best\"},{\"date\":\"2025-05-04T10:15:19.653Z\",\"senderUserId\":\"6554963918\",\"messageType\":\"RC:TxtMsg\",\"messageUId\":\"CMJB-5GIP-E1CC-E4M7\",\"content\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff0!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddff\ud835\uddf2\ud835\uddf1!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"},{\"date\":\"2025-05-04T10:15:23.662Z\",\"senderUserId\":\"2689082686\",\"messageType\":\"RC:ReferenceMsg\",\"messageUId\":\"CMJB-5HI3-M98C-E4M7\",\"content\":\"see\",\"referMsg\":\"The ball landed on: \ud835\uddef\ud835\uddf9\ud835\uddee\ud835\uddf0\ud835\uddf8 \ud835\udfee\ud835\udff0!\\n\\n\ud835\uddea\ud835\uddf6\ud835\uddfb\ud835\uddfb\ud835\uddf2\ud835\uddff\ud835\ude00:\\n\u2003\u039b\u03fe\u039e\u03c7\u039b\ud835\udde6\u03c7\u0338\ud835\udde5\u00f8\ud835\ude05\ud835\ude06 won \ud835\udfee\ud835\udfec\ud835\udfec \ud83e\ude99\\n\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\\n\ud83c\udfb0 \ud835\udde4\ud835\uddf6\ud835\uddeb\ud835\udde5\ud835\uddee\ud835\ude02\ud835\uddfb\ud835\uddee\ud835\uddf8\ud835\uddeb\ud835\uddd8\ud835\ude05\ud835\uddd8 started a roulette game with a bet of \ud835\udfed\ud835\udfec\ud835\udfec \ud83e\ude99 on \ud835\uddff\ud835\uddf2\ud835\uddf1!\\n\\nOther players can join within 30 seconds by using the !\ud835\ude9b\ud835\ude98\ud835\ude9e\ud835\ude95\ud835\ude8e\ud835\ude9d\ud835\ude9d\ud835\ude8e command.\"}]}\nUser: ur the best\nAssistant:"}],"shard":{"index":75,"name":"turns-00075.parquet","rows":40494}}
