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-scale /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
band.js
2.59
KB
-rw-r--r--
colors.js
108
B
-rw-r--r--
constant.js
82
B
-rw-r--r--
continuous.js
3.39
KB
-rw-r--r--
diverging.js
2.84
KB
-rw-r--r--
identity.js
654
B
-rw-r--r--
index.js
1.37
KB
-rw-r--r--
init.js
642
B
-rw-r--r--
linear.js
1.58
KB
-rw-r--r--
log.js
3.38
KB
-rw-r--r--
nice.js
345
B
-rw-r--r--
number.js
51
B
-rw-r--r--
ordinal.js
1.06
KB
-rw-r--r--
pow.js
1.16
KB
-rw-r--r--
quantile.js
1.41
KB
-rw-r--r--
quantize.js
1.31
KB
-rw-r--r--
radial.js
1.44
KB
-rw-r--r--
sequential.js
2.72
KB
-rw-r--r--
sequentialQuantile.js
1.05
KB
-rw-r--r--
symlog.js
848
B
-rw-r--r--
threshold.js
997
B
-rw-r--r--
tickFormat.js
1.11
KB
-rw-r--r--
time.js
2.31
KB
-rw-r--r--
utcTime.js
477
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sequential.js
import {interpolate, interpolateRound} from "d3-interpolate"; import {identity} from "./continuous.js"; import {initInterpolator} from "./init.js"; import {linearish} from "./linear.js"; import {loggish} from "./log.js"; import {symlogish} from "./symlog.js"; import {powish} from "./pow.js"; function transformer() { var x0 = 0, x1 = 1, t0, t1, k10, transform, interpolator = identity, clamp = false, unknown; function scale(x) { return x == null || isNaN(x = +x) ? unknown : interpolator(k10 === 0 ? 0.5 : (x = (transform(x) - t0) * k10, clamp ? Math.max(0, Math.min(1, x)) : x)); } scale.domain = function(_) { return arguments.length ? ([x0, x1] = _, t0 = transform(x0 = +x0), t1 = transform(x1 = +x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0), scale) : [x0, x1]; }; scale.clamp = function(_) { return arguments.length ? (clamp = !!_, scale) : clamp; }; scale.interpolator = function(_) { return arguments.length ? (interpolator = _, scale) : interpolator; }; function range(interpolate) { return function(_) { var r0, r1; return arguments.length ? ([r0, r1] = _, interpolator = interpolate(r0, r1), scale) : [interpolator(0), interpolator(1)]; }; } scale.range = range(interpolate); scale.rangeRound = range(interpolateRound); scale.unknown = function(_) { return arguments.length ? (unknown = _, scale) : unknown; }; return function(t) { transform = t, t0 = t(x0), t1 = t(x1), k10 = t0 === t1 ? 0 : 1 / (t1 - t0); return scale; }; } export function copy(source, target) { return target .domain(source.domain()) .interpolator(source.interpolator()) .clamp(source.clamp()) .unknown(source.unknown()); } export default function sequential() { var scale = linearish(transformer()(identity)); scale.copy = function() { return copy(scale, sequential()); }; return initInterpolator.apply(scale, arguments); } export function sequentialLog() { var scale = loggish(transformer()).domain([1, 10]); scale.copy = function() { return copy(scale, sequentialLog()).base(scale.base()); }; return initInterpolator.apply(scale, arguments); } export function sequentialSymlog() { var scale = symlogish(transformer()); scale.copy = function() { return copy(scale, sequentialSymlog()).constant(scale.constant()); }; return initInterpolator.apply(scale, arguments); } export function sequentialPow() { var scale = powish(transformer()); scale.copy = function() { return copy(scale, sequentialPow()).exponent(scale.exponent()); }; return initInterpolator.apply(scale, arguments); } export function sequentialSqrt() { return sequentialPow.apply(null, arguments).exponent(0.5); }
Close