Input | |
---|---|
0 | witness #0#1utf8 �zy>�����V?��l�&N���γ�!�~~� cordtext/html;charset=utf-8 M<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
text-align: center;
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
background: #fff;
display: block;
}
</style>
<script>
FUCKOFF = {};
FUCKOFF.Field = fuMnction( canvas ) {
this.width = canvas.width;
this.height = canvas.height;
this.ctx = canvas.getContext('2d');
this.particles = [];
this.init();
};
FUCKOFF.Field.prototype.init = function() {
this.particles[0] = new FUCKOFF.Knight (this.width/4,this.height/2, 100, "#001");
this.particles[1] = new FUCKOFF.Knight (2*this.width/4,this.height/2, 5000, "#001");
this.particles[2] = new FUCKOFF.Knight (3*this.width/4,this.height/2, 10, "#001");
this.particles[3] = newM FUCKOFF.Knight (2*this.width/3,this.height/2, .200, "#001");
this.ctx.globalAlpha = .06;
var self = this;
var iv = window.setInterval ( function() {
var ms = new Date().getTime();
var i, k, t = 0;
var c = self.particles.length;
while ( new Date().getTime() - ms < 5 ) {
for ( i = 0; i < c; i++ ) {
k = self.particles[i];
self.update(k);
self.draw(k,M self.ctx );
}
t++;
}
}
,25 );
}
function limit ( v, min, max) {
var norm = Math.sqrt(v.x*v.x + v.y*v.y);
if ( norm > max ) {
v.x *= max/norm;
v.y *= max/norm;
}
else if ( norm < min && min != 0) {
v.x /= norm/min;
v.y /= norm/min;
}
}
FUCKOFF.Field.prototype.update = function( k ) {
k.innerForce.x += (( Math.random() - 0.5 ) / k.stability);
k.innerMForce.y += (( Math.random() - 0.5 ) / k.stability);
limit( k.innerForce, 0, 100);
k.v.x += (k.innerForce.x/k.mass);
k.v.y += (k.innerForce.y/k.mass);
limit( k.v, k.minspeed, k.maxspeed);
k.x += k.v.x; k.y += k.v.y;
if ( k.x >this.width ) k.x -= this.width;
if ( k.y >this.height ) k.y -= this.height;
if ( k.x < 0 ) k.x += this.width;
if ( k.y < 0 ) k.y += this.height;
}
FUCKOFF.Field.prototype.draw = function( k, ctx ) {
function drawDot(ctx, r, color) {
M ctx.beginPath();
ctx.arc(0,0,r,0,Math.PI*2,true);
ctx.fillStyle = color;
ctx.fill();
}
ctx.save()
ctx.translate(k.x, k.y);
var norm = Math.sqrt(k.v.x*k.v.x + k.v.y*k.v.y);
console.log(norm);
drawDot(ctx, k.radius/norm, k.color);
ctx.restore();
}
FUCKOFF.Knight = function ( x,y, m, color ) {
this.x = x;
this.y = y;
this.color = color;
this.minspeed = 0.1;
this.maxspeed = 1;
this.v = {x:0, y:0};
this.radius = 1M;
this.stability = .002;
this.innerForce = {x:0, y:0};
this.mass = m;
}
function resizeCanvas() {
var canvas = document.getElementById('canvas');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var field = new FUCKOFF.Field(canvas);
}
window.addEventListener('resize', resizeCanvas);
window.addEventListener('load', resizeCanvas);
</script>
</head>
<body>
<canvas id="canvas"></canvasLt>
</body>
</html>
</head>
<body>
<canvas id="canvas" width="600" height="400"></canvas>
</body>
</html>
h �zy>�����V?��l�&N���γ�!�~~� cordtext/html;charset=utf-8 M<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
text-align: center;
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
background: #fff;
display: block;
}
</style>
<script>
FUCKOFF = {};
FUCKOFF.Field = fuMnction( canvas ) {
this.width = canvas.width;
this.height = canvas.height;
this.ctx = canvas.getContext('2d');
this.particles = [];
this.init();
};
FUCKOFF.Field.prototype.init = function() {
this.particles[0] = new FUCKOFF.Knight (this.width/4,this.height/2, 100, "#001");
this.particles[1] = new FUCKOFF.Knight (2*this.width/4,this.height/2, 5000, "#001");
this.particles[2] = new FUCKOFF.Knight (3*this.width/4,this.height/2, 10, "#001");
this.particles[3] = newM FUCKOFF.Knight (2*this.width/3,this.height/2, .200, "#001");
this.ctx.globalAlpha = .06;
var self = this;
var iv = window.setInterval ( function() {
var ms = new Date().getTime();
var i, k, t = 0;
var c = self.particles.length;
while ( new Date().getTime() - ms < 5 ) {
for ( i = 0; i < c; i++ ) {
k = self.particles[i];
self.update(k);
self.draw(k,M self.ctx );
}
t++;
}
}
,25 );
}
function limit ( v, min, max) {
var norm = Math.sqrt(v.x*v.x + v.y*v.y);
if ( norm > max ) {
v.x *= max/norm;
v.y *= max/norm;
}
else if ( norm < min && min != 0) {
v.x /= norm/min;
v.y /= norm/min;
}
}
FUCKOFF.Field.prototype.update = function( k ) {
k.innerForce.x += (( Math.random() - 0.5 ) / k.stability);
k.innerMForce.y += (( Math.random() - 0.5 ) / k.stability);
limit( k.innerForce, 0, 100);
k.v.x += (k.innerForce.x/k.mass);
k.v.y += (k.innerForce.y/k.mass);
limit( k.v, k.minspeed, k.maxspeed);
k.x += k.v.x; k.y += k.v.y;
if ( k.x >this.width ) k.x -= this.width;
if ( k.y >this.height ) k.y -= this.height;
if ( k.x < 0 ) k.x += this.width;
if ( k.y < 0 ) k.y += this.height;
}
FUCKOFF.Field.prototype.draw = function( k, ctx ) {
function drawDot(ctx, r, color) {
M ctx.beginPath();
ctx.arc(0,0,r,0,Math.PI*2,true);
ctx.fillStyle = color;
ctx.fill();
}
ctx.save()
ctx.translate(k.x, k.y);
var norm = Math.sqrt(k.v.x*k.v.x + k.v.y*k.v.y);
console.log(norm);
drawDot(ctx, k.radius/norm, k.color);
ctx.restore();
}
FUCKOFF.Knight = function ( x,y, m, color ) {
this.x = x;
this.y = y;
this.color = color;
this.minspeed = 0.1;
this.maxspeed = 1;
this.v = {x:0, y:0};
this.radius = 1M;
this.stability = .002;
this.innerForce = {x:0, y:0};
this.mass = m;
}
function resizeCanvas() {
var canvas = document.getElementById('canvas');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var field = new FUCKOFF.Field(canvas);
}
window.addEventListener('resize', resizeCanvas);
window.addEventListener('load', resizeCanvas);
</script>
</head>
<body>
<canvas id="canvas"></canvasLt>
</body>
</html>
</head>
<body>
<canvas id="canvas" width="600" height="400"></canvas>
</body>
</html>
h |
{
"txid": "dce003cd378da99df176f28e2b0e8f94708c5a57a8ef31b127aa2a93c0c07b53",
"hash": "469fb2cf2eadeb02bb28914a873aaaa8513048b8df72c502de6fbec02c9b8ca2",
"version": 2,
"size": 4065,
"vsize": 1101,
"weight": 4404,
"locktime": 0,
"vin": [
{
"txid": "cdf807ccfc254960c77844f3cbb07fc8263d31d5fd253bae479a25ed1233fc30",
"vout": 1,
"scriptSig": {
"asm": "",
"hex": ""
},
"txinwitness": [
"cced8ab8f70b7696389e3e1dba72db90ab520c2d7dcc4250bce9b026407348aec64f09f2214c40a4bce56cb296fbe739e52e591301002fcf44ef95304128448f",
"20c47a791c3eb0ff8ef9e8b7563febdb6c1689264ec303c2c6ceb3bf21c67e037eac0063036f7264010117746578742f68746d6c3b636861727365743d7574662d38004d08023c21444f43545950452068746d6c3e0d0a3c68746d6c206c616e673d22656e223e0d0a3c686561643e0d0a202020203c6d65746120636861727365743d225554462d38223e0d0a202020203c6d65746120687474702d65717569763d22582d55412d436f6d70617469626c652220636f6e74656e743d2249453d65646765223e0d0a202020203c6d657461206e616d653d2276696577706f72742220636f6e74656e743d2277696474683d6465766963652d77696474682c20696e697469616c2d7363616c653d312e30223e0d0a202020203c7374796c653e0d0a2020202020202020626f6479207b200d0a202020202020202020202020746578742d616c69676e3a2063656e7465723b200d0a2020202020202020202020206d617267696e3a20303b0d0a20202020202020202020202070616464696e673a20303b0d0a2020202020202020202020206f766572666c6f773a2068696464656e3b0d0a20202020202020207d0d0a0d0a202020202020202063616e766173207b200d0a2020202020202020202020206261636b67726f756e643a20236666663b200d0a202020202020202020202020646973706c61793a20626c6f636b3b0d0a20202020202020207d0d0a202020203c2f7374796c653e0d0a202020203c7363726970743e0d0a20202020204655434b4f4646203d207b7d3b0d0a4655434b4f46462e4669656c64203d2066754d08026e6374696f6e282063616e7661732029207b0d0a20202020746869732e7769647468203d2063616e7661732e77696474683b0d0a20202020746869732e686569676874203d2063616e7661732e6865696768743b0d0a20202020746869732e637478203d2063616e7661732e676574436f6e746578742827326427293b0d0a20202020746869732e7061727469636c6573203d205b5d3b0d0a202020200d0a20202020746869732e696e697428293b0d0a7d3b0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e696e6974203d2066756e6374696f6e2829207b0d0a20202020746869732e7061727469636c65735b305d203d206e6577204655434b4f46462e4b6e696768742028746869732e77696474682f342c746869732e6865696768742f322c203130302c20222330303122293b0d0a20202020746869732e7061727469636c65735b315d203d206e6577204655434b4f46462e4b6e696768742028322a746869732e77696474682f342c746869732e6865696768742f322c20353030302c20222330303122293b0d0a20202020746869732e7061727469636c65735b325d203d206e6577204655434b4f46462e4b6e696768742028332a746869732e77696474682f342c746869732e6865696768742f322c2031302c20222330303122293b0d0a20202020746869732e7061727469636c65735b335d203d206e65774d0802204655434b4f46462e4b6e696768742028322a746869732e77696474682f332c746869732e6865696768742f322c202e3230302c20222330303122293b0d0a20202020746869732e6374782e676c6f62616c416c706861203d202e30363b0d0a20202020202020202020202020202020202020200d0a202020207661722073656c66203d20746869733b0d0a20202020766172206976203d2077696e646f772e736574496e74657276616c20282066756e6374696f6e2829207b0d0a202020202020202020202020766172206d73203d206e6577204461746528292e67657454696d6528293b0d0a20202020202020202020202076617220692c206b2c2074203d20303b0d0a2020202020202020202020207661722063203d2073656c662e7061727469636c65732e6c656e6774683b0d0a2020202020202020202020207768696c652028206e6577204461746528292e67657454696d652829202d206d73203c20352029207b200d0a20202020202020202020202020202020666f7220282069203d20303b2069203c20633b20692b2b2029207b0d0a20202020202020202020202020202020202020206b203d2073656c662e7061727469636c65735b695d3b0d0a202020202020202020202020202020202020202073656c662e757064617465286b293b0d0a202020202020202020202020202020202020202073656c662e64726177286b2c4d08022073656c662e63747820293b202020202020202020202020202020200d0a202020202020202020202020202020207d0d0a20202020202020202020202020202020742b2b3b0d0a2020202020202020202020207d0d0a20202020202020207d202020200d0a20202020202020202c323520293b0d0a202020207d0d0a0d0a66756e6374696f6e206c696d6974202820762c206d696e2c206d617829207b0d0a20202020766172206e6f726d203d204d6174682e7371727428762e782a762e78202b20762e792a762e79293b0d0a2020202069662028206e6f726d203e206d61782029207b0d0a2020202020202020762e78202a3d206d61782f6e6f726d3b0d0a2020202020202020762e79202a3d206d61782f6e6f726d3b0d0a202020207d0d0a20202020656c73652069662028206e6f726d203c206d696e20202626206d696e20213d203029207b0d0a2020202020202020762e78202f3d206e6f726d2f6d696e3b0d0a2020202020202020762e79202f3d206e6f726d2f6d696e3b0d0a202020207d0d0a7d0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e757064617465203d2066756e6374696f6e28206b2029207b0d0a202020206b2e696e6e6572466f7263652e78202b3d202828204d6174682e72616e646f6d2829202d20302e352029202f206b2e73746162696c697479293b0d0a202020206b2e696e6e65724d0802466f7263652e79202b3d202828204d6174682e72616e646f6d2829202d20302e352029202f206b2e73746162696c697479293b0d0a202020206c696d697428206b2e696e6e6572466f7263652c20302c20313030293b200d0a202020206b2e762e78202b3d20286b2e696e6e6572466f7263652e782f6b2e6d617373293b0d0a202020206b2e762e79202b3d20286b2e696e6e6572466f7263652e792f6b2e6d617373293b0d0a202020206c696d697428206b2e762c206b2e6d696e73706565642c206b2e6d61787370656564293b0d0a202020206b2e78202b3d206b2e762e783b206b2e79202b3d206b2e762e793b0d0a2020202069662028206b2e78203e746869732e77696474682029206b2e78202d3d20746869732e77696474683b0d0a2020202069662028206b2e79203e746869732e6865696768742029206b2e79202d3d20746869732e6865696768743b0d0a2020202069662028206b2e78203c20302029206b2e78202b3d20746869732e77696474683b0d0a2020202069662028206b2e79203c20302029206b2e79202b3d20746869732e6865696768743b20200d0a7d0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e64726177203d2066756e6374696f6e28206b2c206374782029207b0d0a2020202066756e6374696f6e2064726177446f74286374782c20722c20636f6c6f7229207b0d0a202020204d0802202020206374782e626567696e5061746828293b0d0a20202020202020206374782e61726328302c302c722c302c4d6174682e50492a322c74727565293b0d0a20202020202020206374782e66696c6c5374796c65203d20636f6c6f723b0d0a20202020202020206374782e66696c6c28293b0d0a202020207d0d0a0d0a202020206374782e7361766528290d0a202020206374782e7472616e736c617465286b2e782c206b2e79293b0d0a20202020766172206e6f726d203d204d6174682e73717274286b2e762e782a6b2e762e78202b206b2e762e792a6b2e762e79293b0d0a20202020636f6e736f6c652e6c6f67286e6f726d293b0d0a2020202064726177446f74286374782c206b2e7261646975732f6e6f726d2c206b2e636f6c6f72293b0d0a202020206374782e726573746f726528293b0d0a7d0d0a0d0a4655434b4f46462e4b6e69676874203d2066756e6374696f6e202820782c792c206d2c20636f6c6f722029207b0d0a20202020746869732e78203d20783b0d0a20202020746869732e79203d20793b0d0a20202020746869732e636f6c6f72203d20636f6c6f723b0d0a20202020746869732e6d696e7370656564203d20302e313b0d0a20202020746869732e6d61787370656564203d20313b200d0a20202020746869732e76203d207b783a302c20793a307d3b0d0a20202020746869732e726164697573203d20314d08023b200d0a20202020746869732e73746162696c697479203d202e3030323b200d0a20202020746869732e696e6e6572466f726365203d207b783a302c20793a307d3b0d0a20202020746869732e6d617373203d206d3b0d0a7d0d0a0d0a66756e6374696f6e20726573697a6543616e7661732829207b0d0a2020202020202020202020207661722063616e766173203d20646f63756d656e742e676574456c656d656e7442794964282763616e76617327293b0d0a20202020202020202020202063616e7661732e7769647468203d2077696e646f772e696e6e657257696474683b0d0a20202020202020202020202063616e7661732e686569676874203d2077696e646f772e696e6e65724865696768743b0d0a202020202020202020202020766172206669656c64203d206e6577204655434b4f46462e4669656c642863616e766173293b0d0a20202020202020207d0d0a0d0a202020202020202077696e646f772e6164644576656e744c697374656e65722827726573697a65272c20726573697a6543616e766173293b0d0a202020202020202077696e646f772e6164644576656e744c697374656e657228276c6f6164272c20726573697a6543616e766173293b0d0a202020203c2f7363726970743e0d0a3c2f686561643e0d0a3c626f64793e0d0a202020203c63616e7661732069643d2263616e766173223e3c2f63616e7661734c743e0d0a3c2f626f64793e0d0a3c2f68746d6c3e0d0a3c2f686561643e0d0a3c626f64793e0d0a202020203c63616e7661732069643d2263616e766173222077696474683d2236303022206865696768743d22343030223e3c2f63616e7661733e0d0a3c2f626f64793e0d0a3c2f68746d6c3e0d0a68",
"c08e29f9440e97a13779edf9b74615c71effd02d60fc56b5b54d2abeb8d4a3df33"
],
"sequence": 4294967293
}
],
"vout": [
{
"value": 0.0000033,
"n": 0,
"scriptPubKey": {
"asm": "0 720a26f68e322e692bb424be5be55e6b059413d7",
"desc": "addr(bc1qwg9zda5wxghxj2a5yjl9he27dvzegy7hcdegwt)#jn6g0e5q",
"hex": "0014720a26f68e322e692bb424be5be55e6b059413d7",
"address": "bc1qwg9zda5wxghxj2a5yjl9he27dvzegy7hcdegwt",
"type": "witness_v0_keyhash"
}
},
{
"value": 0.00002559,
"n": 1,
"scriptPubKey": {
"asm": "0 3b4cfac2caee021ebf659cd6443052881d0afdd2",
"desc": "addr(bc1q8dx04sk2acppa0m9nntygvzj3qws4lwjs5k5d7)#xdejpcv9",
"hex": "00143b4cfac2caee021ebf659cd6443052881d0afdd2",
"address": "bc1q8dx04sk2acppa0m9nntygvzj3qws4lwjs5k5d7",
"type": "witness_v0_keyhash"
}
}
],
"hex": "0200000000010130fc3312ed259a47ae3b25fdd5313d26c87fb0cbf34478c7604925fccc07f8cd0100000000fdffffff024a01000000000000160014720a26f68e322e692bb424be5be55e6b059413d7ff090000000000001600143b4cfac2caee021ebf659cd6443052881d0afdd20340cced8ab8f70b7696389e3e1dba72db90ab520c2d7dcc4250bce9b026407348aec64f09f2214c40a4bce56cb296fbe739e52e591301002fcf44ef95304128448ffd070f20c47a791c3eb0ff8ef9e8b7563febdb6c1689264ec303c2c6ceb3bf21c67e037eac0063036f7264010117746578742f68746d6c3b636861727365743d7574662d38004d08023c21444f43545950452068746d6c3e0d0a3c68746d6c206c616e673d22656e223e0d0a3c686561643e0d0a202020203c6d65746120636861727365743d225554462d38223e0d0a202020203c6d65746120687474702d65717569763d22582d55412d436f6d70617469626c652220636f6e74656e743d2249453d65646765223e0d0a202020203c6d657461206e616d653d2276696577706f72742220636f6e74656e743d2277696474683d6465766963652d77696474682c20696e697469616c2d7363616c653d312e30223e0d0a202020203c7374796c653e0d0a2020202020202020626f6479207b200d0a202020202020202020202020746578742d616c69676e3a2063656e7465723b200d0a2020202020202020202020206d617267696e3a20303b0d0a20202020202020202020202070616464696e673a20303b0d0a2020202020202020202020206f766572666c6f773a2068696464656e3b0d0a20202020202020207d0d0a0d0a202020202020202063616e766173207b200d0a2020202020202020202020206261636b67726f756e643a20236666663b200d0a202020202020202020202020646973706c61793a20626c6f636b3b0d0a20202020202020207d0d0a202020203c2f7374796c653e0d0a202020203c7363726970743e0d0a20202020204655434b4f4646203d207b7d3b0d0a4655434b4f46462e4669656c64203d2066754d08026e6374696f6e282063616e7661732029207b0d0a20202020746869732e7769647468203d2063616e7661732e77696474683b0d0a20202020746869732e686569676874203d2063616e7661732e6865696768743b0d0a20202020746869732e637478203d2063616e7661732e676574436f6e746578742827326427293b0d0a20202020746869732e7061727469636c6573203d205b5d3b0d0a202020200d0a20202020746869732e696e697428293b0d0a7d3b0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e696e6974203d2066756e6374696f6e2829207b0d0a20202020746869732e7061727469636c65735b305d203d206e6577204655434b4f46462e4b6e696768742028746869732e77696474682f342c746869732e6865696768742f322c203130302c20222330303122293b0d0a20202020746869732e7061727469636c65735b315d203d206e6577204655434b4f46462e4b6e696768742028322a746869732e77696474682f342c746869732e6865696768742f322c20353030302c20222330303122293b0d0a20202020746869732e7061727469636c65735b325d203d206e6577204655434b4f46462e4b6e696768742028332a746869732e77696474682f342c746869732e6865696768742f322c2031302c20222330303122293b0d0a20202020746869732e7061727469636c65735b335d203d206e65774d0802204655434b4f46462e4b6e696768742028322a746869732e77696474682f332c746869732e6865696768742f322c202e3230302c20222330303122293b0d0a20202020746869732e6374782e676c6f62616c416c706861203d202e30363b0d0a20202020202020202020202020202020202020200d0a202020207661722073656c66203d20746869733b0d0a20202020766172206976203d2077696e646f772e736574496e74657276616c20282066756e6374696f6e2829207b0d0a202020202020202020202020766172206d73203d206e6577204461746528292e67657454696d6528293b0d0a20202020202020202020202076617220692c206b2c2074203d20303b0d0a2020202020202020202020207661722063203d2073656c662e7061727469636c65732e6c656e6774683b0d0a2020202020202020202020207768696c652028206e6577204461746528292e67657454696d652829202d206d73203c20352029207b200d0a20202020202020202020202020202020666f7220282069203d20303b2069203c20633b20692b2b2029207b0d0a20202020202020202020202020202020202020206b203d2073656c662e7061727469636c65735b695d3b0d0a202020202020202020202020202020202020202073656c662e757064617465286b293b0d0a202020202020202020202020202020202020202073656c662e64726177286b2c4d08022073656c662e63747820293b202020202020202020202020202020200d0a202020202020202020202020202020207d0d0a20202020202020202020202020202020742b2b3b0d0a2020202020202020202020207d0d0a20202020202020207d202020200d0a20202020202020202c323520293b0d0a202020207d0d0a0d0a66756e6374696f6e206c696d6974202820762c206d696e2c206d617829207b0d0a20202020766172206e6f726d203d204d6174682e7371727428762e782a762e78202b20762e792a762e79293b0d0a2020202069662028206e6f726d203e206d61782029207b0d0a2020202020202020762e78202a3d206d61782f6e6f726d3b0d0a2020202020202020762e79202a3d206d61782f6e6f726d3b0d0a202020207d0d0a20202020656c73652069662028206e6f726d203c206d696e20202626206d696e20213d203029207b0d0a2020202020202020762e78202f3d206e6f726d2f6d696e3b0d0a2020202020202020762e79202f3d206e6f726d2f6d696e3b0d0a202020207d0d0a7d0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e757064617465203d2066756e6374696f6e28206b2029207b0d0a202020206b2e696e6e6572466f7263652e78202b3d202828204d6174682e72616e646f6d2829202d20302e352029202f206b2e73746162696c697479293b0d0a202020206b2e696e6e65724d0802466f7263652e79202b3d202828204d6174682e72616e646f6d2829202d20302e352029202f206b2e73746162696c697479293b0d0a202020206c696d697428206b2e696e6e6572466f7263652c20302c20313030293b200d0a202020206b2e762e78202b3d20286b2e696e6e6572466f7263652e782f6b2e6d617373293b0d0a202020206b2e762e79202b3d20286b2e696e6e6572466f7263652e792f6b2e6d617373293b0d0a202020206c696d697428206b2e762c206b2e6d696e73706565642c206b2e6d61787370656564293b0d0a202020206b2e78202b3d206b2e762e783b206b2e79202b3d206b2e762e793b0d0a2020202069662028206b2e78203e746869732e77696474682029206b2e78202d3d20746869732e77696474683b0d0a2020202069662028206b2e79203e746869732e6865696768742029206b2e79202d3d20746869732e6865696768743b0d0a2020202069662028206b2e78203c20302029206b2e78202b3d20746869732e77696474683b0d0a2020202069662028206b2e79203c20302029206b2e79202b3d20746869732e6865696768743b20200d0a7d0d0a0d0a4655434b4f46462e4669656c642e70726f746f747970652e64726177203d2066756e6374696f6e28206b2c206374782029207b0d0a2020202066756e6374696f6e2064726177446f74286374782c20722c20636f6c6f7229207b0d0a202020204d0802202020206374782e626567696e5061746828293b0d0a20202020202020206374782e61726328302c302c722c302c4d6174682e50492a322c74727565293b0d0a20202020202020206374782e66696c6c5374796c65203d20636f6c6f723b0d0a20202020202020206374782e66696c6c28293b0d0a202020207d0d0a0d0a202020206374782e7361766528290d0a202020206374782e7472616e736c617465286b2e782c206b2e79293b0d0a20202020766172206e6f726d203d204d6174682e73717274286b2e762e782a6b2e762e78202b206b2e762e792a6b2e762e79293b0d0a20202020636f6e736f6c652e6c6f67286e6f726d293b0d0a2020202064726177446f74286374782c206b2e7261646975732f6e6f726d2c206b2e636f6c6f72293b0d0a202020206374782e726573746f726528293b0d0a7d0d0a0d0a4655434b4f46462e4b6e69676874203d2066756e6374696f6e202820782c792c206d2c20636f6c6f722029207b0d0a20202020746869732e78203d20783b0d0a20202020746869732e79203d20793b0d0a20202020746869732e636f6c6f72203d20636f6c6f723b0d0a20202020746869732e6d696e7370656564203d20302e313b0d0a20202020746869732e6d61787370656564203d20313b200d0a20202020746869732e76203d207b783a302c20793a307d3b0d0a20202020746869732e726164697573203d20314d08023b200d0a20202020746869732e73746162696c697479203d202e3030323b200d0a20202020746869732e696e6e6572466f726365203d207b783a302c20793a307d3b0d0a20202020746869732e6d617373203d206d3b0d0a7d0d0a0d0a66756e6374696f6e20726573697a6543616e7661732829207b0d0a2020202020202020202020207661722063616e766173203d20646f63756d656e742e676574456c656d656e7442794964282763616e76617327293b0d0a20202020202020202020202063616e7661732e7769647468203d2077696e646f772e696e6e657257696474683b0d0a20202020202020202020202063616e7661732e686569676874203d2077696e646f772e696e6e65724865696768743b0d0a202020202020202020202020766172206669656c64203d206e6577204655434b4f46462e4669656c642863616e766173293b0d0a20202020202020207d0d0a0d0a202020202020202077696e646f772e6164644576656e744c697374656e65722827726573697a65272c20726573697a6543616e766173293b0d0a202020202020202077696e646f772e6164644576656e744c697374656e657228276c6f6164272c20726573697a6543616e766173293b0d0a202020203c2f7363726970743e0d0a3c2f686561643e0d0a3c626f64793e0d0a202020203c63616e7661732069643d2263616e766173223e3c2f63616e7661734c743e0d0a3c2f626f64793e0d0a3c2f68746d6c3e0d0a3c2f686561643e0d0a3c626f64793e0d0a202020203c63616e7661732069643d2263616e766173222077696474683d2236303022206865696768743d22343030223e3c2f63616e7661733e0d0a3c2f626f64793e0d0a3c2f68746d6c3e0d0a6821c08e29f9440e97a13779edf9b74615c71effd02d60fc56b5b54d2abeb8d4a3df3300000000",
"blockhash": "000000000000000000020e7eb3a49c7d3b63f23b1ebd1849e20f6a467183fb5c",
"confirmations": 103329,
"time": 1695731334,
"blocktime": 1695731334
}
{
"hash": "000000000000000000020e7eb3a49c7d3b63f23b1ebd1849e20f6a467183fb5c",
"confirmations": 103329,
"height": 809428,
"version": 607633408,
"versionHex": "2437c000",
"merkleroot": "ef955d952b80f93c38beb95636030b9bda0b424d9cb2fa02fdab23041df571b5",
"time": 1695731334,
"mediantime": 1695728563,
"nonce": 849925340,
"bits": "1704ed7f",
"difficulty": 57119871304635.31,
"chainwork": "000000000000000000000000000000000000000056d96bcc9b0c60616718ac5c",
"nTx": 2903,
"previousblockhash": "000000000000000000040bbc4ed2fe2ca971ec64cd980aff87429341a815f879",
"nextblockhash": "0000000000000000000341f9f2a0cdc8aa74950f4dc8e493088a91a68fe3ed8c"
}
[
{
"bestblock": "00000000000000000001f10c80ace07ff14f4cee7d9e5fe5356de608fc953206",
"confirmations": 103329,
"value": 0.0000033,
"scriptPubKey": {
"asm": "0 720a26f68e322e692bb424be5be55e6b059413d7",
"desc": "addr(bc1qwg9zda5wxghxj2a5yjl9he27dvzegy7hcdegwt)#jn6g0e5q",
"hex": "0014720a26f68e322e692bb424be5be55e6b059413d7",
"address": "bc1qwg9zda5wxghxj2a5yjl9he27dvzegy7hcdegwt",
"type": "witness_v0_keyhash"
},
"coinbase": false
},
null
]