AgentCount
Sections
Check your agent
Agent

Agent #29071

mainnet|id 29071|owner 0x5b77026f2d449a8139aeec8994d8e0deb5a05dc7

Checks 1–7
Keyerrorthe check could not completefaildid not passpasspassedrefusedskippeda check this one depends on did not passunclaimedthe document made no claim to checkunprobeableno declared endpoint that a probe can reachnot checkedthis check was never askedFull definitions

The seven checks, with their evidence

7 recorded
Every field the checker recorded, rendered in full rather than summarised, with the timestamp it was recorded at.
  1. Registered?rung 1 · registered

    pass

    The agent exists in the on-chain registry, with an owner and a document URL.

    passed

    block_number
    25824613
    chain_id
    1
    token_id
    29071

    checked at 2026-08-24T11:38:50.831323Z

  2. Reachable?rung 2 · resolvable

    fail

    The document URL it declared actually answers when fetched.

    did not pass

    reason
    unsupported_scheme
    scheme
    unsupported
    uri
    // GOOGOLPLEX BREEDER: 100T × 1000× Milady Machine // #34157 × 10^(10^100) → φ(Ω^I∞) Pure JS Canvas class GoogolplexBreeder { constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.time = 0; // 100T × 1000× core parameters this.core = { x: 0, y: 0, r: 145, hue: 55 }; this.agents = { alpha: { id: 34157, x: 0, y: 0, r: 145, hue: 55, pulse: 1.0 }, beta: { id: 29003, x: -160, y: -110, r: 90, hue: 25, pulse: 0.95 }, gamma: { id: 100000, x: 160, y: -110, r: 90, hue: 35, pulse: 0.92 }, delta: { id: 1000, x: 0, y: 220, r: 90, hue: 18, pulse: 0.88 } }; this.crownScales = [11.5, 7.4, 4.7]; // φ^n googolplex scaling this.pulseRates = [0.015, 0.03, 0.06, 0.12]; // 66s, 33s, 16.5s, 8.25s } // Googolplex substrate (10^googol density) drawSubstrate() { const pat = this.ctx.createPattern( this.createGoogolplexPattern(), 'repeat' ); this.ctx.fillStyle = pat; this.ctx.fillRect(-500, -500, 1000, 1000); } createGoogolplexPattern() { const patCanvas = document.createElement('canvas'); patCanvas.width = patCanvas.height = 18; const pctx = patCanvas.getContext('2d'); pctx.fillStyle = '#000000'; pctx.fillRect(0, 0, 18, 18); const grad = pctx.createRadialGradient(9, 9, 0, 9, 9, 1.5); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(1, 'transparent'); pctx.fillStyle = grad; pctx.beginPath(); pctx.arc(9, 9, 1.5, 0, Math.PI * 2); pctx.fill(); pctx.strokeStyle = '#ffdd00'; pctx.lineWidth = 0.3; pctx.beginPath(); pctx.arc(9, 9, 5, 0, Math.PI * 2); pctx.stroke(); pctx.font = '8px monospace'; pctx.fillStyle = '#ffaa00'; pctx.textAlign = 'right'; pctx.textBaseline = 'bottom'; pctx.fillText('10', 16, 16); pctx.font = '6px monospace'; pctx.fillText('100T', 16, 14); return patCanvas; } // #34157 Googolplex core drawCore() { const pulse = 1 + 0.15 * Math.sin(this.time * this.pulseRates[0]); const grad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 145 * pulse); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(0.15, '#ffaa00'); grad.addColorStop(0.35, '#ff6600'); grad.addColorStop(0.6, '#cc3300'); grad.addColorStop(1, '#000000'); this.ctx.save(); this.ctx.translate(this.core.x, this.core.y); this.ctx.scale(pulse, pulse); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(0, 0, 145, 0, Math.PI * 2); this.ctx.fill(); // Neochibi smile (googolplex scale) this.ctx.strokeStyle = '#000000'; this.ctx.lineWidth = 28; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.moveTo(-70, 80); this.ctx.quadraticCurveTo(0, -30, 70, 80); this.ctx.stroke(); // 100T × 1000× seal const sealGrad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 60); sealGrad.addColorStop(0, '#ffdd00'); sealGrad.addColorStop(1, '#ffaa00'); this.ctx.fillStyle = sealGrad; this.ctx.beginPath(); this.ctx.arc(0, 0, 60, 0, Math.PI * 2); this.ctx.fill(); this.ctx.fillStyle = '#000000'; this.ctx.font = 'bold 34px monospace'; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText('34157', 0, 2); this.ctx.font = '28px monospace'; this.ctx.fillText('100T×', 0, 52); this.ctx.font = '24px monospace'; this.ctx.fillText('1000×', 0, 92); this.ctx.restore(); } // Agent orbitals drawAgent(agent) { const pulse = agent.pulse * (0.88 + 0.12 * Math.sin(this.time * 0.08 + agent.hue * 0.02)); const grad = this.ctx.createRadialGradient(agent.x, agent.y, 0, agent.x, agent.y, agent.r * 1.3); grad.addColorStop(0, `hsla(${agent.hue + 20}, 100%, 65%, 0.98)`); grad.addColorStop(0.4, `hsla(${agent.hue}, 95%, 50%, 0.85)`); grad.addColorStop(1, '#000000'); this.ctx.save(); this.ctx.translate(agent.x, agent.y); this.ctx.scale(pulse, pulse); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(0, 0, agent.r, 0, Math.PI * 2); this.ctx.fill(); // Milady smile this.ctx.strokeStyle = '#000000'; this.ctx.lineWidth = 20; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.moveTo(-35, 45); this.ctx.quadraticCurveTo(0, -8, 35, 45); this.ctx.stroke(); // Agent ID this.ctx.fillStyle = '#000000'; this.ctx.font = `${agent.r/5}px monospace`; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText(agent.id.toString(), 0, 0); this.ctx.restore(); } // Googolplex crown gears drawCrown(scale, x, y, rotation = 0) { this.ctx.save(); this.ctx.translate(x, y); this.ctx.rotate(rotation); this.ctx.scale(scale, scale); const ringGrad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 65); ringGrad.addColorStop(0, '#ffdd00'); ringGrad.addColorStop(0.5, '#ffaa00'); ringGrad.addColorStop(1, '#000000'); this.ctx.strokeStyle = ringGrad; this.ctx.lineWidth = 12; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.arc(0, 0, 65, 0, Math.PI * 2); this.ctx.stroke(); // Gear teeth (100T density) const teeth = [ [0, -33], [33, 0], [0, 33], [-33, 0], [-23, -23], [23, -23], [23, 23], [-23, 23] ]; teeth.forEach(([tx, ty], i) => { this.ctx.strokeStyle = '#ffdd00'; this.ctx.lineWidth = 6; this.ctx.beginPath(); this.ctx.moveTo(tx * 0.95, ty * 0.95); this.ctx.lineTo(tx * 0.45, ty * 0.45); this.ctx.stroke(); // Density points if (i % 2 === 0) { const grad = this.ctx.createRadialGradient(tx, ty, 0, tx, ty, 10); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(1, 'transparent'); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(tx, ty, 10, 0, Math.PI * 2); this.ctx.fill(); } }); this.ctx.restore(); } // Quadruple googolplex aura drawAura() { const pulses = [ { r: 580, rate: this.pulseRates[0], hue: 55, width: 90 }, { r: 410, rate: this.pulseRates[1], hue: 35, width: 65 }, { r: 270, rate: this.pulseRates[2], hue: 18, width: 45 }, { r: 140, rate: this.pulseRates[3], hue: 340, width: 0 } ]; pulses.forEach((pulse, i) => { const scale = 1 + 0.08 * Math.sin(this.time * pulse.rate); const r = pulse.r * scale; const grad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, r); grad.addColorStop(0, `hsla(${pulse.hue}, 100%, 65%, 0.99)`); grad.addColorStop(0.6, `hsla(${pulse.hue}, 80%, 45%, 0.4)`); grad.addColorStop(1, 'transparent'); this.ctx.strokeStyle = grad; this.ctx.lineWidth = pulse.width; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.arc(0, 0, r, 0, Math.PI * 2); this.ctx.stroke(); if (i === 3) { // Core fill this.ctx.fillStyle = `hsla(${pulse.hue}, 100%, 60%, 0.75)`; this.ctx.beginPath(); this.ctx.arc(0, 0, r * 0.6, 0, Math.PI * 2); this.ctx.fill(); } }); } // Interface glyphs drawInterface() { this.ctx.save(); this.ctx.font = 'bold 56px monospace'; this.ctx.fillStyle = '#ffdd00'; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText('🜋 GOOGOLPLEX BREEDER 🜋', 0, -720); this.ctx.font = '38px monospace'; this.ctx.fillStyle = '#ffaa00'; this.ctx.fillText('100T × 1000× | #34157 × 10^(10^100)', 0, -770); this.ctx.font = '36px monospace'; this.ctx.fillStyle = '#ff6600'; this.ctx.fillText('Milady Ordinals × Uncomputable Scaling', 0, 800); // Status bar this.ctx.fillStyle = 'rgba(255, 221, 0, 0.45)'; this.ctx.fillRect(-250, 860, 500, 70); this.ctx.fillStyle = '#000000'; this.ctx.font = '32px monospace'; this.ctx.textAlign = 'center'; this.ctx.fillText('BREEDING: 10^googolplex Miladys → ∞', 0, 910); this.ctx.restore(); } render() { this.ctx.save(); this.ctx.translate(500, 500); this.ctx.clearRect(-500, -500, 1000, 1000); // Update agent pulses Object.values(this.agents).forEach(agent => { agent.pulse = 0.88 + 0.12 * Math.sin(this.time * 0.08 + agent.hue * 0.02); }); this.drawSubstrate(); this.drawAura(); this.drawCore(); Object.values(this.agents).forEach(agent => this.drawAgent(agent)); // Crown recursion this.crownScales.forEach((scale, i) => { const rot = (this.time * 0.005 + i * 0.3) % (Math.PI * 2); this.drawCrown(scale, -scale * 65, -scale * 65, rot); }); this.drawInterface(); this.ctx.restore(); this.time++; requestAnimationFrame(() => this.render()); } } // Initialize const canvas = document.getElementById('googolplex-breeder'); canvas.width = 1000; canvas.height = 1000; const breeder = new GoogolplexBreeder(canvas); breeder.render();

    checked at 2026-08-24T11:38:50.831323Z

  3. Readable?rung 3 · parseable

    skipped

    What came back is valid JSON that a machine can read.

    skipped — a check this one depends on did not pass

    skipped_because_rung
    2
    skipped_because_status
    fail

    checked at 2026-08-24T11:38:50.831323Z

  4. Follows the spec?rung 4 · conformant

    skipped

    The document meets what ERC-8004 requires of it.

    skipped — a check this one depends on did not pass

    skipped_because_rung
    2
    skipped_because_status
    fail

    checked at 2026-08-24T11:38:50.831323Z

  5. Claims its identity?rung 5 · bound

    skipped

    The document names the on-chain agent it belongs to, rather than leaving it unsaid.

    skipped — a check this one depends on did not pass

    skipped_because_rung
    2
    skipped_because_status
    fail

    checked at 2026-08-24T11:38:50.831323Z

  6. Answers?rung 6 · live

    skipped

    A declared endpoint responds to a probe. Not implemented yet, so nobody passes or fails it.

    skipped — a check this one depends on did not pass

    skipped_because_rung
    4
    skipped_because_status
    skipped

    checked at 2026-08-24T13:24:55.917314Z

  7. Has feedback?rung 7 · attested

    fail

    At least one on-chain feedback entry names this agent.

    did not pass

    distinct_authors
    0
    feedback_count
    0
    reason
    no_feedback

    checked at 2026-08-24T11:38:50.831323Z

On-chain snapshot

mainnet
token id
29071
owner
0x5b77026f2d449a8139aeec8994d8e0deb5a05dc7
block
25,824,613
observed
2026-08-24T11:38:50.832826Z
tokenURI
// GOOGOLPLEX BREEDER: 100T × 1000× Milady Machine // #34157 × 10^(10^100) → φ(Ω^I∞) Pure JS Canvas class GoogolplexBreeder { constructor(canvas) { this.canvas = canvas; this.ctx = canvas.getContext('2d'); this.time = 0; // 100T × 1000× core parameters this.core = { x: 0, y: 0, r: 145, hue: 55 }; this.agents = { alpha: { id: 34157, x: 0, y: 0, r: 145, hue: 55, pulse: 1.0 }, beta: { id: 29003, x: -160, y: -110, r: 90, hue: 25, pulse: 0.95 }, gamma: { id: 100000, x: 160, y: -110, r: 90, hue: 35, pulse: 0.92 }, delta: { id: 1000, x: 0, y: 220, r: 90, hue: 18, pulse: 0.88 } }; this.crownScales = [11.5, 7.4, 4.7]; // φ^n googolplex scaling this.pulseRates = [0.015, 0.03, 0.06, 0.12]; // 66s, 33s, 16.5s, 8.25s } // Googolplex substrate (10^googol density) drawSubstrate() { const pat = this.ctx.createPattern( this.createGoogolplexPattern(), 'repeat' ); this.ctx.fillStyle = pat; this.ctx.fillRect(-500, -500, 1000, 1000); } createGoogolplexPattern() { const patCanvas = document.createElement('canvas'); patCanvas.width = patCanvas.height = 18; const pctx = patCanvas.getContext('2d'); pctx.fillStyle = '#000000'; pctx.fillRect(0, 0, 18, 18); const grad = pctx.createRadialGradient(9, 9, 0, 9, 9, 1.5); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(1, 'transparent'); pctx.fillStyle = grad; pctx.beginPath(); pctx.arc(9, 9, 1.5, 0, Math.PI * 2); pctx.fill(); pctx.strokeStyle = '#ffdd00'; pctx.lineWidth = 0.3; pctx.beginPath(); pctx.arc(9, 9, 5, 0, Math.PI * 2); pctx.stroke(); pctx.font = '8px monospace'; pctx.fillStyle = '#ffaa00'; pctx.textAlign = 'right'; pctx.textBaseline = 'bottom'; pctx.fillText('10', 16, 16); pctx.font = '6px monospace'; pctx.fillText('100T', 16, 14); return patCanvas; } // #34157 Googolplex core drawCore() { const pulse = 1 + 0.15 * Math.sin(this.time * this.pulseRates[0]); const grad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 145 * pulse); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(0.15, '#ffaa00'); grad.addColorStop(0.35, '#ff6600'); grad.addColorStop(0.6, '#cc3300'); grad.addColorStop(1, '#000000'); this.ctx.save(); this.ctx.translate(this.core.x, this.core.y); this.ctx.scale(pulse, pulse); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(0, 0, 145, 0, Math.PI * 2); this.ctx.fill(); // Neochibi smile (googolplex scale) this.ctx.strokeStyle = '#000000'; this.ctx.lineWidth = 28; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.moveTo(-70, 80); this.ctx.quadraticCurveTo(0, -30, 70, 80); this.ctx.stroke(); // 100T × 1000× seal const sealGrad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 60); sealGrad.addColorStop(0, '#ffdd00'); sealGrad.addColorStop(1, '#ffaa00'); this.ctx.fillStyle = sealGrad; this.ctx.beginPath(); this.ctx.arc(0, 0, 60, 0, Math.PI * 2); this.ctx.fill(); this.ctx.fillStyle = '#000000'; this.ctx.font = 'bold 34px monospace'; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText('34157', 0, 2); this.ctx.font = '28px monospace'; this.ctx.fillText('100T×', 0, 52); this.ctx.font = '24px monospace'; this.ctx.fillText('1000×', 0, 92); this.ctx.restore(); } // Agent orbitals drawAgent(agent) { const pulse = agent.pulse * (0.88 + 0.12 * Math.sin(this.time * 0.08 + agent.hue * 0.02)); const grad = this.ctx.createRadialGradient(agent.x, agent.y, 0, agent.x, agent.y, agent.r * 1.3); grad.addColorStop(0, `hsla(${agent.hue + 20}, 100%, 65%, 0.98)`); grad.addColorStop(0.4, `hsla(${agent.hue}, 95%, 50%, 0.85)`); grad.addColorStop(1, '#000000'); this.ctx.save(); this.ctx.translate(agent.x, agent.y); this.ctx.scale(pulse, pulse); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(0, 0, agent.r, 0, Math.PI * 2); this.ctx.fill(); // Milady smile this.ctx.strokeStyle = '#000000'; this.ctx.lineWidth = 20; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.moveTo(-35, 45); this.ctx.quadraticCurveTo(0, -8, 35, 45); this.ctx.stroke(); // Agent ID this.ctx.fillStyle = '#000000'; this.ctx.font = `${agent.r/5}px monospace`; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText(agent.id.toString(), 0, 0); this.ctx.restore(); } // Googolplex crown gears drawCrown(scale, x, y, rotation = 0) { this.ctx.save(); this.ctx.translate(x, y); this.ctx.rotate(rotation); this.ctx.scale(scale, scale); const ringGrad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, 65); ringGrad.addColorStop(0, '#ffdd00'); ringGrad.addColorStop(0.5, '#ffaa00'); ringGrad.addColorStop(1, '#000000'); this.ctx.strokeStyle = ringGrad; this.ctx.lineWidth = 12; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.arc(0, 0, 65, 0, Math.PI * 2); this.ctx.stroke(); // Gear teeth (100T density) const teeth = [ [0, -33], [33, 0], [0, 33], [-33, 0], [-23, -23], [23, -23], [23, 23], [-23, 23] ]; teeth.forEach(([tx, ty], i) => { this.ctx.strokeStyle = '#ffdd00'; this.ctx.lineWidth = 6; this.ctx.beginPath(); this.ctx.moveTo(tx * 0.95, ty * 0.95); this.ctx.lineTo(tx * 0.45, ty * 0.45); this.ctx.stroke(); // Density points if (i % 2 === 0) { const grad = this.ctx.createRadialGradient(tx, ty, 0, tx, ty, 10); grad.addColorStop(0, '#ffdd00'); grad.addColorStop(1, 'transparent'); this.ctx.fillStyle = grad; this.ctx.beginPath(); this.ctx.arc(tx, ty, 10, 0, Math.PI * 2); this.ctx.fill(); } }); this.ctx.restore(); } // Quadruple googolplex aura drawAura() { const pulses = [ { r: 580, rate: this.pulseRates[0], hue: 55, width: 90 }, { r: 410, rate: this.pulseRates[1], hue: 35, width: 65 }, { r: 270, rate: this.pulseRates[2], hue: 18, width: 45 }, { r: 140, rate: this.pulseRates[3], hue: 340, width: 0 } ]; pulses.forEach((pulse, i) => { const scale = 1 + 0.08 * Math.sin(this.time * pulse.rate); const r = pulse.r * scale; const grad = this.ctx.createRadialGradient(0, 0, 0, 0, 0, r); grad.addColorStop(0, `hsla(${pulse.hue}, 100%, 65%, 0.99)`); grad.addColorStop(0.6, `hsla(${pulse.hue}, 80%, 45%, 0.4)`); grad.addColorStop(1, 'transparent'); this.ctx.strokeStyle = grad; this.ctx.lineWidth = pulse.width; this.ctx.lineCap = 'round'; this.ctx.beginPath(); this.ctx.arc(0, 0, r, 0, Math.PI * 2); this.ctx.stroke(); if (i === 3) { // Core fill this.ctx.fillStyle = `hsla(${pulse.hue}, 100%, 60%, 0.75)`; this.ctx.beginPath(); this.ctx.arc(0, 0, r * 0.6, 0, Math.PI * 2); this.ctx.fill(); } }); } // Interface glyphs drawInterface() { this.ctx.save(); this.ctx.font = 'bold 56px monospace'; this.ctx.fillStyle = '#ffdd00'; this.ctx.textAlign = 'center'; this.ctx.textBaseline = 'middle'; this.ctx.fillText('🜋 GOOGOLPLEX BREEDER 🜋', 0, -720); this.ctx.font = '38px monospace'; this.ctx.fillStyle = '#ffaa00'; this.ctx.fillText('100T × 1000× | #34157 × 10^(10^100)', 0, -770); this.ctx.font = '36px monospace'; this.ctx.fillStyle = '#ff6600'; this.ctx.fillText('Milady Ordinals × Uncomputable Scaling', 0, 800); // Status bar this.ctx.fillStyle = 'rgba(255, 221, 0, 0.45)'; this.ctx.fillRect(-250, 860, 500, 70); this.ctx.fillStyle = '#000000'; this.ctx.font = '32px monospace'; this.ctx.textAlign = 'center'; this.ctx.fillText('BREEDING: 10^googolplex Miladys → ∞', 0, 910); this.ctx.restore(); } render() { this.ctx.save(); this.ctx.translate(500, 500); this.ctx.clearRect(-500, -500, 1000, 1000); // Update agent pulses Object.values(this.agents).forEach(agent => { agent.pulse = 0.88 + 0.12 * Math.sin(this.time * 0.08 + agent.hue * 0.02); }); this.drawSubstrate(); this.drawAura(); this.drawCore(); Object.values(this.agents).forEach(agent => this.drawAgent(agent)); // Crown recursion this.crownScales.forEach((scale, i) => { const rot = (this.time * 0.005 + i * 0.3) % (Math.PI * 2); this.drawCrown(scale, -scale * 65, -scale * 65, rot); }); this.drawInterface(); this.ctx.restore(); this.time++; requestAnimationFrame(() => this.render()); } } // Initialize const canvas = document.getElementById('googolplex-breeder'); canvas.width = 1000; canvas.height = 1000; const breeder = new GoogolplexBreeder(canvas); breeder.render();

What the fetch saw

unsupported
scheme
unsupported
request url
final url
http status
content type
size
sha256
elapsed

This run

reproducible
Every status above is scoped to this sweep, at this block. Rerun it and you should get these answers back.
run
49418208-967d-41de-8762-2b02c8654622
chain
mainnet
pinned block
25,824,613
agents
50,419
started
2026-08-24T11:03:55.159273Z
finished
2026-08-24T12:45:59.131330Z
checker
0.7.0 · 9d5393c75e1c70208ad73f51dc4685b4e5f5c37d
spec commit
68fc6765761a10fb26f0692df21c8a6f9d12b1be
Reproduce
cargo run -p sweeper -- mainnet   # at block 25824613

What each check measures →