{receipt.receipt_id}
decay: {receipt.decay_risk}
{receipt.retrieved.length}
retrieved
{receipt.suppressed.length}
suppressed
{(receipt.trust_floor * 100).toFixed(0)}%
trust floor
{#if !compact}
{#if receipt.activation_path.length}
Activation path
{#each receipt.activation_path as path (path)}
{path}
{/each}
{/if}
{#if receipt.retrieved.length}
Retrieved
{#each receipt.retrieved as id (id)}
{id.slice(0, 8)}
{/each}
{/if}
{#if receipt.suppressed.length}
Suppressed
{#each receipt.suppressed as s (s.id)}
{s.id.slice(0, 8)} · {s.reason.replace('_', ' ')}
{/each}
{/if}
{/if}