Mxo bot

Fastest a pixelplaceio bot

目前为 2023-05-22 提交的版本。查看 最新版本

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

QingJ © 2025

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