Mxo bot

Fastest PixelPlace.io Bot!

当前为 2023-03-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Mxo bot
  3. // @name:tr Mxo bot
  4. // @namespace https://i.imgur.com/gLazoQg.png
  5. // @version 1.2
  6. // @description Fastest PixelPlace.io Bot!
  7. // @description:tr HATA 3 MART TARİHİNDE DÜZELTİLECEKTİR LÜTFEN BOTU KALDIRMAYINIZ! - Baba Müqemmel Bot Buna Sahip Çıkmayan Türk, Türk Değildir
  8. // @author EditedVersionOf#YuriBot
  9. // @match https://pixelplace.io/*
  10. // @exclude https://pixelplace.io/forums*
  11. // @exclude https://pixelplace.io/blog*
  12. // @exclude https://pixelplace.io/api*
  13. // @exclude https://pixelplace.io/gold-chart.php
  14. // @license MIT
  15. // @icon https://r.resimlink.com/kEp1-4bM.png
  16. // @run-at document-start
  17. // @grant unsafeWindow
  18. // @grant GM.info
  19. // @require https://gf.qytechs.cn/scripts/457456-libnevin/code/LibNevin.js?version=1141400
  20. // @require https://gf.qytechs.cn/scripts/446997-hacktimer-js-by-turuslan/code/hacktimerjs%20by%20turuslan.js?version=1064280
  21. // ==/UserScript==
  22. /* global NevinCore, NevinWaitForElm, NevinProtect, NevinLogger*/
  23. /*jshint esversion: 11 */
  24.  
  25. // ==Locales==
  26. const lang = (navigator.language || navigator.userLanguage) == "tr" ? 1 : 0;
  27. const i18n = {
  28. setting: ["Bot Settings", "Bot Ayarları"][lang],
  29. load: ["Load image", "Resim"][lang],
  30. loaded: ["Loaded", "Yüklendi"][lang],
  31. nloaded: ["Not Loaded", "Yüklenmedi"][lang],
  32. nset: ["Not Set", "Ayarlanmadı"][lang],
  33. on: ["On", "Açık"][lang],
  34. off: ["Off", "Kapalı"][lang],
  35. protect: ["Protect", "Koruma"][lang],
  36. coordinate: ["Coordinate", "Koordinat"][lang],
  37. strategy: ["Shape", "Şekil"][lang],
  38. horizontal: ["Horizontal", "Yatay"][lang],
  39. vertical: ["Vertical", "Dikey"][lang],
  40. circular: ["Circular", "Dairesel"][lang],
  41. chess: ["Chess", "Dama"][lang],
  42. random: ["Random", "Rastgele"][lang],
  43. experimental: ["Experimental", "Deneysel"][lang],
  44. diagonal: ["Diagonal","Diyagonal"][lang],
  45. zigzag: ["Zigzag","Zikzaklı"][lang],
  46. baklava: ["Baklava","Baklava"][lang],
  47. archimedian: ["Archimedian","Arşimet "][lang],
  48. logarithmic: ["Logarithmic","Logaritmik "][lang],
  49. console: ["Mxo Console", "Mxo Konsolu"][lang],
  50. brave_warning: ["Please do not use MxoBot with Brave Browser. Brave Browser can modify image R,G,B values which can result to MxoBot skipping pixels. MxoBot is compatible with Firefox, Edge and Chrome browsers.",
  51. "Lütfen Brave Browser kullanma. Brave Browser resminin R,G,B değerlerini değiştirir, bu da botun bazı pixelleri atlamasına neden olabilir. MxoBot Firefox, Edge ve Chrome tarayıcılarıyla kullanabilirsin."][lang],
  52. };
  53.  
  54.  
  55.  
  56. // ==/Locales==
  57.  
  58. // ==Brave Browser Check==
  59. async function checkBrave() {
  60. if (navigator.brave && await navigator.brave.isBrave()) {
  61. alert(i18n.brave_warning);
  62. }
  63. }
  64. checkBrave();
  65. // ==/Brave Browser Check==
  66.  
  67. // ==Config==
  68. const MXOBOT_EXPERIMENTAL_USE_MULTI_ACC = false;
  69. const MXOBOT_EXPERIMENTAL_STORE_LOADED_IMAGES = false;
  70. const MXOBOT_EXPERIMENTAL_SAVE_LAST_BOTTING = false;
  71. const MXOBOT_ANIMATE_BOT_CANVAS = true;
  72. const MXOBOT_CHECK_MAP_DYNAMICALLY = false;
  73. const MXOBOT_DO_NOT_DITHER = false;
  74. // const MXOBOT_DEBUG_MODE = false;
  75. const MXOBOT_TIMEOUT = 20;
  76. const MXOBOT_IMG_NOT_LOADED = "https://r.resimlink.com/kI42ijJ6V.png";
  77. const MXOBOT_BOT_TITLE_IMG = "https://r.resimlink.com/Droyb4d1V9.png";
  78. const MXOBOT_FONT =
  79. "https://gofile.io/d/Lm3pHQ";
  80. const MXOBOT_DRAWING_STYLES = [
  81. [i18n.horizontal, (a, b) => a[0] + a[1] * 0xfffff - b[0] - b[1] * 0xfffff],
  82. [i18n.vertical, (a, b) => a[0] * 0xfffff + a[1] - b[0] * 0xfffff - b[1]],
  83. [
  84. i18n.circular,
  85. function (a, b) {
  86. const origx = coordinates[0] + ~~(nimage.image.width >> 1);
  87. const origy = coordinates[1] + ~~(nimage.image.height >> 1);
  88. return (
  89. (a[0] - origx) ** 2 +
  90. (a[1] - origy) ** 2 -
  91. (b[0] - origx) ** 2 -
  92. (b[1] - origy) ** 2
  93. );
  94. },
  95. ],
  96. [i18n.chess, (a, b) => ((a[0] + a[1]) % 2) - ((b[0] + b[1]) % 2)],
  97. [i18n.random, () => 1 - Math.random() * 2],
  98. [
  99. i18n.experimental,
  100. function (a, b) {
  101. const origx = coordinates[0] + ~~(nimage.image.width >> 1);
  102. const origy = coordinates[1] + ~~(nimage.image.height >> 1);
  103. function calc(x) {
  104. unsafeWindow.calc =
  105. unsafeWindow.calc ||
  106. function (x) {
  107. return Math.abs(x[0] - origx) ** 3 + Math.abs(x[1] - origy) ** 3;
  108. };
  109. return unsafeWindow.calc(x);
  110. }
  111. return calc(a) - calc(b);
  112. },
  113. ],
  114. [
  115. i18n.diagonal,
  116. (pixel1, pixel2) => pixel1[0] - pixel2[0] + (pixel1[1] - pixel2[1]),
  117. ],
  118. [
  119. i18n.zigzag,
  120. (pixel1, pixel2) =>
  121. (pixel1[0] + pixel1[1]) % 2 === (pixel2[0] + pixel2[1]) % 2
  122. ? pixel1[0] - pixel2[0]
  123. : -(pixel1[0] - pixel2[0]),
  124. ],
  125. [
  126. i18n.baklava,
  127. (pixel1, pixel2) => {
  128. var centerX = coordinates[0] + ~~(nimage.image.width >> 1);
  129. var centerY = coordinates[1] + ~~(nimage.image.height >> 1);
  130. return (
  131. (Math.abs(pixel1[0] - centerX) + Math.abs(pixel1[1] - centerY)) *
  132. (1 +
  133. 0.1 *
  134. Math.cos(Math.atan2(pixel1[1] - centerY, pixel1[0] - centerX))) -
  135. (Math.abs(pixel2[0] - centerX) + Math.abs(pixel2[1] - centerY)) *
  136. (1 +
  137. 0.1 *
  138. Math.cos(Math.atan2(pixel2[1] - centerY, pixel2[0] - centerX)))
  139. );
  140. },
  141. ],
  142. [
  143. i18n.archimedian,
  144. (pixel1, pixel2) => {
  145. var centerX = coordinates[0] + ~~(nimage.image.width >> 1);
  146. var centerY = coordinates[1] + ~~(nimage.image.height >> 1);
  147. return (
  148. Math.sqrt((pixel1[0] - centerX) ** 2 + (pixel1[1] - centerY) ** 2) +
  149. Math.atan2(pixel1[1] - centerY, pixel1[0] - centerX) -
  150. (Math.sqrt((pixel2[0] - centerX) ** 2 + (pixel2[1] - centerY) ** 2) +
  151. Math.atan2(pixel2[1] - centerY, pixel2[0] - centerX))
  152. );
  153. },
  154. ],
  155. [
  156. i18n.logarithmic,
  157. (pixel1, pixel2) => {
  158. var centerX = coordinates[0] + ~~(nimage.image.width >> 1);
  159. var centerY = coordinates[1] + ~~(nimage.image.height >> 1);
  160. return (
  161. Math.log(
  162. Math.sqrt((pixel1[0] - centerX) ** 2 + (pixel1[1] - centerY) ** 2)
  163. ) +
  164. Math.atan2(pixel1[1] - centerY, pixel1[0] - centerX) -
  165. (Math.log(
  166. Math.sqrt((pixel2[0] - centerX) ** 2 + (pixel2[1] - centerY) ** 2)
  167. ) +
  168. Math.atan2(pixel2[1] - centerY, pixel2[0] - centerX))
  169. );
  170. },
  171. ],
  172. ];
  173. // ==/Config==
  174.  
  175. // ==LibNevin==
  176. const core = new NevinCore({
  177. timeout: MXOBOT_TIMEOUT,
  178. multibot: MXOBOT_EXPERIMENTAL_USE_MULTI_ACC,
  179. });
  180. NevinLogger.LEVEL = NevinLoggerFactory.LEVEL_INFO;
  181. // ==/LibNevin==
  182.  
  183. // ==MXObot UI==
  184. function draggable(element, draggable_element) {
  185. let x, y;
  186. // Handle the mousedown event
  187. // that's triggered when user drags the element
  188. const mouseDownHandler = function (e) {
  189. // Get the current mouse position
  190. x = e.clientX;
  191. y = e.clientY;
  192.  
  193. // Attach the listeners to `document`
  194. document.addEventListener("mousemove", mouseMoveHandler);
  195. document.addEventListener("mouseup", mouseUpHandler);
  196. };
  197.  
  198. const mouseMoveHandler = function (e) {
  199. // How far the mouse has been moved
  200. const dx = e.clientX - x;
  201. const dy = e.clientY - y;
  202.  
  203. // Set the position of element
  204. element.style.top = `${element.offsetTop + dy}px`;
  205. element.style.left = `${element.offsetLeft + dx}px`;
  206.  
  207. // Reassign the position of mouse
  208. x = e.clientX;
  209. y = e.clientY;
  210. };
  211.  
  212. const mouseUpHandler = function () {
  213. // Remove the handlers of `mousemove` and `mouseup`
  214. document.removeEventListener("mousemove", mouseMoveHandler);
  215. document.removeEventListener("mouseup", mouseUpHandler);
  216. };
  217.  
  218. draggable_element.addEventListener("mousedown", mouseDownHandler);
  219. }
  220.  
  221. const html = `
  222.  
  223.  
  224. <div>
  225. <div class="menu-div console" id="menu-console">
  226. <div class="menu-title" id="console-title">
  227. ${i18n.console}
  228. </div>
  229. <div class="menu-footer console-footer">
  230. </div>
  231. </div>
  232. <div class="menu-div" id="menu-div">
  233. <div class="menu-title" id="menu-title">
  234. -
  235. -
  236. Guilded.gg/Mxo
  237. </div>
  238. <img src="${MXOBOT_IMG_NOT_LOADED}" id="output">
  239. <div class="menu-footer" id="menu_footer">
  240. <div class="menu-alt-title">
  241. ${i18n.setting}
  242. </div>
  243. <div class="menu-property" id="load_image">
  244. <span class="menu-property-name">
  245. ${i18n.load}
  246. </span>
  247. <span class="menu-switch menu-red">
  248. ${i18n.nloaded}
  249. </span>
  250. </div>
  251. <div class="menu-property" id="bot_switch">
  252. <span class="menu-property-name">
  253. bot
  254. </span>
  255. <span class="menu-switch menu-red">
  256. ${i18n.off}
  257. </span>
  258. </div>
  259. <div class="menu-property" id="protect-switch" data-url="${"%68%74%74%70%73%3A%2F%2F%69%2E%69%6D%67%75%72%2E%63%6F%6D%2F%67%4C%61%7A%6F%51%67%2E%70%6E%67"}">
  260. <span class="menu-property-name">
  261. ${i18n.protect}
  262. </span>
  263. <span class="menu-switch menu-red">
  264. ${i18n.off}
  265. </span>
  266. </div>
  267. <div id="coordinate" class="menu-property" data-url="${
  268. GM.info.script.namespace
  269. }">
  270. <span class="menu-property-name">
  271. ${i18n.coordinate}
  272. </span>
  273. <span class="menu-switch menu-red" id="coordinate-text">
  274. ${i18n.nset}
  275. </span>
  276. </div>
  277. <div class="menu-property" style="cursor:default;">
  278. <span class="menu-property-name">${i18n.strategy}</span>
  279. <select class="menu-property-name" id="strategy">
  280. ${MXOBOT_DRAWING_STYLES.map(function ([name, _]) {
  281. return "<option>" + name + "</option>";
  282. })}
  283. </select>
  284. </div>
  285. </div>
  286. </div>
  287. <style>
  288. @keyframes bababot_ui_blinker {
  289. 0% { opacity: .25; }
  290. 50% { opacity: .0; }
  291. 100% { opacity: .25; }
  292. }
  293. #strategy {
  294. font-family: "MXObot","Consolas";
  295. font-size: 16px;
  296. padding-left: 0px;
  297. }
  298. .bababot-ui-canvas {
  299. ${
  300. MXOBOT_ANIMATE_BOT_CANVAS
  301. ? "animation: bababot_ui_blinker 4s linear infinite;"
  302. : ""
  303. }
  304. position : absolute;
  305. pointer-events : none;
  306. opacity : 75%;
  307. outline : 1px solid transparent;
  308. image-rendering : crisp-edges;
  309. }
  310.  
  311. :root {
  312. --background-grey: #181818;
  313. --background-black: #121212;
  314. --shadow-black: #121212;
  315. --text-white: #DDDDDD;
  316. --text-gray: #ABABAB;
  317. --text-green: #03DD03;
  318. --text-red: #DD0303;
  319. --hover-gray: #252525;
  320. --border-black: #000000;
  321. }
  322.  
  323. @font-face {
  324. font-family: "MXObot";
  325. src: url('${MXOBOT_FONT}') format('woff');
  326. font-weight: normal;
  327. font-style: normal;
  328. font-display: swap;
  329. }
  330.  
  331. .console {
  332. height: 180px !important;
  333. }
  334. .console-footer {
  335. overflow: auto;
  336. display: flex;
  337. flex-direction: column-reverse;
  338. height: calc(0px - 0px);
  339. }
  340.  
  341. .menu-div {
  342. position: absolute;
  343. z-index: 1000;
  344. border: 1px solid var(--border-black);
  345. top: 10px;
  346. left: 1300px;
  347. min-width: 200px;
  348. min-height: 150px;
  349. font-family: "MXObot", "Consolas";
  350. font-size: 8;
  351. text-shadow: 1px 1px black;
  352. background-color: var(--background-grey);
  353. color: var(--text-white);
  354. padding-top: 3px 2px 3px 2px;
  355. user-select: none;
  356. }
  357.  
  358.  
  359. .menu-title {
  360. border: 1px solid var(--border-black);
  361. padding: 2px;
  362. background-color: var(--background-black);
  363. background-image: url(${MXOBOT_BOT_TITLE_IMG});
  364. color: white;
  365. text-align: center;
  366. }
  367.  
  368. .menu-alt-title {
  369. padding-left: 3px;
  370. }
  371. .menu-property-name {
  372. padding-left: 7px;
  373. color: var(--text-gray);
  374. }
  375. .menu-red {
  376. color: var(--text-red);
  377. }
  378. .menu-green {
  379. color: var(--text-green);
  380. }
  381. .menu-property {
  382. cursor: pointer;
  383. width: 200px;
  384. }
  385. .menu-footer :hover {
  386. background-color: var(--hover-gray);
  387. }
  388. .menu-div img {
  389. display: block;
  390. margin: auto;
  391. width: 50px;
  392. border: 2px solid black;
  393. image-rendering: pixelated;
  394. }
  395. </style>
  396. </div>`;
  397.  
  398. var before_messages = [];
  399.  
  400. NevinLogger.listeners.push(function (template, css, level, msg) {
  401. const div = document.createElement("div");
  402. div.textContent = `[NevinCore] ${level} : ${msg}`;
  403. div.className = "menu-property";
  404. div.setAttribute("style", css);
  405. if (mxobot_console_footer) {
  406. mxobot_console_footer.prepend(div);
  407. } else {
  408. before_messages.push(div);
  409. }
  410. });
  411. var menu = new DOMParser().parseFromString(html, "text/html").body.children[0];
  412.  
  413. var mxobot_console_div;
  414. var mxobot_console_title;
  415. var mxobot_console_footer;
  416. var mxobot_coordinates;
  417. var mxobot_coordinates_text;
  418. var mxobot_menu_div;
  419. var mxobot_menu_title;
  420. var mxobot_game_canvas;
  421. var mxobot_game_context;
  422. var mxobot_protect;
  423. var mxobot_load_image;
  424. var mxobot_id;
  425. var canvas;
  426. var pixelplace_painting_move;
  427. var pixelplace_coordinates;
  428.  
  429. function initVars() {
  430. console.log(menu)
  431. mxobot_console_title = menu.querySelector("#console-title");
  432. mxobot_console_div = menu.querySelector("#menu-console");
  433. mxobot_coordinates = menu.querySelector("#coordinate");
  434. mxobot_coordinates_text = menu.querySelector("#coordinate-text");
  435. mxobot_menu_div = menu.querySelector("#menu-div");
  436. mxobot_menu_title = menu.querySelector("#menu-title");
  437. mxobot_protect = menu.querySelector("#protect-switch");
  438. mxobot_load_image = menu.querySelector("#load_image");
  439. mxobot_id = GM.info.namespace;
  440. mxobot_console_footer = menu.querySelector(".console-footer");
  441. pixelplace_coordinates = document.querySelector("#coordinates");
  442. pixelplace_painting_move = document.querySelector("#painting-move");
  443. canvas = document.querySelector("#canvas");
  444. }
  445.  
  446. function createBotCanvas() {
  447. mxobot_game_canvas = document.createElement("canvas");
  448. mxobot_game_canvas.width = canvas.width;
  449. mxobot_game_canvas.height = canvas.height;
  450. mxobot_game_context = mxobot_game_canvas.getContext("2d");
  451. mxobot_game_canvas.className = "bababot-ui-canvas";
  452. pixelplace_painting_move.prepend(mxobot_game_canvas);
  453. }
  454.  
  455. function loadConsole() {
  456. before_messages.forEach(function (div) {
  457. mxobot_console_footer.prepend(div);
  458. });
  459. before_messages = null;
  460. }
  461.  
  462. function controlProperty(id, callback) {
  463. const menu_property = document.getElementById(id);
  464. const span_state = menu_property.children[1];
  465. const refreshDOM = function () {
  466. var _state = span_state.textContent == i18n.off;
  467. span_state.textContent = _state ? i18n.on : i18n.off;
  468. span_state.setAttribute("class", _state ? "menu-green" : "menu-red");
  469. };
  470. menu_property.addEventListener("click", () => {
  471. refreshDOM();
  472. var _state = span_state.textContent == i18n.on;
  473. callback(_state);
  474. });
  475. refreshDOM();
  476. }
  477.  
  478. function clearMxobotCanvas() {
  479. mxobot_game_context.clearRect(
  480. 0,
  481. 0,
  482. mxobot_game_canvas.width,
  483. mxobot_game_canvas.height
  484. );
  485. }
  486.  
  487. async function Mxobot_UIMain() {
  488. document.body.prepend(menu);
  489. await NevinWaitForElm("#menu-div");
  490. await NevinWaitForElm("#canvas");
  491. initVars();
  492. createBotCanvas();
  493. loadConsole();
  494. draggable(mxobot_console_div, mxobot_console_title);
  495. draggable(mxobot_menu_div, mxobot_menu_title);
  496. }
  497.  
  498. // ==/Mxoot UI==
  499.  
  500. // ==Mxobot Javascript==
  501. var nimage;
  502. var coordinates;
  503.  
  504. async function Mxobot_JSMain() {
  505. if (MXOBOT_DO_NOT_DITHER) unsafeWindow.MXOBOT_DO_NOT_DITHER = true;
  506. unsafeWindow.core = core;
  507. core.protection = null;
  508. var protection_state = false;
  509. var drawing_style = MXOBOT_DRAWING_STYLES[0][1];
  510. function drawingStyleChange(e) {
  511. const index = e.srcElement.selectedIndex;
  512. if (index >= MXOBOT_DRAWING_STYLES.length) {
  513. NevinLogger.error(
  514. "Drawing style options have been tampered, resulting in an unsafe indexing of drawing styles. (Options length is smaller than the current index)"
  515. );
  516. }
  517. drawing_style = MXOBOT_DRAWING_STYLES[index][1];
  518. core.engine.tasks.sort(drawing_style);
  519. }
  520. document
  521. .getElementById("strategy")
  522. .addEventListener("change", drawingStyleChange);
  523. controlProperty("bot_switch", function (state) {
  524. console.log(nimage);
  525. if (!nimage) {
  526. NevinLogger.info("Image not loaded!");
  527. return;
  528. }
  529. if (!state) {
  530. clearMxobotCanvas();
  531. core.engine.tasks = [];
  532. core.protection?.stop();
  533. return;
  534. }
  535. if (!nimage || !nimage.image.complete) {
  536. core.logger.error("Image not loaded (yet?)");
  537. }
  538. clearMxobotCanvas();
  539. mxobot_game_context.drawImage(nimage.image, ...coordinates);
  540. core.engine.tasks = [
  541. ...core.engine.tasks,
  542. ...nimage.convertToTasks(...coordinates, core.nevinWS),
  543. ].sort(drawing_style);
  544. if (protection_state) {
  545. core.protection.load(nimage, coordinates);
  546. core.protection.start();
  547. }
  548. });
  549.  
  550. function loadImage(img) {
  551. nimage = img;
  552. nimage.image.addEventListener("load", function () {
  553. mxobot_load_image.children[1].textContent = i18n.loaded;
  554. mxobot_load_image.children[1].setAttribute("class", "menu-green");
  555. document.getElementById("output").src = nimage.image.src;
  556. if (coordinates) {
  557. clearMxobotCanvas();
  558. mxobot_game_context.drawImage(nimage.image, ...coordinates);
  559. }
  560. });
  561. }
  562.  
  563. mxobot_load_image.addEventListener("click", function () {
  564. core.picker.requestImageFromFileDialog(core.palette).then(loadImage);
  565. });
  566.  
  567. core.picker.addClipboardListener(core.palette, loadImage);
  568.  
  569. controlProperty("protect-switch", function (state) {
  570. protection_state = state;
  571. if (state) {
  572. if (!core.protection) {
  573. core.protection = new NevinProtect(core);
  574. if (coordinates && nimage) {
  575. core.protection.load(nimage, coordinates);
  576. }
  577. }
  578. core.protection.start();
  579. }
  580. });
  581.  
  582. canvas.addEventListener("click", function () {
  583. if (
  584. unescape(mxobot_protect.getAttribute("data-url")) !==
  585. mxobot_coordinates.getAttribute("data-url")
  586. ) {
  587. if (!this._opened) {
  588. this._opened = true;
  589. window.open(unescape(mxobot_protect.getAttribute("data-url")));
  590. }
  591. }
  592. coordinates = pixelplace_coordinates.textContent.split(",").map(Number);
  593. mxobot_coordinates_text.setAttribute("class", "menu-green");
  594. mxobot_coordinates_text.textContent = JSON.stringify(coordinates);
  595. if (nimage) {
  596. clearMxobotCanvas();
  597. mxobot_game_context.drawImage(nimage.image, ...coordinates);
  598. }
  599. });
  600. var oldTitle = document.title;
  601. setInterval(function () {
  602. if (!document.hasFocus()) {
  603. document.title = "Mxobot P" + core.engine.tasks.length;
  604. } else if (document.title.startsWith("Mxobot")) {
  605. document.title = oldTitle;
  606. }
  607. }, 10);
  608. }
  609.  
  610. async function Mxobot_Main() {
  611. await Mxobot_UIMain();
  612. await Mxobot_JSMain();
  613. }
  614.  
  615. (function () {
  616. var observer = new MutationObserver(function () {
  617. if (document.body) {
  618. Mxobot_Main();
  619. observer.disconnect();
  620. }
  621. });
  622. observer.observe(document.documentElement, { childList: true });
  623. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址