Agario more features

Color code enemy cells. Enable zoom. Show borders, opponent size, minimap

  1. // ==UserScript==
  2. // @name Agario more features
  3. // @namespace http://www.twitch.tv/agarcro
  4. // @description Color code enemy cells. Enable zoom. Show borders, opponent size, minimap
  5. // @author MFA Legion
  6. // @require https://code.jquery.com/jquery-latest.js
  7. // @match http://agar.io/
  8. // @grant none
  9. // @version 0.0.1.20151030194517
  10. // ==/UserScript==
  11.  
  12. var show_targeting_colors = true;
  13. var allow_zoom = true;
  14. var show_borders = true;
  15. var show_opponent_size = true;
  16. var show_minimap = true;
  17.  
  18. var map = null;
  19. var last = {'x':0, 'y':0, 'color':'#000000', 'size':200};
  20.  
  21. function CenterOfMass(cells, prop){
  22. var n = 0;
  23. var d = 0;
  24. for (var i in cells){
  25. n += cells[i].size*cells[i].size * cells[i][prop];
  26. d += cells[i].size*cells[i].size;
  27. }
  28. return n/d;
  29. }
  30.  
  31. function DrawBorders(c, dark)
  32. {
  33. if (show_borders){
  34. c.strokeStyle = dark ? "#FFFFFF" : "#000000";
  35. c.beginPath();
  36. c.moveTo(0, 0), c.lineTo(11180, 0), c.lineTo(11180, 11180), c.lineTo(0, 11180), c.lineTo(0, 0);
  37. c.stroke();
  38. }
  39. }
  40.  
  41. function DrawMinimap(oc, cells) {
  42. var client_width = window.innerWidth, client_height = window.innerHeight;
  43. var board_size = 11180;
  44. map && oc.drawImage(map, client_width-map.width-10, client_height-map.height-10);
  45. map || (map = document.createElement("canvas"));
  46. var c = Math.min(150, .3 * client_height, .3 * client_width) / board_size;
  47. map.width = board_size * c;
  48. map.height = board_size * c;
  49.  
  50. mc = map.getContext("2d");
  51. mc.scale(c, c);
  52. mc.globalAlpha = .2;
  53. mc.fillStyle = "#000000";
  54. mc.fillRect(0, 0, board_size, board_size);
  55. mc.globalAlpha = .4;
  56. mc.lineWidth = 200;
  57. mc.strokeStyle = "#000000";
  58. mc.strokeRect(0, 0, board_size, board_size);
  59. if (cells && cells[0]){
  60. last.x = CenterOfMass(cells,'x');
  61. last.y = CenterOfMass(cells,'y');
  62. last.size = 200;
  63. last.color = cells[0].color;
  64. }
  65. mc.beginPath();
  66. mc.arc(last.x, last.y, last.size, 0, 2 * Math.PI, false);
  67. mc.globalAlpha = .8;
  68. mc.fillStyle = last.color;
  69. mc.fill();
  70. mc.lineWidth = 70;
  71. mc.stroke();
  72. }
  73.  
  74.  
  75.  
  76. (function(f, l) {
  77. function Ta() {
  78. ma = !0;
  79. Ba();
  80. setInterval(Ba, 18E4);
  81. C = na = document.getElementById("canvas");
  82. g = C.getContext("2d");
  83. C.onmousedown = function(a) {
  84. if (Ca) {
  85. var b = a.clientX - (5 + r / 5 / 2),
  86. c = a.clientY - (5 + r / 5 / 2);
  87. if (Math.sqrt(b * b + c * c) <= r / 5 / 2) {
  88. L();
  89. D(17);
  90. return
  91. }
  92. }
  93. U = a.clientX;
  94. V = a.clientY;
  95. oa();
  96. L()
  97. };
  98. C.onmousemove = function(a) {
  99. U = a.clientX;
  100. V = a.clientY;
  101. oa()
  102. };
  103. C.onmouseup = function() {};
  104. /firefox/i.test(navigator.userAgent) ? document.addEventListener("DOMMouseScroll", Da, !1) : document.body.onmousewheel = Da;
  105. var a = !1,
  106. b = !1,
  107. c = !1;
  108. f.onkeydown = function(d) {
  109. 32 != d.keyCode || a || (L(), D(17), a = !0);
  110. 81 != d.keyCode || b || (D(18), b = !0);
  111. 87 != d.keyCode || c || (L(), D(21), c = !0);
  112. 27 == d.keyCode && Ea(!0)
  113. };
  114. f.onkeyup = function(d) {
  115. 32 == d.keyCode && (a = !1);
  116. 87 == d.keyCode && (c = !1);
  117. 81 == d.keyCode && b && (D(19), b = !1)
  118. };
  119. f.onblur = function() {
  120. D(19);
  121. c = b = a = !1
  122. };
  123. f.onresize = Fa;
  124. Fa();
  125. f.requestAnimationFrame ? f.requestAnimationFrame(Ga) : setInterval(pa, 1E3 / 60);
  126. setInterval(L, 40);
  127. w && l("#region").val(w);
  128. Ha();
  129. W(l("#region").val());
  130. null == q && w && X();
  131. l("#overlays").show()
  132. }
  133.  
  134. function Da(a) {
  135. E *= Math.pow(.9, a.wheelDelta / -120 || a.detail || 0);
  136. 1 > E && (E = 1);
  137. E > 4 / k && (E = 4 / k)
  138. }
  139.  
  140. function Ua() {
  141. if (.4 > k) M = null;
  142. else {
  143. for (var a = Number.POSITIVE_INFINITY, b = Number.POSITIVE_INFINITY, c = Number.NEGATIVE_INFINITY, d = Number.NEGATIVE_INFINITY, e = 0, m = 0; m < v.length; m++) {
  144. var h = v[m];
  145. !h.J() || h.N || 20 >= h.size * k || (e = Math.max(h.size, e), a = Math.min(h.x, a), b = Math.min(h.y, b), c = Math.max(h.x, c), d = Math.max(h.y, d))
  146. }
  147. M = Va.ca({
  148. X: a - (e + 100),
  149. Y: b - (e + 100),
  150. fa: c + (e + 100),
  151. ga: d + (e + 100),
  152. da: 2,
  153. ea: 4
  154. });
  155. for (m = 0; m < v.length; m++)
  156. if (h = v[m], h.J() && !(20 >= h.size * k))
  157. for (a = 0; a < h.a.length; ++a) b = h.a[a].x, c = h.a[a].y, b < t - r / 2 / k || c < u - s / 2 / k || b > t + r / 2 / k || c > u + s / 2 / k || M.i(h.a[a])
  158. }
  159. }
  160.  
  161. function oa() {
  162. Y = (U - r / 2) / k + t;
  163. Z = (V - s / 2) / k + u
  164. }
  165.  
  166. function Ba() {
  167. null == $ && ($ = {}, l("#region").children().each(function() {
  168. var a = l(this),
  169. b = a.val();
  170. b && ($[b] = a.text())
  171. }));
  172. l.get(aa + "//m.agar.io/info", function(a) {
  173. var b = {},
  174. c;
  175. for (c in a.regions) {
  176. var d = c.split(":")[0];
  177. b[d] = b[d] || 0;
  178. b[d] += a.regions[c].numPlayers
  179. }
  180. for (c in b) l('#region option[value="' + c + '"]').text($[c] + " (" + b[c] + " players)")
  181. }, "json")
  182. }
  183.  
  184. function Ia() {
  185. l("#adsBottom").hide();
  186. l("#overlays").hide();
  187. Ha()
  188. }
  189.  
  190. function W(a) {
  191. a && a != w && (l("#region").val() != a && l("#region").val(a), w = f.localStorage.location = a, l(".region-message").hide(), l(".region-message." + a).show(), l(".btn-needs-server").prop("disabled", !1), ma && X())
  192. }
  193.  
  194. function Ea(a) {
  195. F = null;
  196. l("#overlays").fadeIn(a ? 200 : 3E3);
  197. a || l("#adsBottom").fadeIn(3E3)
  198. }
  199.  
  200. function Ha() {
  201. l("#region").val() ? f.localStorage.location = l("#region").val() : f.localStorage.location && l("#region").val(f.localStorage.location);
  202. l("#region").val() ? l("#locationKnown").append(l("#region")) : l("#locationUnknown").append(l("#region"))
  203. }
  204.  
  205. function qa() {
  206. console.log("Find " + w + N);
  207. l.ajax(aa + "//m.agar.io/", {
  208. error: function() {
  209. setTimeout(qa, 1E3)
  210. },
  211. success: function(a) {
  212. a = a.split("\n");
  213. "45.79.222.79:443" == a[0] ? qa() : Ja("ws://" + a[0])
  214. },
  215. dataType: "text",
  216. method: "POST",
  217. cache: !1,
  218. crossDomain: !0,
  219. data: w + N || "?"
  220. })
  221. }
  222.  
  223. function X() {
  224. ma && w && (l("#connecting").show(), qa())
  225. }
  226.  
  227. function Ja(a) {
  228. if (q) {
  229. q.onopen = null;
  230. q.onmessage = null;
  231. q.onclose = null;
  232. try {
  233. q.close()
  234. } catch (b) {}
  235. q = null
  236. }
  237. var c = f.location.search.slice(1);
  238. /^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+:[0-9]+$/.test(c) && (a = "ws://" + c);
  239. Wa && (a = a.split(":"), a = a[0] + "s://ip-" + a[1].replace(/\./g, "-").replace(/\//g, "") + ".tech.agar.io:" + (+a[2] + 2E3));
  240. G = [];
  241. n = [];
  242. A = {};
  243. v = [];
  244. I = [];
  245. B = [];
  246. x = y = null;
  247. J = 0;
  248. console.log("Connecting to " + a);
  249. q = new WebSocket(a);
  250. q.binaryType = "arraybuffer";
  251. q.onopen = Xa;
  252. q.onmessage = Ya;
  253. q.onclose = Za;
  254. q.onerror = function() {
  255. console.log("socket error")
  256. }
  257. }
  258.  
  259. function O(a) {
  260. return new DataView(new ArrayBuffer(a))
  261. }
  262.  
  263. function P(a) {
  264. q.send(a.buffer)
  265. }
  266.  
  267. function Xa() {
  268. var a;
  269. ba = 500;
  270. l("#connecting").hide();
  271. console.log("socket open");
  272. a = O(5);
  273. a.setUint8(0, 254);
  274. a.setUint32(1, 4, !0);
  275. P(a);
  276. a = O(5);
  277. a.setUint8(0, 255);
  278. a.setUint32(1, 673720361, !0);
  279. P(a);
  280. Ka()
  281. }
  282.  
  283. function Za() {
  284. console.log("socket close");
  285. setTimeout(X, ba);
  286. ba *= 1.5
  287. }
  288.  
  289. function Ya(a) {
  290. $a(new DataView(a.data))
  291. }
  292.  
  293. function $a(a) {
  294. function b() {
  295. for (var b = "";;) {
  296. var d = a.getUint16(c, !0);
  297. c += 2;
  298. if (0 == d) break;
  299. b += String.fromCharCode(d)
  300. }
  301. return b
  302. }
  303. var c = 0;
  304. 240 == a.getUint8(c) && (c += 5);
  305. switch (a.getUint8(c++)) {
  306. case 16:
  307. ab(a, c);
  308. break;
  309. case 17:
  310. Q = a.getFloat32(c, !0);
  311. c += 4;
  312. R = a.getFloat32(c, !0);
  313. c += 4;
  314. S = a.getFloat32(c, !0);
  315. c += 4;
  316. break;
  317. case 20:
  318. n = [];
  319. G = [];
  320. break;
  321. case 21:
  322. ra = a.getInt16(c, !0);
  323. c += 2;
  324. sa = a.getInt16(c, !0);
  325. c += 2;
  326. ta || (ta = !0, ca = ra, da = sa);
  327. break;
  328. case 32:
  329. G.push(a.getUint32(c, !0));
  330. c += 4;
  331. break;
  332. case 49:
  333. if (null != y) break;
  334. var d = a.getUint32(c, !0),
  335. c = c + 4;
  336. B = [];
  337. for (var e = 0; e < d; ++e) {
  338. var m = a.getUint32(c, !0),
  339. c = c + 4;
  340. B.push({
  341. id: m,
  342. name: b()
  343. })
  344. }
  345. La();
  346. break;
  347. case 50:
  348. y = [];
  349. d = a.getUint32(c, !0);
  350. c += 4;
  351. for (e = 0; e < d; ++e) y.push(a.getFloat32(c, !0)), c += 4;
  352. La();
  353. break;
  354. case 64:
  355. ea = a.getFloat64(c, !0), c += 8, fa = a.getFloat64(c, !0), c += 8, ga = a.getFloat64(c, !0), c += 8, ha = a.getFloat64(c, !0), c += 8, Q = (ga + ea) / 2, R = (ha + fa) / 2, S = 1, 0 == n.length && (t = Q, u = R, k = S)
  356. }
  357. }
  358.  
  359. function ab(a, b) {
  360. H = +new Date;
  361. var c = Math.random();
  362. ua = !1;
  363. var d = a.getUint16(b, !0);
  364. b += 2;
  365. for (var e = 0; e < d; ++e) {
  366. var m = A[a.getUint32(b, !0)],
  367. h = A[a.getUint32(b + 4, !0)];
  368. b += 8;
  369. m && h && (h.T(), h.p = h.x, h.q = h.y, h.o = h.size, h.F = m.x, h.G = m.y, h.n = h.size, h.M = H)
  370. }
  371. for (e = 0;;) {
  372. d = a.getUint32(b, !0);
  373. b += 4;
  374. if (0 == d) break;
  375. ++e;
  376. var g, m = a.getInt16(b, !0);
  377. b += 2;
  378. h = a.getInt16(b, !0);
  379. b += 2;
  380. g = a.getInt16(b, !0);
  381. b += 2;
  382. for (var f = a.getUint8(b++), k = a.getUint8(b++), l = a.getUint8(b++), f = (f <<
  383. 16 | k << 8 | l).toString(16); 6 > f.length;) f = "0" + f;
  384. var f = "#" + f,
  385. k = a.getUint8(b++),
  386. l = !!(k & 1),
  387. r = !!(k & 16);
  388. k & 2 && (b += 4);
  389. k & 4 && (b += 8);
  390. k & 8 && (b += 16);
  391. for (var q, p = "";;) {
  392. q = a.getUint16(b, !0);
  393. b += 2;
  394. if (0 == q) break;
  395. p += String.fromCharCode(q)
  396. }
  397. q = p;
  398. p = null;
  399. A.hasOwnProperty(d) ? (p = A[d], p.L(), p.p = p.x, p.q = p.y, p.o = p.size, p.color = f) : (p = new va(d, m, h, g, f, q), v.push(p), A[d] = p, p.ka = m, p.la = h);
  400. p.d = l;
  401. p.j = r;
  402. p.F = m;
  403. p.G = h;
  404. p.n = g;
  405. p.ja = c;
  406. p.M = H;
  407. p.W = k;
  408. q && p.Z(q); - 1 != G.indexOf(d) && -1 == n.indexOf(p) && (document.getElementById("overlays").style.display = "none", n.push(p), 1 == n.length && (t = p.x, u = p.y))
  409. }
  410. c = a.getUint32(b, !0);
  411. b += 4;
  412. for (e = 0; e < c; e++) d = a.getUint32(b, !0), b += 4, p = A[d], null != p && p.T();
  413. ua && 0 == n.length && Ea(!1)
  414. }
  415.  
  416. function L() {
  417. var a;
  418. if (wa()) {
  419. a = U - r / 2;
  420. var b = V - s / 2;
  421. 64 > a * a + b * b || .01 > Math.abs(Ma - Y) && .01 > Math.abs(Na - Z) || (Ma = Y, Na = Z, a = O(21), a.setUint8(0, 16), a.setFloat64(1, Y, !0), a.setFloat64(9, Z, !0), a.setUint32(17, 0, !0), P(a))
  422. }
  423. }
  424.  
  425. function Ka() {
  426. if (wa() && null != F) {
  427. var a = O(1 + 2 * F.length);
  428. a.setUint8(0, 0);
  429. for (var b = 0; b < F.length; ++b) a.setUint16(1 + 2 * b, F.charCodeAt(b), !0);
  430. P(a)
  431. }
  432. }
  433.  
  434. function wa() {
  435. return null != q && q.readyState == q.OPEN
  436. }
  437.  
  438. function D(a) {
  439. if (wa()) {
  440. var b = O(1);
  441. b.setUint8(0, a);
  442. P(b)
  443. }
  444. }
  445.  
  446. function Ga() {
  447. pa();
  448. f.requestAnimationFrame(Ga)
  449. }
  450.  
  451. function Fa() {
  452. r = f.innerWidth;
  453. s = f.innerHeight;
  454. na.width = C.width = r;
  455. na.height = C.height = s;
  456. pa()
  457. }
  458.  
  459. function Oa() {
  460. var a;
  461. a = 1 * Math.max(s / 1080, r / 1920);
  462. return a *= E
  463. }
  464.  
  465. function bb() {
  466. if (0 != n.length && !allow_zoom) {
  467. for (var a = 0, b = 0; b < n.length; b++) a += n[b].size;
  468. a = Math.pow(Math.min(64 / a, 1), .4) * Oa();
  469. k = (9 * k + a) / 10
  470. }
  471. }
  472. function Zoom(e) {
  473. allow_zoom && (k *= 1 + e.wheelDelta / 1e3);
  474. }
  475. "onwheel" in document ? document.addEventListener("wheel", Zoom) : "onmousewheel" in document ? document.addEventListener("mousewheel", Zoom) : document.addEventListener("MozMousePixelScroll", Zoom);
  476.  
  477. function pa() {
  478. var a, b = Date.now();
  479. ++cb;
  480. H = b;
  481. if (0 < n.length) {
  482. bb();
  483. for (var c = a = 0, d = 0; d < n.length; d++) n[d].L(),
  484. a += n[d].x / n.length, c += n[d].y / n.length;
  485. Q = a;
  486. R = c;
  487. S = k;
  488. t = (t + a) / 2;
  489. u = (u + c) / 2
  490. } else t = (29 * t + Q) / 30, u = (29 * u + R) / 30, k = (9 * k + S * Oa()) / 10;
  491. Ua();
  492. oa();
  493. xa || g.clearRect(0, 0, r, s);
  494. xa ? (g.fillStyle = ia ? "#111111" : "#F2FBFF", g.globalAlpha = .05, g.fillRect(0, 0, r, s), g.globalAlpha = 1) : db();
  495. v.sort(function(a, b) {
  496. return a.size == b.size ? a.id - b.id : a.size - b.size
  497. });
  498. g.save();
  499. g.translate(r / 2, s / 2);
  500. g.scale(k, k);
  501. g.translate(-t, -u);
  502. DrawBorders(g, ia);
  503. for (d = 0; d < I.length; d++) I[d].B(g);
  504. for (d = 0; d < v.length; d++) v[d].B(g);
  505. if (ta) {
  506. ca = (3 * ca + ra) / 4;
  507. da = (3 * da + sa) / 4;
  508. g.save();
  509. g.strokeStyle =
  510. "#FFAAAA";
  511. g.lineWidth = 10;
  512. g.lineCap = "round";
  513. g.lineJoin = "round";
  514. g.globalAlpha = .5;
  515. g.beginPath();
  516. for (d = 0; d < n.length; d++) g.moveTo(n[d].x, n[d].y), g.lineTo(ca, da);
  517. g.stroke();
  518. g.restore()
  519. }
  520. g.restore();
  521. x && x.width && g.drawImage(x, r - x.width - 10, 10);
  522. DrawMinimap(g, n);
  523. J = Math.max(J, eb());
  524. 0 != J && (null == ja && (ja = new ka(24, "#FFFFFF")), ja.u("Score: " + ~~(J / 100)), c = ja.H(), a = c.width, g.globalAlpha = .2, g.fillStyle = "#000000", g.fillRect(10, s - 10 - 24 - 10, a + 10, 34), g.globalAlpha = 1, g.drawImage(c, 15, s - 10 - 24 - 5));
  525. fb();
  526. b = Date.now() - b;
  527. b > 1E3 / 60 ? z -= .01 : b < 1E3 /
  528. 65 && (z += .01);.4 > z && (z = .4);
  529. 1 < z && (z = 1)
  530. }
  531.  
  532. function db() {
  533. g.fillStyle = ia ? "#111111" : "#F2FBFF";
  534. g.fillRect(0, 0, r, s);
  535. g.save();
  536. g.strokeStyle = ia ? "#AAAAAA" : "#000000";
  537. g.globalAlpha = .2;
  538. g.scale(k, k);
  539. for (var a = r / k, b = s / k, c = -.5 + (-t + a / 2) % 50; c < a; c += 50) g.beginPath(), g.moveTo(c, 0), g.lineTo(c, b), g.stroke();
  540. for (c = -.5 + (-u + b / 2) % 50; c < b; c += 50) g.beginPath(), g.moveTo(0, c), g.lineTo(a, c), g.stroke();
  541. g.restore()
  542. }
  543.  
  544. function fb() {
  545. if (Ca && ya.width) {
  546. var a = r / 5;
  547. g.drawImage(ya, 5, 5, a, a)
  548. }
  549. }
  550.  
  551. function eb() {
  552. for (var a = 0, b = 0; b < n.length; b++) a += n[b].n * n[b].n;
  553. return a
  554. }
  555.  
  556. function La() {
  557. x = null;
  558. if (null != y || 0 != B.length)
  559. if (null != y || la) {
  560. x = document.createElement("canvas");
  561. var a = x.getContext("2d"),
  562. b = 60,
  563. b = null == y ? b + 24 * B.length : b + 180,
  564. c = Math.min(200, .3 * r) / 200;
  565. x.width = 200 * c;
  566. x.height = b * c;
  567. a.scale(c, c);
  568. a.globalAlpha = .4;
  569. a.fillStyle = "#000000";
  570. a.fillRect(0, 0, 200, b);
  571. a.globalAlpha = 1;
  572. a.fillStyle = "#FFFFFF";
  573. c = null;
  574. c = "Leaderboard";
  575. a.font = "30px Ubuntu";
  576. a.fillText(c, 100 - a.measureText(c).width / 2, 40);
  577. if (null == y)
  578. for (a.font = "20px Ubuntu", b = 0; b < B.length; ++b) c = B[b].name || "An unnamed cell",
  579. la || (c = "An unnamed cell"), -1 != G.indexOf(B[b].id) ? (n[0].name && (c = n[0].name), a.fillStyle = "#FFAAAA") : a.fillStyle = "#FFFFFF", c = b + 1 + ". " + c, a.fillText(c, 100 - a.measureText(c).width / 2, 70 + 24 * b);
  580. else
  581. for (b = c = 0; b < y.length; ++b) {
  582. var d = c + y[b] * Math.PI * 2;
  583. a.fillStyle = gb[b + 1];
  584. a.beginPath();
  585. a.moveTo(100, 140);
  586. a.arc(100, 140, 80, c, d, !1);
  587. a.fill();
  588. c = d
  589. }
  590. }
  591. }
  592.  
  593. function va(a, b, c, d, e, m) {
  594. this.id = a;
  595. this.p = this.x = b;
  596. this.q = this.y = c;
  597. this.o = this.size = d;
  598. this.color = e;
  599. this.a = [];
  600. this.l = [];
  601. this.S();
  602. this.Z(m)
  603. }
  604.  
  605. function ka(a, b, c, d) {
  606. a && (this.r = a);
  607. b && (this.O = b);
  608. this.Q = !!c;
  609. d && (this.s = d)
  610. }
  611. var aa = f.location.protocol,
  612. Wa = "https:" == aa;
  613. if (f.location.ancestorOrigins && f.location.ancestorOrigins.length && "https://apps.facebook.com" != f.location.ancestorOrigins[0]) f.top.location = "http://agar.io/";
  614. else {
  615. var na, g, C, r, s, M = null,
  616. q = null,
  617. t = 0,
  618. u = 0,
  619. G = [],
  620. n = [],
  621. A = {},
  622. v = [],
  623. I = [],
  624. B = [],
  625. U = 0,
  626. V = 0,
  627. Y = -1,
  628. Z = -1,
  629. cb = 0,
  630. H = 0,
  631. F = null,
  632. ea = 0,
  633. fa = 0,
  634. ga = 1E4,
  635. ha = 1E4,
  636. k = 1,
  637. w = null,
  638. Pa = !0,
  639. la = !0,
  640. za = !1,
  641. ua = !1,
  642. J = 0,
  643. ia = !1,
  644. Qa = !1,
  645. Q = t = ~~((ea + ga) / 2),
  646. R = u = ~~((fa + ha) / 2),
  647. S = 1,
  648. N = "",
  649. y = null,
  650. ma = !1,
  651. ta = !1,
  652. ra = 0,
  653. sa = 0,
  654. ca = 0,
  655. da =
  656. 0,
  657. Ra = 0,
  658. gb = ["#333333", "#FF3333", "#33FF33", "#3333FF"],
  659. xa = !1,
  660. E = 1,
  661. Ca = "ontouchstart" in f && /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),
  662. ya = new Image;
  663. ya.src = "img/split.png";
  664. var Sa = document.createElement("canvas");
  665. if ("undefined" == typeof console || "undefined" == typeof DataView || "undefined" == typeof WebSocket || null == Sa || null == Sa.getContext || null == f.localStorage) alert("You browser does not support this game, we recommend you to use Firefox to play this");
  666. else {
  667. var $ = null;
  668. f.setNick = function(a) {
  669. Ia();
  670. F = a;
  671. Ka();
  672. J = 0
  673. };
  674. f.setRegion = W;
  675. f.setSkins = function(a) {
  676. Pa = a
  677. };
  678. f.setNames = function(a) {
  679. la = a
  680. };
  681. f.setDarkTheme = function(a) {
  682. ia = a
  683. };
  684. f.setColors = function(a) {
  685. za = a
  686. };
  687. f.setShowMass = function(a) {
  688. Qa = a
  689. };
  690. f.spectate = function() {
  691. F = null;
  692. D(1);
  693. Ia()
  694. };
  695. f.setGameMode = function(a) {
  696. a != N && (N = a, X())
  697. };
  698. f.setAcid = function(a) {
  699. xa = a
  700. };
  701. null != f.localStorage && (null == f.localStorage.AB8 && (f.localStorage.AB8 = 0 + ~~(100 * Math.random())), Ra = +f.localStorage.AB8, f.ABGroup = Ra);
  702. l.get(aa + "//gc.agar.io", function(a) {
  703. var b = a.split(" ");
  704. a = b[0];
  705. b = b[1] || ""; - 1 == "DE IL PL HU BR AT UA".split(" ").indexOf(a) && Aa.push("nazi"); - 1 == ["UA"].indexOf(a) && Aa.push("ussr");
  706. T.hasOwnProperty(a) && ("string" == typeof T[a] ? w || W(T[a]) : T[a].hasOwnProperty(b) && (w || W(T[a][b])))
  707. }, "text");
  708. setTimeout(function() {}, 3E5);
  709. var T = {
  710. AF: "JP-Tokyo",
  711. AX: "EU-London",
  712. AL: "EU-London",
  713. DZ: "EU-London",
  714. AS: "SG-Singapore",
  715. AD: "EU-London",
  716. AO: "EU-London",
  717. AI: "US-Atlanta",
  718. AG: "US-Atlanta",
  719. AR: "BR-Brazil",
  720. AM: "JP-Tokyo",
  721. AW: "US-Atlanta",
  722. AU: "SG-Singapore",
  723. AT: "EU-London",
  724. AZ: "JP-Tokyo",
  725. BS: "US-Atlanta",
  726. BH: "JP-Tokyo",
  727. BD: "JP-Tokyo",
  728. BB: "US-Atlanta",
  729. BY: "EU-London",
  730. BE: "EU-London",
  731. BZ: "US-Atlanta",
  732. BJ: "EU-London",
  733. BM: "US-Atlanta",
  734. BT: "JP-Tokyo",
  735. BO: "BR-Brazil",
  736. BQ: "US-Atlanta",
  737. BA: "EU-London",
  738. BW: "EU-London",
  739. BR: "BR-Brazil",
  740. IO: "JP-Tokyo",
  741. VG: "US-Atlanta",
  742. BN: "JP-Tokyo",
  743. BG: "EU-London",
  744. BF: "EU-London",
  745. BI: "EU-London",
  746. KH: "JP-Tokyo",
  747. CM: "EU-London",
  748. CA: "US-Atlanta",
  749. CV: "EU-London",
  750. KY: "US-Atlanta",
  751. CF: "EU-London",
  752. TD: "EU-London",
  753. CL: "BR-Brazil",
  754. CN: "CN-China",
  755. CX: "JP-Tokyo",
  756. CC: "JP-Tokyo",
  757. CO: "BR-Brazil",
  758. KM: "EU-London",
  759. CD: "EU-London",
  760. CG: "EU-London",
  761. CK: "SG-Singapore",
  762. CR: "US-Atlanta",
  763. CI: "EU-London",
  764. HR: "EU-London",
  765. CU: "US-Atlanta",
  766. CW: "US-Atlanta",
  767. CY: "JP-Tokyo",
  768. CZ: "EU-London",
  769. DK: "EU-London",
  770. DJ: "EU-London",
  771. DM: "US-Atlanta",
  772. DO: "US-Atlanta",
  773. EC: "BR-Brazil",
  774. EG: "EU-London",
  775. SV: "US-Atlanta",
  776. GQ: "EU-London",
  777. ER: "EU-London",
  778. EE: "EU-London",
  779. ET: "EU-London",
  780. FO: "EU-London",
  781. FK: "BR-Brazil",
  782. FJ: "SG-Singapore",
  783. FI: "EU-London",
  784. FR: "EU-London",
  785. GF: "BR-Brazil",
  786. PF: "SG-Singapore",
  787. GA: "EU-London",
  788. GM: "EU-London",
  789. GE: "JP-Tokyo",
  790. DE: "EU-London",
  791. GH: "EU-London",
  792. GI: "EU-London",
  793. GR: "EU-London",
  794. GL: "US-Atlanta",
  795. GD: "US-Atlanta",
  796. GP: "US-Atlanta",
  797. GU: "SG-Singapore",
  798. GT: "US-Atlanta",
  799. GG: "EU-London",
  800. GN: "EU-London",
  801. GW: "EU-London",
  802. GY: "BR-Brazil",
  803. HT: "US-Atlanta",
  804. VA: "EU-London",
  805. HN: "US-Atlanta",
  806. HK: "JP-Tokyo",
  807. HU: "EU-London",
  808. IS: "EU-London",
  809. IN: "JP-Tokyo",
  810. ID: "JP-Tokyo",
  811. IR: "JP-Tokyo",
  812. IQ: "JP-Tokyo",
  813. IE: "EU-London",
  814. IM: "EU-London",
  815. IL: "JP-Tokyo",
  816. IT: "EU-London",
  817. JM: "US-Atlanta",
  818. JP: "JP-Tokyo",
  819. JE: "EU-London",
  820. JO: "JP-Tokyo",
  821. KZ: "JP-Tokyo",
  822. KE: "EU-London",
  823. KI: "SG-Singapore",
  824. KP: "JP-Tokyo",
  825. KR: "JP-Tokyo",
  826. KW: "JP-Tokyo",
  827. KG: "JP-Tokyo",
  828. LA: "JP-Tokyo",
  829. LV: "EU-London",
  830. LB: "JP-Tokyo",
  831. LS: "EU-London",
  832. LR: "EU-London",
  833. LY: "EU-London",
  834. LI: "EU-London",
  835. LT: "EU-London",
  836. LU: "EU-London",
  837. MO: "JP-Tokyo",
  838. MK: "EU-London",
  839. MG: "EU-London",
  840. MW: "EU-London",
  841. MY: "JP-Tokyo",
  842. MV: "JP-Tokyo",
  843. ML: "EU-London",
  844. MT: "EU-London",
  845. MH: "SG-Singapore",
  846. MQ: "US-Atlanta",
  847. MR: "EU-London",
  848. MU: "EU-London",
  849. YT: "EU-London",
  850. MX: "US-Atlanta",
  851. FM: "SG-Singapore",
  852. MD: "EU-London",
  853. MC: "EU-London",
  854. MN: "JP-Tokyo",
  855. ME: "EU-London",
  856. MS: "US-Atlanta",
  857. MA: "EU-London",
  858. MZ: "EU-London",
  859. MM: "JP-Tokyo",
  860. NA: "EU-London",
  861. NR: "SG-Singapore",
  862. NP: "JP-Tokyo",
  863. NL: "EU-London",
  864. NC: "SG-Singapore",
  865. NZ: "SG-Singapore",
  866. NI: "US-Atlanta",
  867. NE: "EU-London",
  868. NG: "EU-London",
  869. NU: "SG-Singapore",
  870. NF: "SG-Singapore",
  871. MP: "SG-Singapore",
  872. NO: "EU-London",
  873. OM: "JP-Tokyo",
  874. PK: "JP-Tokyo",
  875. PW: "SG-Singapore",
  876. PS: "JP-Tokyo",
  877. PA: "US-Atlanta",
  878. PG: "SG-Singapore",
  879. PY: "BR-Brazil",
  880. PE: "BR-Brazil",
  881. PH: "JP-Tokyo",
  882. PN: "SG-Singapore",
  883. PL: "EU-London",
  884. PT: "EU-London",
  885. PR: "US-Atlanta",
  886. QA: "JP-Tokyo",
  887. RE: "EU-London",
  888. RO: "EU-London",
  889. RU: "RU-Russia",
  890. RW: "EU-London",
  891. BL: "US-Atlanta",
  892. SH: "EU-London",
  893. KN: "US-Atlanta",
  894. LC: "US-Atlanta",
  895. MF: "US-Atlanta",
  896. PM: "US-Atlanta",
  897. VC: "US-Atlanta",
  898. WS: "SG-Singapore",
  899. SM: "EU-London",
  900. ST: "EU-London",
  901. SA: "EU-London",
  902. SN: "EU-London",
  903. RS: "EU-London",
  904. SC: "EU-London",
  905. SL: "EU-London",
  906. SG: "JP-Tokyo",
  907. SX: "US-Atlanta",
  908. SK: "EU-London",
  909. SI: "EU-London",
  910. SB: "SG-Singapore",
  911. SO: "EU-London",
  912. ZA: "EU-London",
  913. SS: "EU-London",
  914. ES: "EU-London",
  915. LK: "JP-Tokyo",
  916. SD: "EU-London",
  917. SR: "BR-Brazil",
  918. SJ: "EU-London",
  919. SZ: "EU-London",
  920. SE: "EU-London",
  921. CH: "EU-London",
  922. SY: "EU-London",
  923. TW: "JP-Tokyo",
  924. TJ: "JP-Tokyo",
  925. TZ: "EU-London",
  926. TH: "JP-Tokyo",
  927. TL: "JP-Tokyo",
  928. TG: "EU-London",
  929. TK: "SG-Singapore",
  930. TO: "SG-Singapore",
  931. TT: "US-Atlanta",
  932. TN: "EU-London",
  933. TR: "TK-Turkey",
  934. TM: "JP-Tokyo",
  935. TC: "US-Atlanta",
  936. TV: "SG-Singapore",
  937. UG: "EU-London",
  938. UA: "EU-London",
  939. AE: "EU-London",
  940. GB: "EU-London",
  941. US: {
  942. AL: "US-Atlanta",
  943. AK: "US-Fremont",
  944. AZ: "US-Fremont",
  945. AR: "US-Atlanta",
  946. CA: "US-Fremont",
  947. CO: "US-Fremont",
  948. CT: "US-Atlanta",
  949. DE: "US-Atlanta",
  950. FL: "US-Atlanta",
  951. GA: "US-Atlanta",
  952. HI: "US-Fremont",
  953. ID: "US-Fremont",
  954. IL: "US-Atlanta",
  955. IN: "US-Atlanta",
  956. IA: "US-Atlanta",
  957. KS: "US-Atlanta",
  958. KY: "US-Atlanta",
  959. LA: "US-Atlanta",
  960. ME: "US-Atlanta",
  961. MD: "US-Atlanta",
  962. MA: "US-Atlanta",
  963. MI: "US-Atlanta",
  964. MN: "US-Fremont",
  965. MS: "US-Atlanta",
  966. MO: "US-Atlanta",
  967. MT: "US-Fremont",
  968. NE: "US-Fremont",
  969. NV: "US-Fremont",
  970. NH: "US-Atlanta",
  971. NJ: "US-Atlanta",
  972. NM: "US-Fremont",
  973. NY: "US-Atlanta",
  974. NC: "US-Atlanta",
  975. ND: "US-Fremont",
  976. OH: "US-Atlanta",
  977. OK: "US-Atlanta",
  978. OR: "US-Fremont",
  979. PA: "US-Atlanta",
  980. RI: "US-Atlanta",
  981. SC: "US-Atlanta",
  982. SD: "US-Fremont",
  983. TN: "US-Atlanta",
  984. TX: "US-Atlanta",
  985. UT: "US-Fremont",
  986. VT: "US-Atlanta",
  987. VA: "US-Atlanta",
  988. WA: "US-Fremont",
  989. WV: "US-Atlanta",
  990. WI: "US-Atlanta",
  991. WY: "US-Fremont",
  992. DC: "US-Atlanta",
  993. AS: "US-Atlanta",
  994. GU: "US-Atlanta",
  995. MP: "US-Atlanta",
  996. PR: "US-Atlanta",
  997. UM: "US-Atlanta",
  998. VI: "US-Atlanta"
  999. },
  1000. UM: "SG-Singapore",
  1001. VI: "US-Atlanta",
  1002. UY: "BR-Brazil",
  1003. UZ: "JP-Tokyo",
  1004. VU: "SG-Singapore",
  1005. VE: "BR-Brazil",
  1006. VN: "JP-Tokyo",
  1007. WF: "SG-Singapore",
  1008. EH: "EU-London",
  1009. YE: "JP-Tokyo",
  1010. ZM: "EU-London",
  1011. ZW: "EU-London"
  1012. };
  1013. f.connect = Ja;
  1014. var ba = 500,
  1015. Ma = -1,
  1016. Na = -1,
  1017. x = null,
  1018. z = 1,
  1019. ja = null,
  1020. K = {},
  1021. Aa = "poland;usa;china;russia;canada;australia;spain;brazil;germany;ukraine;france;sweden;hitler;north korea;south korea;japan;united kingdom;earth;greece;latvia;lithuania;estonia;finland;norway;cia;maldivas;austria;nigeria;reddit;yaranaika;confederate;9gag;indiana;4chan;italy;bulgaria;tumblr;2ch.hk;hong kong;portugal;jamaica;german empire;mexico;sanik;switzerland;croatia;chile;indonesia;bangladesh;thailand;iran;iraq;peru;moon;botswana;bosnia;netherlands;european union;taiwan;pakistan;hungary;satanist;qing dynasty;matriarchy;patriarchy;feminism;ireland;texas;facepunch;prodota;cambodia;steam;piccolo;ea;india;kc;denmark;quebec;ayy lmao;sealand;bait;tsarist russia;origin;vinesauce;stalin;belgium;luxembourg;stussy;prussia;8ch;argentina;scotland;sir;romania;belarus;wojak;doge;nasa;byzantium;imperial japan;french kingdom;somalia;turkey;mars;pokerface;8;irs;receita federal;facebook".split(";"),
  1022. hb = ["8", "nasa"],
  1023. ib = ["m'blob"];
  1024. va.prototype = {
  1025. id: 0,
  1026. a: null,
  1027. l: null,
  1028. name: null,
  1029. k: null,
  1030. K: null,
  1031. x: 0,
  1032. y: 0,
  1033. size: 0,
  1034. p: 0,
  1035. q: 0,
  1036. o: 0,
  1037. F: 0,
  1038. G: 0,
  1039. n: 0,
  1040. W: 0,
  1041. M: 0,
  1042. ja: 0,
  1043. ba: 0,
  1044. A: !1,
  1045. d: !1,
  1046. j: !1,
  1047. N: !0,
  1048. T: function() {
  1049. var a;
  1050. for (a = 0; a < v.length; a++)
  1051. if (v[a] == this) {
  1052. v.splice(a, 1);
  1053. break
  1054. }
  1055. delete A[this.id];
  1056. a = n.indexOf(this); - 1 != a && (ua = !0, n.splice(a, 1));
  1057. a = G.indexOf(this.id); - 1 != a && G.splice(a, 1);
  1058. this.A = !0;
  1059. I.push(this)
  1060. },
  1061. h: function() {
  1062. return Math.max(~~(.3 * this.size), 24)
  1063. },
  1064. Z: function(a) {
  1065. if (this.name = a) null == this.k ? this.k = new ka(this.h(), "#FFFFFF", !0, "#000000") : this.k.I(this.h()), this.k.u(this.name)
  1066. },
  1067. S: function() {
  1068. for (var a = this.D(); this.a.length > a;) {
  1069. var b = ~~(Math.random() * this.a.length);
  1070. this.a.splice(b, 1);
  1071. this.l.splice(b, 1)
  1072. }
  1073. 0 == this.a.length && 0 < a && (this.a.push({
  1074. R: this,
  1075. e: this.size,
  1076. x: this.x,
  1077. y: this.y
  1078. }), this.l.push(Math.random() - .5));
  1079. for (; this.a.length < a;) {
  1080. var b = ~~(Math.random() * this.a.length),
  1081. c = this.a[b];
  1082. this.a.splice(b, 0, {
  1083. R: this,
  1084. e: c.e,
  1085. x: c.x,
  1086. y: c.y
  1087. });
  1088. this.l.splice(b, 0, this.l[b])
  1089. }
  1090. },
  1091. D: function() {
  1092. if (0 == this.id) return 16;
  1093. var a = 10;
  1094. 20 > this.size && (a = 0);
  1095. this.d && (a = 30);
  1096. var b = this.size;
  1097. this.d || (b *= k);
  1098. b *= z;
  1099. this.W & 32 && (b *= .25);
  1100. return ~~Math.max(b, a)
  1101. },
  1102. ha: function() {
  1103. this.S();
  1104. for (var a = this.a, b = this.l, c = a.length, d = 0; d < c; ++d) {
  1105. var e = b[(d - 1 + c) % c],
  1106. m = b[(d + 1) % c];
  1107. b[d] += (Math.random() - .5) * (this.j ? 3 : 1);
  1108. b[d] *= .7;
  1109. 10 < b[d] && (b[d] = 10); - 10 > b[d] && (b[d] = -10);
  1110. b[d] = (e + m + 8 * b[d]) / 10
  1111. }
  1112. for (var h = this, g = this.d ? 0 : (this.id / 1E3 + H / 1E4) % (2 * Math.PI), d = 0; d < c; ++d) {
  1113. var f = a[d].e,
  1114. e = a[(d - 1 + c) % c].e,
  1115. m = a[(d + 1) % c].e;
  1116. if (15 < this.size && null != M && 20 < this.size * k && 0 != this.id) {
  1117. var l = !1,
  1118. n = a[d].x,
  1119. q = a[d].y;
  1120. M.ia(n -
  1121. 5, q - 5, 10, 10,
  1122. function(a) {
  1123. a.R != h && 25 > (n - a.x) * (n - a.x) + (q - a.y) * (q - a.y) && (l = !0)
  1124. });
  1125. !l && (a[d].x < ea || a[d].y < fa || a[d].x > ga || a[d].y > ha) && (l = !0);
  1126. l && (0 < b[d] && (b[d] = 0), b[d] -= 1)
  1127. }
  1128. f += b[d];
  1129. 0 > f && (f = 0);
  1130. f = this.j ? (19 * f + this.size) / 20 : (12 * f + this.size) / 13;
  1131. a[d].e = (e + m + 8 * f) / 10;
  1132. e = 2 * Math.PI / c;
  1133. m = this.a[d].e;
  1134. this.d && 0 == d % 2 && (m += 5);
  1135. a[d].x = this.x + Math.cos(e * d + g) * m;
  1136. a[d].y = this.y + Math.sin(e * d + g) * m
  1137. }
  1138. },
  1139. L: function() {
  1140. if (0 == this.id) return 1;
  1141. var a;
  1142. a = (H - this.M) / 120;
  1143. a = 0 > a ? 0 : 1 < a ? 1 : a;
  1144. var b = 0 > a ? 0 : 1 < a ? 1 : a;
  1145. this.h();
  1146. if (this.A && 1 <= b) {
  1147. var c = I.indexOf(this); - 1 != c && I.splice(c, 1)
  1148. }
  1149. this.x = a * (this.F - this.p) + this.p;
  1150. this.y = a * (this.G - this.q) + this.q;
  1151. this.size = b * (this.n - this.o) + this.o;
  1152. return b
  1153. },
  1154. J: function() {
  1155. return 0 == this.id ? !0 : this.x + this.size + 40 < t - r / 2 / k || this.y + this.size + 40 < u - s / 2 / k || this.x - this.size - 40 > t + r / 2 / k || this.y - this.size - 40 > u + s / 2 / k ? !1 : !0
  1156. },
  1157. isTeamColor: function(cells) {
  1158. for (var e = cells[0].color, t = 0; 3 > t; ++t) {
  1159. var n = e.substring(2 * t + 1, 2 * t + 3).toLowerCase();
  1160. if ("ff" === n) {
  1161. var i = this.color.substring(2 * t + 1, 2 * t + 3).toLowerCase();
  1162. return i === n ? true : false
  1163. }
  1164. }
  1165. return false
  1166. },
  1167. getTargetColor: function(cells, game_mode, is_virus){
  1168. var color = {'fill':this.color, 'stroke':this.color};
  1169. var mass = this.size * this.size;
  1170. if (show_targeting_colors && mass > 400) {
  1171. var is_teams = (":teams" == game_mode);
  1172. var smallest = Math.min.apply(null, cells.map(function(e) {
  1173. return e.size*e.size;
  1174. }));
  1175. if (this[is_virus] || 0 === cells.length){
  1176. color.fill = color.stroke = "#666666";
  1177. }
  1178. else if(~cells.indexOf(this) || is_teams && this.isTeamColor(cells)){
  1179. color.fill = "#3371FF";
  1180. if (!is_teams) color.stroke = "#3371FF";
  1181. }
  1182. else if(mass > 2.5 * smallest){
  1183. color.fill = "#FF3C3C";
  1184. if (!is_teams) color.stroke = "#FF3C3C";
  1185. }
  1186. else if(.74 * mass > smallest){
  1187. color.fill = "#FFBF3D";
  1188. if (!is_teams) color.stroke = "#FFBF3D";
  1189. }
  1190. else if(mass > .74 * smallest){
  1191. color.fill = "#FFFF00";
  1192. if (!is_teams) color.stroke = "#FFFF00";
  1193. }
  1194. else if(mass > .4 * smallest){
  1195. color.fill = "#00AA00";
  1196. if (!is_teams) color.stroke = "#00AA00";
  1197. }
  1198. else{
  1199. color.fill = "#44F720";
  1200. if (!is_teams) color.stroke = "#44F720";
  1201. }
  1202. }
  1203. return color;
  1204. },
  1205. B: function(a) {
  1206. var color = this.getTargetColor(n, N, 'W');
  1207. if (this.J()) {
  1208. var b = 0 != this.id && !this.d && !this.j && .4 > k;
  1209. 5 > this.D() && (b = !0);
  1210. if (this.N && !b)
  1211. for (var c = 0; c < this.a.length; c++) this.a[c].e = this.size;
  1212. this.N = b;
  1213. a.save();
  1214. this.ba = H;
  1215. c = this.L();
  1216. this.A && (a.globalAlpha *= 1 - c);
  1217. a.lineWidth = 10;
  1218. a.lineCap = "round";
  1219. a.lineJoin = this.d ? "miter" : "round";
  1220. za ? (a.fillStyle = "#FFFFFF", a.strokeStyle = "#AAAAAA") : (a.fillStyle = color.fill, a.strokeStyle = color.stroke);
  1221. if (b) a.beginPath(), a.arc(this.x, this.y, this.size, 0, 2 * Math.PI, !1);
  1222. else {
  1223. this.ha();
  1224. a.beginPath();
  1225. var d = this.D();
  1226. a.moveTo(this.a[0].x, this.a[0].y);
  1227. for (c = 1; c <= d; ++c) {
  1228. var e = c % d;
  1229. a.lineTo(this.a[e].x, this.a[e].y)
  1230. }
  1231. }
  1232. a.closePath();
  1233. d = this.name.toLowerCase();
  1234. !this.j && Pa && ":teams" != N ? -1 != Aa.indexOf(d) ? (K.hasOwnProperty(d) || (K[d] = new Image, K[d].src = "skins/" + d + ".png"), c = 0 != K[d].width && K[d].complete ? K[d] : null) : c = null : c = null;
  1235. c = (e = c) ? -1 != ib.indexOf(d) : !1;
  1236. b || a.stroke();
  1237. a.fill();
  1238. null == e || c || (a.save(), a.clip(), a.drawImage(e, this.x - this.size, this.y - this.size, 2 * this.size, 2 * this.size), a.restore());
  1239. (za || 15 < this.size) && !b && (a.strokeStyle = "#000000", a.globalAlpha *= .1, a.stroke());
  1240. a.globalAlpha = 1;
  1241. null != e && c && a.drawImage(e, this.x - 2 * this.size, this.y - 2 * this.size, 4 * this.size, 4 * this.size);
  1242. c = -1 != n.indexOf(this);
  1243. b = ~~this.y;
  1244. if ((la || c) && this.name && this.k && (null == e || -1 == hb.indexOf(d))) {
  1245. e = this.k;
  1246. e.u(this.name);
  1247. e.I(this.h());
  1248. d = Math.ceil(10 * k) / 10;
  1249. e.$(d);
  1250. var e = e.H(),
  1251. m = ~~(e.width / d),
  1252. h = ~~(e.height / d);
  1253. a.drawImage(e, ~~this.x - ~~(m / 2), b - ~~(h / 2), m, h);
  1254. b += e.height / 2 / d + 4
  1255. }
  1256. Qa && (c || (0 == n.length || show_opponent_size) && 20 < this.size) && (null == this.K && (this.K = new ka(this.h() / 2, "#FFFFFF", !0, "#000000")), c = this.K, c.I(this.h() / 2), c.u(~~(this.size * this.size / 100)), d = Math.ceil(10 * k) / 10, c.$(d), e = c.H(), m = ~~(e.width / d), h = ~~(e.height / d), a.drawImage(e, ~~this.x - ~~(m / 2), b - ~~(h / 2), m, h));
  1257. a.restore()
  1258. }
  1259. }
  1260. };
  1261. ka.prototype = {
  1262. w: "",
  1263. O: "#000000",
  1264. Q: !1,
  1265. s: "#000000",
  1266. r: 16,
  1267. m: null,
  1268. P: null,
  1269. g: !1,
  1270. v: 1,
  1271. I: function(a) {
  1272. this.r != a && (this.r = a, this.g = !0)
  1273. },
  1274. $: function(a) {
  1275. this.v != a && (this.v = a, this.g = !0)
  1276. },
  1277. setStrokeColor: function(a) {
  1278. this.s != a && (this.s = a, this.g = !0)
  1279. },
  1280. u: function(a) {
  1281. a != this.w && (this.w = a, this.g = !0)
  1282. },
  1283. H: function() {
  1284. null == this.m && (this.m = document.createElement("canvas"), this.P = this.m.getContext("2d"));
  1285. if (this.g) {
  1286. this.g = !1;
  1287. var a = this.m,
  1288. b = this.P,
  1289. c = this.w,
  1290. d = this.v,
  1291. e = this.r,
  1292. m = e + "px Ubuntu";
  1293. b.font = m;
  1294. var h = ~~(.2 * e);
  1295. a.width = (b.measureText(c).width +
  1296. 6) * d;
  1297. a.height = (e + h) * d;
  1298. b.font = m;
  1299. b.scale(d, d);
  1300. b.globalAlpha = 1;
  1301. b.lineWidth = 3;
  1302. b.strokeStyle = this.s;
  1303. b.fillStyle = this.O;
  1304. this.Q && b.strokeText(c, 3, e - h / 2);
  1305. b.fillText(c, 3, e - h / 2)
  1306. }
  1307. return this.m
  1308. }
  1309. };
  1310. Date.now || (Date.now = function() {
  1311. return (new Date).getTime()
  1312. });
  1313. var Va = {
  1314. ca: function(a) {
  1315. function b(a, b, c, d, e) {
  1316. this.x = a;
  1317. this.y = b;
  1318. this.f = c;
  1319. this.c = d;
  1320. this.depth = e;
  1321. this.items = [];
  1322. this.b = []
  1323. }
  1324. var c = a.da || 2,
  1325. d = a.ea || 4;
  1326. b.prototype = {
  1327. x: 0,
  1328. y: 0,
  1329. f: 0,
  1330. c: 0,
  1331. depth: 0,
  1332. items: null,
  1333. b: null,
  1334. C: function(a) {
  1335. for (var b = 0; b < this.items.length; ++b) {
  1336. var c = this.items[b];
  1337. if (c.x >= a.x && c.y >= a.y && c.x < a.x + a.f && c.y < a.y + a.c) return !0
  1338. }
  1339. if (0 != this.b.length) {
  1340. var d = this;
  1341. return this.V(a, function(b) {
  1342. return d.b[b].C(a)
  1343. })
  1344. }
  1345. return !1
  1346. },
  1347. t: function(a, b) {
  1348. for (var c = 0; c < this.items.length; ++c) b(this.items[c]);
  1349. if (0 != this.b.length) {
  1350. var d = this;
  1351. this.V(a, function(c) {
  1352. d.b[c].t(a, b)
  1353. })
  1354. }
  1355. },
  1356. i: function(a) {
  1357. 0 != this.b.length ? this.b[this.U(a)].i(a) : this.items.length >= c && this.depth < d ? (this.aa(), this.b[this.U(a)].i(a)) : this.items.push(a)
  1358. },
  1359. U: function(a) {
  1360. return a.x < this.x + this.f / 2 ? a.y < this.y + this.c / 2 ? 0 : 2 : a.y < this.y + this.c / 2 ? 1 : 3
  1361. },
  1362. V: function(a, b) {
  1363. return a.x < this.x + this.f / 2 && (a.y < this.y + this.c / 2 && b(0) || a.y >= this.y + this.c / 2 && b(2)) || a.x >= this.x + this.f / 2 && (a.y < this.y + this.c / 2 && b(1) || a.y >= this.y + this.c / 2 && b(3)) ? !0 : !1
  1364. },
  1365. aa: function() {
  1366. var a = this.depth + 1,
  1367. c = this.f / 2,
  1368. d = this.c / 2;
  1369. this.b.push(new b(this.x, this.y, c, d, a));
  1370. this.b.push(new b(this.x + c, this.y, c, d, a));
  1371. this.b.push(new b(this.x, this.y + d, c, d, a));
  1372. this.b.push(new b(this.x + c, this.y + d, c, d, a));
  1373. a = this.items;
  1374. this.items = [];
  1375. for (c = 0; c < a.length; c++) this.i(a[c])
  1376. },
  1377. clear: function() {
  1378. for (var a = 0; a < this.b.length; a++) this.b[a].clear();
  1379. this.items.length = 0;
  1380. this.b.length = 0
  1381. }
  1382. };
  1383. var e = {
  1384. x: 0,
  1385. y: 0,
  1386. f: 0,
  1387. c: 0
  1388. };
  1389. return {
  1390. root: new b(a.X, a.Y, a.fa - a.X, a.ga - a.Y, 0),
  1391. i: function(a) {
  1392. this.root.i(a)
  1393. },
  1394. t: function(a, b) {
  1395. this.root.t(a, b)
  1396. },
  1397. ia: function(a, b, c, d, f) {
  1398. e.x = a;
  1399. e.y = b;
  1400. e.f = c;
  1401. e.c = d;
  1402. this.root.t(e, f)
  1403. },
  1404. C: function(a) {
  1405. return this.root.C(a)
  1406. },
  1407. clear: function() {
  1408. this.root.clear()
  1409. }
  1410. }
  1411. }
  1412. };
  1413. l(function() {
  1414. function a() {
  1415. 0 < n.length && (b.color = n[0].color);
  1416. d.clearRect(0, 0, 32, 32);
  1417. d.save();
  1418. d.translate(16, 16);
  1419. d.scale(.4, .4);
  1420. b.B(d);
  1421. d.restore();
  1422. ++e;
  1423. e %= 10;
  1424. if (0 == e) {
  1425. var a = document.getElementById("favicon"),
  1426. f = a.cloneNode(!0);
  1427. f.setAttribute("href", c.toDataURL("image/png"));
  1428. a.parentNode.replaceChild(f, a)
  1429. }
  1430. }
  1431. var b = new va(0, 0, 0, 32, "#ED1C24", ""),
  1432. c = document.createElement("canvas");
  1433. c.width = 32;
  1434. c.height = 32;
  1435. var d = c.getContext("2d"),
  1436. e = 0;
  1437. a();
  1438. setInterval(a, 1E3 / 60)
  1439. });
  1440. f.onload = Ta
  1441. }
  1442. }
  1443. })(window, window.jQuery);