From 0f3c267a48a4c67da0c1c864c8e3f4e1bd8e1776 Mon Sep 17 00:00:00 2001 From: nym21 Date: Mon, 23 Jun 2025 22:00:09 +0200 Subject: [PATCH] global: rename some indexes --- .gitignore | 1 + Cargo.lock | 4 +- crates/brk_computer/src/vecs/constants.rs | 40 +- crates/brk_computer/src/vecs/indexes.rs | 228 +- crates/brk_computer/src/vecs/transactions.rs | 36 +- .../brk_core/src/structs/emptyoutputindex.rs | 61 + crates/brk_core/src/structs/mod.rs | 35 +- crates/brk_core/src/structs/opreturnindex.rs | 62 + .../brk_core/src/structs/outputtypeindex.rs | 752 -- .../brk_core/src/structs/p2aaddressindex.rs | 61 + .../brk_core/src/structs/p2msoutputindex.rs | 62 + .../src/structs/p2pk33addressindex.rs | 62 + .../src/structs/p2pk65addressindex.rs | 61 + .../brk_core/src/structs/p2pkhaddressindex.rs | 62 + .../brk_core/src/structs/p2shaddressindex.rs | 62 + .../brk_core/src/structs/p2traddressindex.rs | 62 + .../src/structs/p2wpkhaddressindex.rs | 62 + .../brk_core/src/structs/p2wshaddressindex.rs | 62 + crates/brk_core/src/structs/stored_u32.rs | 41 +- crates/brk_core/src/structs/stored_usize.rs | 41 +- crates/brk_core/src/structs/typeindex.rs | 99 + .../src/structs/unknownoutputindex.rs | 62 + crates/brk_indexer/src/indexes.rs | 133 +- crates/brk_indexer/src/lib.rs | 116 +- crates/brk_indexer/src/stores.rs | 102 +- crates/brk_indexer/src/vecs.rs | 278 +- crates/brk_interface/src/index.rs | 88 +- crates/brk_vec/examples/main.rs | 1 + crates/brk_vec/src/variants/raw.rs | 16 +- websites/default/scripts/main.js | 106 +- websites/default/scripts/table.js | 36 +- websites/default/scripts/vecid-to-indexes.js | 10862 ---------------- 32 files changed, 1517 insertions(+), 12239 deletions(-) create mode 100644 crates/brk_core/src/structs/emptyoutputindex.rs create mode 100644 crates/brk_core/src/structs/opreturnindex.rs delete mode 100644 crates/brk_core/src/structs/outputtypeindex.rs create mode 100644 crates/brk_core/src/structs/p2aaddressindex.rs create mode 100644 crates/brk_core/src/structs/p2msoutputindex.rs create mode 100644 crates/brk_core/src/structs/p2pk33addressindex.rs create mode 100644 crates/brk_core/src/structs/p2pk65addressindex.rs create mode 100644 crates/brk_core/src/structs/p2pkhaddressindex.rs create mode 100644 crates/brk_core/src/structs/p2shaddressindex.rs create mode 100644 crates/brk_core/src/structs/p2traddressindex.rs create mode 100644 crates/brk_core/src/structs/p2wpkhaddressindex.rs create mode 100644 crates/brk_core/src/structs/p2wshaddressindex.rs create mode 100644 crates/brk_core/src/structs/typeindex.rs create mode 100644 crates/brk_core/src/structs/unknownoutputindex.rs delete mode 100644 websites/default/scripts/vecid-to-indexes.js diff --git a/.gitignore b/.gitignore index 3ac1f8d15..8e8834d1e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ # Builds target dist +vecid-to-indexes.js # Copies *\ copy* diff --git a/Cargo.lock b/Cargo.lock index a7b6b10d8..840ab9f23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -653,9 +653,9 @@ dependencies = [ [[package]] name = "brk_rmcp-macros" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12869ae1128aad2e0777db2688e661a55d389ecfb863936145ea1b789e0c2d34" +checksum = "e7e3a4b2b6bdb0508a756e9296321b6ce33234070060ad68f68c8372b7b53fc6" dependencies = [ "proc-macro2", "quote", diff --git a/crates/brk_computer/src/vecs/constants.rs b/crates/brk_computer/src/vecs/constants.rs index d686a1f6a..2180f727d 100644 --- a/crates/brk_computer/src/vecs/constants.rs +++ b/crates/brk_computer/src/vecs/constants.rs @@ -15,10 +15,10 @@ const VERSION: Version = Version::ZERO; #[derive(Clone)] pub struct Vecs { - pub _0: ComputedVecsFromHeight, - pub _1: ComputedVecsFromHeight, - pub _50: ComputedVecsFromHeight, - pub _100: ComputedVecsFromHeight, + pub constant_0: ComputedVecsFromHeight, + pub constant_1: ComputedVecsFromHeight, + pub constant_50: ComputedVecsFromHeight, + pub constant_100: ComputedVecsFromHeight, } impl Vecs { @@ -29,33 +29,33 @@ impl Vecs { format: Format, ) -> color_eyre::Result { Ok(Self { - _0: ComputedVecsFromHeight::forced_import( + constant_0: ComputedVecsFromHeight::forced_import( path, - "0", + "constant_0", true, version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), )?, - _1: ComputedVecsFromHeight::forced_import( + constant_1: ComputedVecsFromHeight::forced_import( path, - "1", + "constant_1", true, version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), )?, - _50: ComputedVecsFromHeight::forced_import( + constant_50: ComputedVecsFromHeight::forced_import( path, - "50", + "constant_50", true, version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), )?, - _100: ComputedVecsFromHeight::forced_import( + constant_100: ComputedVecsFromHeight::forced_import( path, - "100", + "constant_100", true, version + VERSION + Version::ZERO, format, @@ -71,7 +71,7 @@ impl Vecs { starting_indexes: &Indexes, exit: &Exit, ) -> color_eyre::Result<()> { - self._0.compute_all( + self.constant_0.compute_all( indexer, indexes, starting_indexes, @@ -87,7 +87,7 @@ impl Vecs { }, )?; - self._1.compute_all( + self.constant_1.compute_all( indexer, indexes, starting_indexes, @@ -103,7 +103,7 @@ impl Vecs { }, )?; - self._50.compute_all( + self.constant_50.compute_all( indexer, indexes, starting_indexes, @@ -119,7 +119,7 @@ impl Vecs { }, )?; - self._100.compute_all( + self.constant_100.compute_all( indexer, indexes, starting_indexes, @@ -140,10 +140,10 @@ impl Vecs { pub fn vecs(&self) -> Vec<&dyn AnyCollectableVec> { [ - self._0.vecs(), - self._1.vecs(), - self._50.vecs(), - self._100.vecs(), + self.constant_0.vecs(), + self.constant_1.vecs(), + self.constant_50.vecs(), + self.constant_100.vecs(), ] .into_iter() .flatten() diff --git a/crates/brk_computer/src/vecs/indexes.rs b/crates/brk_computer/src/vecs/indexes.rs index ef11f59e3..7b860aa7c 100644 --- a/crates/brk_computer/src/vecs/indexes.rs +++ b/crates/brk_computer/src/vecs/indexes.rs @@ -2,10 +2,11 @@ use std::{ops::Deref, path::Path}; use brk_core::{ Date, DateIndex, DecadeIndex, DifficultyEpoch, EmptyOutputIndex, HalvingEpoch, Height, - InputIndex, MonthIndex, OpReturnIndex, OutputIndex, P2ABytes, P2AIndex, P2MSIndex, P2PK33Bytes, - P2PK33Index, P2PK65Bytes, P2PK65Index, P2PKHBytes, P2PKHIndex, P2SHBytes, P2SHIndex, P2TRBytes, - P2TRIndex, P2WPKHBytes, P2WPKHIndex, P2WSHBytes, P2WSHIndex, QuarterIndex, Sats, StoredUsize, - Timestamp, TxIndex, Txid, UnknownOutputIndex, Version, WeekIndex, YearIndex, + InputIndex, MonthIndex, OpReturnIndex, OutputIndex, P2AAddressIndex, P2ABytes, P2MSOutputIndex, + P2PK33AddressIndex, P2PK33Bytes, P2PK65AddressIndex, P2PK65Bytes, P2PKHAddressIndex, + P2PKHBytes, P2SHAddressIndex, P2SHBytes, P2TRAddressIndex, P2TRBytes, P2WPKHAddressIndex, + P2WPKHBytes, P2WSHAddressIndex, P2WSHBytes, QuarterIndex, Sats, StoredUsize, Timestamp, + TxIndex, Txid, UnknownOutputIndex, Version, WeekIndex, YearIndex, }; use brk_exit::Exit; use brk_indexer::Indexer; @@ -54,18 +55,24 @@ pub struct Vecs { ComputedVecFrom1, pub outputindex_to_outputindex: ComputedVecFrom1, pub outputindex_to_txindex: EagerVec, - pub p2aindex_to_p2aindex: ComputedVecFrom1, - pub p2msindex_to_p2msindex: ComputedVecFrom1, - pub p2pk33index_to_p2pk33index: - ComputedVecFrom1, - pub p2pk65index_to_p2pk65index: - ComputedVecFrom1, - pub p2pkhindex_to_p2pkhindex: ComputedVecFrom1, - pub p2shindex_to_p2shindex: ComputedVecFrom1, - pub p2trindex_to_p2trindex: ComputedVecFrom1, - pub p2wpkhindex_to_p2wpkhindex: - ComputedVecFrom1, - pub p2wshindex_to_p2wshindex: ComputedVecFrom1, + pub p2aaddressindex_to_p2aaddressindex: + ComputedVecFrom1, + pub p2msoutputindex_to_p2msoutputindex: + ComputedVecFrom1, + pub p2pk33addressindex_to_p2pk33addressindex: + ComputedVecFrom1, + pub p2pk65addressindex_to_p2pk65addressindex: + ComputedVecFrom1, + pub p2pkhaddressindex_to_p2pkhaddressindex: + ComputedVecFrom1, + pub p2shaddressindex_to_p2shaddressindex: + ComputedVecFrom1, + pub p2traddressindex_to_p2traddressindex: + ComputedVecFrom1, + pub p2wpkhaddressindex_to_p2wpkhaddressindex: + ComputedVecFrom1, + pub p2wshaddressindex_to_p2wshaddressindex: + ComputedVecFrom1, pub quarterindex_to_first_monthindex: EagerVec, pub quarterindex_to_monthindex_count: EagerVec, pub quarterindex_to_quarterindex: EagerVec, @@ -170,85 +177,85 @@ impl Vecs { }, )?; - let p2pk33index_to_p2pk33index = ComputedVec::forced_import_or_init_from_1( + let p2pk33addressindex_to_p2pk33addressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2pk33index", + "p2pk33addressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2pk33index_to_p2pk33bytes.boxed_clone(), + indexer.vecs.p2pk33addressindex_to_p2pk33bytes.boxed_clone(), |index, _| Some(index), )?; - let p2pk65index_to_p2pk65index = ComputedVec::forced_import_or_init_from_1( + let p2pk65addressindex_to_p2pk65addressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2pk65index", + "p2pk65addressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2pk65index_to_p2pk65bytes.boxed_clone(), + indexer.vecs.p2pk65addressindex_to_p2pk65bytes.boxed_clone(), |index, _| Some(index), )?; - let p2pkhindex_to_p2pkhindex = ComputedVec::forced_import_or_init_from_1( + let p2pkhaddressindex_to_p2pkhaddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2pkhindex", + "p2pkhaddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2pkhindex_to_p2pkhbytes.boxed_clone(), + indexer.vecs.p2pkhaddressindex_to_p2pkhbytes.boxed_clone(), |index, _| Some(index), )?; - let p2shindex_to_p2shindex = ComputedVec::forced_import_or_init_from_1( + let p2shaddressindex_to_p2shaddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2shindex", + "p2shaddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2shindex_to_p2shbytes.boxed_clone(), + indexer.vecs.p2shaddressindex_to_p2shbytes.boxed_clone(), |index, _| Some(index), )?; - let p2trindex_to_p2trindex = ComputedVec::forced_import_or_init_from_1( + let p2traddressindex_to_p2traddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2trindex", + "p2traddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2trindex_to_p2trbytes.boxed_clone(), + indexer.vecs.p2traddressindex_to_p2trbytes.boxed_clone(), |index, _| Some(index), )?; - let p2wpkhindex_to_p2wpkhindex = ComputedVec::forced_import_or_init_from_1( + let p2wpkhaddressindex_to_p2wpkhaddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2wpkhindex", + "p2wpkhaddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2wpkhindex_to_p2wpkhbytes.boxed_clone(), + indexer.vecs.p2wpkhaddressindex_to_p2wpkhbytes.boxed_clone(), |index, _| Some(index), )?; - let p2wshindex_to_p2wshindex = ComputedVec::forced_import_or_init_from_1( + let p2wshaddressindex_to_p2wshaddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2wshindex", + "p2wshaddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2wshindex_to_p2wshbytes.boxed_clone(), + indexer.vecs.p2wshaddressindex_to_p2wshbytes.boxed_clone(), |index, _| Some(index), )?; - let p2aindex_to_p2aindex = ComputedVec::forced_import_or_init_from_1( + let p2aaddressindex_to_p2aaddressindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2aindex", + "p2aaddressindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2aindex_to_p2abytes.boxed_clone(), + indexer.vecs.p2aaddressindex_to_p2abytes.boxed_clone(), |index, _| Some(index), )?; - let p2msindex_to_p2msindex = ComputedVec::forced_import_or_init_from_1( + let p2msoutputindex_to_p2msoutputindex = ComputedVec::forced_import_or_init_from_1( computation, path, - "p2msindex", + "p2msoutputindex", version + VERSION + Version::ZERO, format, - indexer.vecs.p2msindex_to_txindex.boxed_clone(), + indexer.vecs.p2msoutputindex_to_txindex.boxed_clone(), |index, _| Some(index), )?; let emptyoutputindex_to_emptyoutputindex = ComputedVec::forced_import_or_init_from_1( @@ -284,15 +291,15 @@ impl Vecs { inputindex_to_inputindex, opreturnindex_to_opreturnindex, outputindex_to_outputindex, - p2aindex_to_p2aindex, - p2msindex_to_p2msindex, - p2pk33index_to_p2pk33index, - p2pk65index_to_p2pk65index, - p2pkhindex_to_p2pkhindex, - p2shindex_to_p2shindex, - p2trindex_to_p2trindex, - p2wpkhindex_to_p2wpkhindex, - p2wshindex_to_p2wshindex, + p2aaddressindex_to_p2aaddressindex, + p2msoutputindex_to_p2msoutputindex, + p2pk33addressindex_to_p2pk33addressindex, + p2pk65addressindex_to_p2pk65addressindex, + p2pkhaddressindex_to_p2pkhaddressindex, + p2shaddressindex_to_p2shaddressindex, + p2traddressindex_to_p2traddressindex, + p2wpkhaddressindex_to_p2wpkhaddressindex, + p2wshaddressindex_to_p2wshaddressindex, txindex_to_input_count, txindex_to_output_count, txindex_to_txindex, @@ -570,47 +577,54 @@ impl Vecs { exit, )?; - self.p2pk33index_to_p2pk33index.compute_if_necessary( - starting_indexes.p2pk33index, - &indexer.vecs.p2pk33index_to_p2pk33bytes, - exit, - )?; + self.p2pk33addressindex_to_p2pk33addressindex + .compute_if_necessary( + starting_indexes.p2pk33addressindex, + &indexer.vecs.p2pk33addressindex_to_p2pk33bytes, + exit, + )?; - self.p2pk65index_to_p2pk65index.compute_if_necessary( - starting_indexes.p2pk65index, - &indexer.vecs.p2pk65index_to_p2pk65bytes, - exit, - )?; + self.p2pk65addressindex_to_p2pk65addressindex + .compute_if_necessary( + starting_indexes.p2pk65addressindex, + &indexer.vecs.p2pk65addressindex_to_p2pk65bytes, + exit, + )?; - self.p2pkhindex_to_p2pkhindex.compute_if_necessary( - starting_indexes.p2pkhindex, - &indexer.vecs.p2pkhindex_to_p2pkhbytes, - exit, - )?; + self.p2pkhaddressindex_to_p2pkhaddressindex + .compute_if_necessary( + starting_indexes.p2pkhaddressindex, + &indexer.vecs.p2pkhaddressindex_to_p2pkhbytes, + exit, + )?; - self.p2shindex_to_p2shindex.compute_if_necessary( - starting_indexes.p2shindex, - &indexer.vecs.p2shindex_to_p2shbytes, - exit, - )?; + self.p2shaddressindex_to_p2shaddressindex + .compute_if_necessary( + starting_indexes.p2shaddressindex, + &indexer.vecs.p2shaddressindex_to_p2shbytes, + exit, + )?; - self.p2trindex_to_p2trindex.compute_if_necessary( - starting_indexes.p2trindex, - &indexer.vecs.p2trindex_to_p2trbytes, - exit, - )?; + self.p2traddressindex_to_p2traddressindex + .compute_if_necessary( + starting_indexes.p2traddressindex, + &indexer.vecs.p2traddressindex_to_p2trbytes, + exit, + )?; - self.p2wpkhindex_to_p2wpkhindex.compute_if_necessary( - starting_indexes.p2wpkhindex, - &indexer.vecs.p2wpkhindex_to_p2wpkhbytes, - exit, - )?; + self.p2wpkhaddressindex_to_p2wpkhaddressindex + .compute_if_necessary( + starting_indexes.p2wpkhaddressindex, + &indexer.vecs.p2wpkhaddressindex_to_p2wpkhbytes, + exit, + )?; - self.p2wshindex_to_p2wshindex.compute_if_necessary( - starting_indexes.p2wshindex, - &indexer.vecs.p2wshindex_to_p2wshbytes, - exit, - )?; + self.p2wshaddressindex_to_p2wshaddressindex + .compute_if_necessary( + starting_indexes.p2wshaddressindex, + &indexer.vecs.p2wshaddressindex_to_p2wshbytes, + exit, + )?; self.emptyoutputindex_to_emptyoutputindex .compute_if_necessary( @@ -619,11 +633,12 @@ impl Vecs { exit, )?; - self.p2msindex_to_p2msindex.compute_if_necessary( - starting_indexes.p2msindex, - &indexer.vecs.p2msindex_to_txindex, - exit, - )?; + self.p2msoutputindex_to_p2msoutputindex + .compute_if_necessary( + starting_indexes.p2msoutputindex, + &indexer.vecs.p2msoutputindex_to_txindex, + exit, + )?; self.opreturnindex_to_opreturnindex.compute_if_necessary( starting_indexes.opreturnindex, @@ -631,11 +646,12 @@ impl Vecs { exit, )?; - self.p2aindex_to_p2aindex.compute_if_necessary( - starting_indexes.p2aindex, - &indexer.vecs.p2aindex_to_p2abytes, - exit, - )?; + self.p2aaddressindex_to_p2aaddressindex + .compute_if_necessary( + starting_indexes.p2aaddressindex, + &indexer.vecs.p2aaddressindex_to_p2abytes, + exit, + )?; self.unknownoutputindex_to_unknownoutputindex .compute_if_necessary( @@ -1075,15 +1091,15 @@ impl Vecs { &self.monthindex_to_yearindex, &self.opreturnindex_to_opreturnindex, &self.outputindex_to_outputindex, - &self.p2aindex_to_p2aindex, - &self.p2msindex_to_p2msindex, - &self.p2pk33index_to_p2pk33index, - &self.p2pk65index_to_p2pk65index, - &self.p2pkhindex_to_p2pkhindex, - &self.p2shindex_to_p2shindex, - &self.p2trindex_to_p2trindex, - &self.p2wpkhindex_to_p2wpkhindex, - &self.p2wshindex_to_p2wshindex, + &self.p2aaddressindex_to_p2aaddressindex, + &self.p2msoutputindex_to_p2msoutputindex, + &self.p2pk33addressindex_to_p2pk33addressindex, + &self.p2pk65addressindex_to_p2pk65addressindex, + &self.p2pkhaddressindex_to_p2pkhaddressindex, + &self.p2shaddressindex_to_p2shaddressindex, + &self.p2traddressindex_to_p2traddressindex, + &self.p2wpkhaddressindex_to_p2wpkhaddressindex, + &self.p2wshaddressindex_to_p2wshaddressindex, &self.quarterindex_to_first_monthindex, &self.quarterindex_to_monthindex_count, &self.quarterindex_to_quarterindex, diff --git a/crates/brk_computer/src/vecs/transactions.rs b/crates/brk_computer/src/vecs/transactions.rs index cc5499a9d..aeae9d3a3 100644 --- a/crates/brk_computer/src/vecs/transactions.rs +++ b/crates/brk_computer/src/vecs/transactions.rs @@ -931,8 +931,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2aindex, - &indexer.vecs.p2aindex_to_p2abytes, + &indexer.vecs.height_to_first_p2aaddressindex, + &indexer.vecs.p2aaddressindex_to_p2abytes, exit, ) }, @@ -946,8 +946,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2msindex, - &indexer.vecs.p2msindex_to_txindex, + &indexer.vecs.height_to_first_p2msoutputindex, + &indexer.vecs.p2msoutputindex_to_txindex, exit, ) }, @@ -961,8 +961,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2pk33index, - &indexer.vecs.p2pk33index_to_p2pk33bytes, + &indexer.vecs.height_to_first_p2pk33addressindex, + &indexer.vecs.p2pk33addressindex_to_p2pk33bytes, exit, ) }, @@ -976,8 +976,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2pk65index, - &indexer.vecs.p2pk65index_to_p2pk65bytes, + &indexer.vecs.height_to_first_p2pk65addressindex, + &indexer.vecs.p2pk65addressindex_to_p2pk65bytes, exit, ) }, @@ -991,8 +991,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2pkhindex, - &indexer.vecs.p2pkhindex_to_p2pkhbytes, + &indexer.vecs.height_to_first_p2pkhaddressindex, + &indexer.vecs.p2pkhaddressindex_to_p2pkhbytes, exit, ) }, @@ -1006,8 +1006,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2shindex, - &indexer.vecs.p2shindex_to_p2shbytes, + &indexer.vecs.height_to_first_p2shaddressindex, + &indexer.vecs.p2shaddressindex_to_p2shbytes, exit, ) }, @@ -1021,8 +1021,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2trindex, - &indexer.vecs.p2trindex_to_p2trbytes, + &indexer.vecs.height_to_first_p2traddressindex, + &indexer.vecs.p2traddressindex_to_p2trbytes, exit, ) }, @@ -1036,8 +1036,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2wpkhindex, - &indexer.vecs.p2wpkhindex_to_p2wpkhbytes, + &indexer.vecs.height_to_first_p2wpkhaddressindex, + &indexer.vecs.p2wpkhaddressindex_to_p2wpkhbytes, exit, ) }, @@ -1051,8 +1051,8 @@ impl Vecs { |v, indexer, _, starting_indexes, exit| { v.compute_count_from_indexes( starting_indexes.height, - &indexer.vecs.height_to_first_p2wshindex, - &indexer.vecs.p2wshindex_to_p2wshbytes, + &indexer.vecs.height_to_first_p2wshaddressindex, + &indexer.vecs.p2wshaddressindex_to_p2wshbytes, exit, ) }, diff --git a/crates/brk_core/src/structs/emptyoutputindex.rs b/crates/brk_core/src/structs/emptyoutputindex.rs new file mode 100644 index 000000000..78b037f80 --- /dev/null +++ b/crates/brk_core/src/structs/emptyoutputindex.rs @@ -0,0 +1,61 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct EmptyOutputIndex(TypeIndex); +impl From for EmptyOutputIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: EmptyOutputIndex) -> Self { + Self::from(*value) + } +} +impl From for EmptyOutputIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for EmptyOutputIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for EmptyOutputIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} +impl Printable for EmptyOutputIndex { + fn to_string() -> &'static str { + "emptyoutputindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["emptyout", "emptyoutputindex"] + } +} diff --git a/crates/brk_core/src/structs/mod.rs b/crates/brk_core/src/structs/mod.rs index 7e8f7268f..509a1bb32 100644 --- a/crates/brk_core/src/structs/mod.rs +++ b/crates/brk_core/src/structs/mod.rs @@ -1,8 +1,5 @@ mod addressbytes; mod addressbyteshash; -// mod addressindex; -// mod addressindexoutputindex; -// mod addresstype; mod bitcoin; mod blockhash; mod blockhashprefix; @@ -12,15 +9,25 @@ mod dateindex; mod decadeindex; mod difficultyepoch; mod dollars; +mod emptyoutputindex; mod feerate; mod halvingepoch; mod height; mod inputindex; mod monthindex; mod ohlc; +mod opreturnindex; mod outputindex; mod outputtype; -mod outputtypeindex; +mod p2aaddressindex; +mod p2msoutputindex; +mod p2pk33addressindex; +mod p2pk65addressindex; +mod p2pkhaddressindex; +mod p2shaddressindex; +mod p2traddressindex; +mod p2wpkhaddressindex; +mod p2wshaddressindex; mod quarterindex; mod rawlocktime; mod sats; @@ -35,7 +42,9 @@ mod txid; mod txidprefix; mod txindex; mod txversion; +mod typeindex; mod unit; +mod unknownoutputindex; mod version; mod vin; mod vout; @@ -45,9 +54,6 @@ mod yearindex; pub use addressbytes::*; pub use addressbyteshash::*; -// pub use addressindex::*; -// pub use addressindexoutputindex::*; -// pub use addresstype::*; pub use bitcoin::*; pub use blockhash::*; pub use blockhashprefix::*; @@ -55,17 +61,28 @@ pub use cents::*; pub use date::*; pub use dateindex::*; pub use decadeindex::*; +pub use decadeindex::*; pub use difficultyepoch::*; pub use dollars::*; +pub use emptyoutputindex::*; pub use feerate::*; pub use halvingepoch::*; pub use height::*; pub use inputindex::*; pub use monthindex::*; pub use ohlc::*; +pub use opreturnindex::*; pub use outputindex::*; pub use outputtype::*; -pub use outputtypeindex::*; +pub use p2aaddressindex::*; +pub use p2msoutputindex::*; +pub use p2pk33addressindex::*; +pub use p2pk65addressindex::*; +pub use p2pkhaddressindex::*; +pub use p2shaddressindex::*; +pub use p2traddressindex::*; +pub use p2wpkhaddressindex::*; +pub use p2wshaddressindex::*; pub use quarterindex::*; pub use rawlocktime::*; pub use sats::*; @@ -80,7 +97,9 @@ pub use txid::*; pub use txidprefix::*; pub use txindex::*; pub use txversion::*; +pub use typeindex::*; pub use unit::*; +pub use unknownoutputindex::*; pub use version::*; pub use vin::*; pub use vout::*; diff --git a/crates/brk_core/src/structs/opreturnindex.rs b/crates/brk_core/src/structs/opreturnindex.rs new file mode 100644 index 000000000..b76c69029 --- /dev/null +++ b/crates/brk_core/src/structs/opreturnindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct OpReturnIndex(TypeIndex); +impl From for OpReturnIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: OpReturnIndex) -> Self { + Self::from(*value) + } +} +impl From for OpReturnIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for OpReturnIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for OpReturnIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for OpReturnIndex { + fn to_string() -> &'static str { + "opreturnindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["op", "opreturn", "opreturnindex"] + } +} diff --git a/crates/brk_core/src/structs/outputtypeindex.rs b/crates/brk_core/src/structs/outputtypeindex.rs deleted file mode 100644 index 73a4d47c9..000000000 --- a/crates/brk_core/src/structs/outputtypeindex.rs +++ /dev/null @@ -1,752 +0,0 @@ -use std::ops::Add; - -use byteview::ByteView; -use derive_deref::{Deref, DerefMut}; -use serde::Serialize; -use zerocopy::{FromBytes, IntoBytes}; -use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; - -use crate::{CheckedSub, Printable}; - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct OutputTypeIndex(u32); - -impl OutputTypeIndex { - pub fn increment(&mut self) { - self.0 += 1; - } - - pub fn incremented(self) -> Self { - Self(self.0 + 1) - } - - pub fn copy_then_increment(&mut self) -> Self { - let i = *self; - self.increment(); - i - } -} - -impl From for OutputTypeIndex { - fn from(value: u32) -> Self { - Self(value) - } -} - -impl From for OutputTypeIndex { - fn from(value: u64) -> Self { - Self(value as u32) - } -} -impl From for u64 { - fn from(value: OutputTypeIndex) -> Self { - value.0 as u64 - } -} - -impl From for OutputTypeIndex { - fn from(value: usize) -> Self { - Self(value as u32) - } -} -impl From for usize { - fn from(value: OutputTypeIndex) -> Self { - value.0 as usize - } -} - -impl Add for OutputTypeIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(self.0 + rhs as u32) - } -} - -impl Add for OutputTypeIndex { - type Output = Self; - fn add(self, rhs: OutputTypeIndex) -> Self::Output { - Self(self.0 + rhs.0) - } -} -impl From for OutputTypeIndex { - fn from(value: ByteView) -> Self { - Self::read_from_bytes(&value).unwrap() - } -} -impl From for ByteView { - fn from(value: OutputTypeIndex) -> Self { - Self::new(value.as_bytes()) - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct EmptyOutputIndex(OutputTypeIndex); -impl From for EmptyOutputIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: EmptyOutputIndex) -> Self { - Self::from(*value) - } -} -impl From for EmptyOutputIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for EmptyOutputIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for EmptyOutputIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} -impl Printable for EmptyOutputIndex { - fn to_string() -> &'static str { - "emptyoutputindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["empty", "emptyoutputindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2MSIndex(OutputTypeIndex); -impl From for P2MSIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2MSIndex) -> Self { - Self::from(*value) - } -} -impl From for P2MSIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2MSIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2MSIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2MSIndex { - fn to_string() -> &'static str { - "p2msindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["ms", "p2ms", "p2msindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2AIndex(OutputTypeIndex); -impl From for P2AIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2AIndex) -> Self { - Self::from(*value) - } -} -impl From for P2AIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2AIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2AIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2AIndex { - fn to_string() -> &'static str { - "p2aindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["a", "p2a", "p2aindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct OpReturnIndex(OutputTypeIndex); -impl From for OpReturnIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: OpReturnIndex) -> Self { - Self::from(*value) - } -} -impl From for OpReturnIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for OpReturnIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for OpReturnIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for OpReturnIndex { - fn to_string() -> &'static str { - "opreturnindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["op", "opreturn", "opreturnindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct UnknownOutputIndex(OutputTypeIndex); -impl From for UnknownOutputIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: UnknownOutputIndex) -> Self { - Self::from(*value) - } -} -impl From for UnknownOutputIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for UnknownOutputIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for UnknownOutputIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for UnknownOutputIndex { - fn to_string() -> &'static str { - "unknownoutputindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["unknown", "unknownoutputindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2PK33Index(OutputTypeIndex); -impl From for P2PK33Index { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2PK33Index) -> Self { - Self::from(*value) - } -} -impl From for P2PK33Index { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2PK33Index { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2PK33Index { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2PK33Index { - fn to_string() -> &'static str { - "p2pk33index" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["pk33", "p2pk33", "p2pk33index"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2PK65Index(OutputTypeIndex); -impl From for P2PK65Index { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2PK65Index) -> Self { - Self::from(*value) - } -} -impl From for P2PK65Index { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2PK65Index { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2PK65Index { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2PK65Index { - fn to_string() -> &'static str { - "p2pk65index" - } - fn to_possible_strings() -> &'static [&'static str] { - &["pk65", "p2pk65", "p2pk65index"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2PKHIndex(OutputTypeIndex); -impl From for P2PKHIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2PKHIndex) -> Self { - Self::from(*value) - } -} -impl From for P2PKHIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2PKHIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2PKHIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2PKHIndex { - fn to_string() -> &'static str { - "p2pkhindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["pkh", "p2pkh", "p2pkhindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2SHIndex(OutputTypeIndex); -impl From for P2SHIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2SHIndex) -> Self { - Self::from(*value) - } -} -impl From for P2SHIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2SHIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2SHIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2SHIndex { - fn to_string() -> &'static str { - "p2shindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["sh", "p2sh", "p2shindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2TRIndex(OutputTypeIndex); -impl From for P2TRIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2TRIndex) -> Self { - Self::from(*value) - } -} -impl From for P2TRIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2TRIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2TRIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2TRIndex { - fn to_string() -> &'static str { - "p2trindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["tr", "p2tr", "p2trindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2WPKHIndex(OutputTypeIndex); -impl From for P2WPKHIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2WPKHIndex) -> Self { - Self::from(*value) - } -} -impl From for P2WPKHIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2WPKHIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2WPKHIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2WPKHIndex { - fn to_string() -> &'static str { - "p2wpkhindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["wpkh", "p2wpkh", "p2wpkhindex"] - } -} - -#[derive( - Debug, - PartialEq, - Eq, - PartialOrd, - Ord, - Clone, - Copy, - Deref, - DerefMut, - Default, - FromBytes, - Immutable, - IntoBytes, - KnownLayout, - Serialize, -)] -pub struct P2WSHIndex(OutputTypeIndex); -impl From for P2WSHIndex { - fn from(value: OutputTypeIndex) -> Self { - Self(value) - } -} -impl From for usize { - fn from(value: P2WSHIndex) -> Self { - Self::from(*value) - } -} -impl From for P2WSHIndex { - fn from(value: usize) -> Self { - Self(OutputTypeIndex::from(value)) - } -} -impl Add for P2WSHIndex { - type Output = Self; - fn add(self, rhs: usize) -> Self::Output { - Self(*self + rhs) - } -} -impl CheckedSub for P2WSHIndex { - fn checked_sub(self, rhs: Self) -> Option { - self.0.0.checked_sub(rhs.0.0).map(OutputTypeIndex).map(Self) - } -} - -impl Printable for P2WSHIndex { - fn to_string() -> &'static str { - "p2wshindex" - } - - fn to_possible_strings() -> &'static [&'static str] { - &["wsh", "p2wsh", "p2wshindex"] - } -} diff --git a/crates/brk_core/src/structs/p2aaddressindex.rs b/crates/brk_core/src/structs/p2aaddressindex.rs new file mode 100644 index 000000000..9e268b9ef --- /dev/null +++ b/crates/brk_core/src/structs/p2aaddressindex.rs @@ -0,0 +1,61 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2AAddressIndex(TypeIndex); +impl From for P2AAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2AAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2AAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2AAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2AAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} +impl Printable for P2AAddressIndex { + fn to_string() -> &'static str { + "p2aaddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["aaddr", "p2aaddr", "p2aaddressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2msoutputindex.rs b/crates/brk_core/src/structs/p2msoutputindex.rs new file mode 100644 index 000000000..e315d1b64 --- /dev/null +++ b/crates/brk_core/src/structs/p2msoutputindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2MSOutputIndex(TypeIndex); +impl From for P2MSOutputIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2MSOutputIndex) -> Self { + Self::from(*value) + } +} +impl From for P2MSOutputIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2MSOutputIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2MSOutputIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2MSOutputIndex { + fn to_string() -> &'static str { + "p2msoutputindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["msout", "p2msout", "p2msoutputindex"] + } +} diff --git a/crates/brk_core/src/structs/p2pk33addressindex.rs b/crates/brk_core/src/structs/p2pk33addressindex.rs new file mode 100644 index 000000000..e925af645 --- /dev/null +++ b/crates/brk_core/src/structs/p2pk33addressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2PK33AddressIndex(TypeIndex); +impl From for P2PK33AddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2PK33AddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2PK33AddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2PK33AddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2PK33AddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2PK33AddressIndex { + fn to_string() -> &'static str { + "p2pk33addressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["pk33addr", "p2pk33addr", "p2pk33addressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2pk65addressindex.rs b/crates/brk_core/src/structs/p2pk65addressindex.rs new file mode 100644 index 000000000..a16b3a3e6 --- /dev/null +++ b/crates/brk_core/src/structs/p2pk65addressindex.rs @@ -0,0 +1,61 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2PK65AddressIndex(TypeIndex); +impl From for P2PK65AddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2PK65AddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2PK65AddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2PK65AddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2PK65AddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2PK65AddressIndex { + fn to_string() -> &'static str { + "p2pk65addressindex" + } + fn to_possible_strings() -> &'static [&'static str] { + &["pk65addr", "p2pk65addr", "p2pk65addressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2pkhaddressindex.rs b/crates/brk_core/src/structs/p2pkhaddressindex.rs new file mode 100644 index 000000000..ca6e8c729 --- /dev/null +++ b/crates/brk_core/src/structs/p2pkhaddressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2PKHAddressIndex(TypeIndex); +impl From for P2PKHAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2PKHAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2PKHAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2PKHAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2PKHAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2PKHAddressIndex { + fn to_string() -> &'static str { + "p2pkhaddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["pkhaddr", "p2pkhaddr", "p2pkhaddressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2shaddressindex.rs b/crates/brk_core/src/structs/p2shaddressindex.rs new file mode 100644 index 000000000..90dff9c7a --- /dev/null +++ b/crates/brk_core/src/structs/p2shaddressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2SHAddressIndex(TypeIndex); +impl From for P2SHAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2SHAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2SHAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2SHAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2SHAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2SHAddressIndex { + fn to_string() -> &'static str { + "p2shaddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["shaddr", "p2shaddr", "p2shaddressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2traddressindex.rs b/crates/brk_core/src/structs/p2traddressindex.rs new file mode 100644 index 000000000..ff6633516 --- /dev/null +++ b/crates/brk_core/src/structs/p2traddressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2TRAddressIndex(TypeIndex); +impl From for P2TRAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2TRAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2TRAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2TRAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2TRAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2TRAddressIndex { + fn to_string() -> &'static str { + "p2traddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["traddr", "p2traddr", "p2traddressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2wpkhaddressindex.rs b/crates/brk_core/src/structs/p2wpkhaddressindex.rs new file mode 100644 index 000000000..fb6528b80 --- /dev/null +++ b/crates/brk_core/src/structs/p2wpkhaddressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2WPKHAddressIndex(TypeIndex); +impl From for P2WPKHAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2WPKHAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2WPKHAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2WPKHAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2WPKHAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2WPKHAddressIndex { + fn to_string() -> &'static str { + "p2wpkhaddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["wpkhaddr", "p2wpkhaddr", "p2wpkhaddressindex"] + } +} diff --git a/crates/brk_core/src/structs/p2wshaddressindex.rs b/crates/brk_core/src/structs/p2wshaddressindex.rs new file mode 100644 index 000000000..6a61485cb --- /dev/null +++ b/crates/brk_core/src/structs/p2wshaddressindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct P2WSHAddressIndex(TypeIndex); +impl From for P2WSHAddressIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: P2WSHAddressIndex) -> Self { + Self::from(*value) + } +} +impl From for P2WSHAddressIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for P2WSHAddressIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for P2WSHAddressIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for P2WSHAddressIndex { + fn to_string() -> &'static str { + "p2wshaddressindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["wshaddr", "p2wshaddr", "p2wshaddressindex"] + } +} diff --git a/crates/brk_core/src/structs/stored_u32.rs b/crates/brk_core/src/structs/stored_u32.rs index a1cfde16d..de9569069 100644 --- a/crates/brk_core/src/structs/stored_u32.rs +++ b/crates/brk_core/src/structs/stored_u32.rs @@ -7,8 +7,9 @@ use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; use crate::{CheckedSub, Printable}; use super::{ - EmptyOutputIndex, OpReturnIndex, P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index, P2PKHIndex, - P2SHIndex, P2TRIndex, P2WPKHIndex, P2WSHIndex, UnknownOutputIndex, + EmptyOutputIndex, OpReturnIndex, P2AAddressIndex, P2MSOutputIndex, P2PK33AddressIndex, + P2PK65AddressIndex, P2PKHAddressIndex, P2SHAddressIndex, P2TRAddressIndex, P2WPKHAddressIndex, + P2WSHAddressIndex, UnknownOutputIndex, }; #[derive( @@ -93,20 +94,20 @@ impl From for usize { } } -impl From for StoredU32 { - fn from(value: P2PK65Index) -> Self { +impl From for StoredU32 { + fn from(value: P2PK65AddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2PK33Index) -> Self { +impl From for StoredU32 { + fn from(value: P2PK33AddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2PKHIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2PKHAddressIndex) -> Self { Self::from(usize::from(value)) } } @@ -117,38 +118,38 @@ impl From for StoredU32 { } } -impl From for StoredU32 { - fn from(value: P2MSIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2MSOutputIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2SHIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2SHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2WSHIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2WSHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2WPKHIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2WPKHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2TRIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2TRAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredU32 { - fn from(value: P2AIndex) -> Self { +impl From for StoredU32 { + fn from(value: P2AAddressIndex) -> Self { Self::from(usize::from(value)) } } diff --git a/crates/brk_core/src/structs/stored_usize.rs b/crates/brk_core/src/structs/stored_usize.rs index df7c1f44e..547ed8ed7 100644 --- a/crates/brk_core/src/structs/stored_usize.rs +++ b/crates/brk_core/src/structs/stored_usize.rs @@ -8,8 +8,9 @@ use crate::{CheckedSub, Printable}; use super::{ DateIndex, EmptyOutputIndex, Height, InputIndex, MonthIndex, OpReturnIndex, OutputIndex, - P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index, P2PKHIndex, P2SHIndex, P2TRIndex, P2WPKHIndex, - P2WSHIndex, TxIndex, UnknownOutputIndex, YearIndex, + P2AAddressIndex, P2MSOutputIndex, P2PK33AddressIndex, P2PK65AddressIndex, P2PKHAddressIndex, + P2SHAddressIndex, P2TRAddressIndex, P2WPKHAddressIndex, P2WSHAddressIndex, TxIndex, + UnknownOutputIndex, YearIndex, }; #[derive( @@ -122,20 +123,20 @@ impl From for StoredUsize { } } -impl From for StoredUsize { - fn from(value: P2PK65Index) -> Self { +impl From for StoredUsize { + fn from(value: P2PK65AddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2PK33Index) -> Self { +impl From for StoredUsize { + fn from(value: P2PK33AddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2PKHIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2PKHAddressIndex) -> Self { Self::from(usize::from(value)) } } @@ -146,38 +147,38 @@ impl From for StoredUsize { } } -impl From for StoredUsize { - fn from(value: P2MSIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2MSOutputIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2SHIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2SHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2WSHIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2WSHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2WPKHIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2WPKHAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2TRIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2TRAddressIndex) -> Self { Self::from(usize::from(value)) } } -impl From for StoredUsize { - fn from(value: P2AIndex) -> Self { +impl From for StoredUsize { + fn from(value: P2AAddressIndex) -> Self { Self::from(usize::from(value)) } } diff --git a/crates/brk_core/src/structs/typeindex.rs b/crates/brk_core/src/structs/typeindex.rs new file mode 100644 index 000000000..995e91d0a --- /dev/null +++ b/crates/brk_core/src/structs/typeindex.rs @@ -0,0 +1,99 @@ +use std::ops::Add; + +use byteview::ByteView; +use serde::Serialize; +use zerocopy::{FromBytes, IntoBytes}; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::CheckedSub; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct TypeIndex(u32); + +impl TypeIndex { + pub fn increment(&mut self) { + self.0 += 1; + } + + pub fn incremented(self) -> Self { + Self(self.0 + 1) + } + + pub fn copy_then_increment(&mut self) -> Self { + let i = *self; + self.increment(); + i + } +} + +impl From for TypeIndex { + fn from(value: u32) -> Self { + Self(value) + } +} + +impl From for TypeIndex { + fn from(value: u64) -> Self { + Self(value as u32) + } +} +impl From for u64 { + fn from(value: TypeIndex) -> Self { + value.0 as u64 + } +} + +impl From for TypeIndex { + fn from(value: usize) -> Self { + Self(value as u32) + } +} +impl From for usize { + fn from(value: TypeIndex) -> Self { + value.0 as usize + } +} + +impl Add for TypeIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(self.0 + rhs as u32) + } +} + +impl Add for TypeIndex { + type Output = Self; + fn add(self, rhs: TypeIndex) -> Self::Output { + Self(self.0 + rhs.0) + } +} +impl From for TypeIndex { + fn from(value: ByteView) -> Self { + Self::read_from_bytes(&value).unwrap() + } +} +impl From for ByteView { + fn from(value: TypeIndex) -> Self { + Self::new(value.as_bytes()) + } +} + +impl CheckedSub for TypeIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} diff --git a/crates/brk_core/src/structs/unknownoutputindex.rs b/crates/brk_core/src/structs/unknownoutputindex.rs new file mode 100644 index 000000000..fa80866ad --- /dev/null +++ b/crates/brk_core/src/structs/unknownoutputindex.rs @@ -0,0 +1,62 @@ +use std::ops::Add; + +use derive_deref::{Deref, DerefMut}; +use serde::Serialize; +use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; + +use crate::{CheckedSub, Printable, TypeIndex}; + +#[derive( + Debug, + PartialEq, + Eq, + PartialOrd, + Ord, + Clone, + Copy, + Deref, + DerefMut, + Default, + FromBytes, + Immutable, + IntoBytes, + KnownLayout, + Serialize, +)] +pub struct UnknownOutputIndex(TypeIndex); +impl From for UnknownOutputIndex { + fn from(value: TypeIndex) -> Self { + Self(value) + } +} +impl From for usize { + fn from(value: UnknownOutputIndex) -> Self { + Self::from(*value) + } +} +impl From for UnknownOutputIndex { + fn from(value: usize) -> Self { + Self(TypeIndex::from(value)) + } +} +impl Add for UnknownOutputIndex { + type Output = Self; + fn add(self, rhs: usize) -> Self::Output { + Self(*self + rhs) + } +} +impl CheckedSub for UnknownOutputIndex { + fn checked_sub(self, rhs: Self) -> Option { + self.0.checked_sub(rhs.0).map(Self) + } +} + +impl Printable for UnknownOutputIndex { + fn to_string() -> &'static str { + "unknownoutputindex" + } + + fn to_possible_strings() -> &'static [&'static str] { + &["unknownout", "unknownoutputindex"] + } +} diff --git a/crates/brk_indexer/src/indexes.rs b/crates/brk_indexer/src/indexes.rs index 338311509..ced35df24 100644 --- a/crates/brk_indexer/src/indexes.rs +++ b/crates/brk_indexer/src/indexes.rs @@ -1,8 +1,9 @@ use bitcoincore_rpc::Client; use brk_core::{ BlockHash, CheckedSub, EmptyOutputIndex, Height, InputIndex, OpReturnIndex, OutputIndex, - OutputType, OutputTypeIndex, P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index, P2PKHIndex, - P2SHIndex, P2TRIndex, P2WPKHIndex, P2WSHIndex, Result, TxIndex, UnknownOutputIndex, + OutputType, P2AAddressIndex, P2MSOutputIndex, P2PK33AddressIndex, P2PK65AddressIndex, + P2PKHAddressIndex, P2SHAddressIndex, P2TRAddressIndex, P2WPKHAddressIndex, P2WSHAddressIndex, + Result, TxIndex, TypeIndex, UnknownOutputIndex, }; use brk_parser::NUMBER_OF_UNSAFE_BLOCKS; use brk_vec::{AnyIndexedVec, AnyIterableVec, AnyVec, IndexedVec, StoredIndex, StoredType}; @@ -15,15 +16,15 @@ pub struct Indexes { pub emptyoutputindex: EmptyOutputIndex, pub height: Height, pub opreturnindex: OpReturnIndex, - pub p2msindex: P2MSIndex, - pub p2pk33index: P2PK33Index, - pub p2pk65index: P2PK65Index, - pub p2pkhindex: P2PKHIndex, - pub p2shindex: P2SHIndex, - pub p2trindex: P2TRIndex, - pub p2wpkhindex: P2WPKHIndex, - pub p2wshindex: P2WSHIndex, - pub p2aindex: P2AIndex, + pub p2msoutputindex: P2MSOutputIndex, + pub p2pk33addressindex: P2PK33AddressIndex, + pub p2pk65addressindex: P2PK65AddressIndex, + pub p2pkhaddressindex: P2PKHAddressIndex, + pub p2shaddressindex: P2SHAddressIndex, + pub p2traddressindex: P2TRAddressIndex, + pub p2wpkhaddressindex: P2WPKHAddressIndex, + pub p2wshaddressindex: P2WSHAddressIndex, + pub p2aaddressindex: P2AAddressIndex, pub txindex: TxIndex, pub inputindex: InputIndex, pub outputindex: OutputIndex, @@ -31,19 +32,19 @@ pub struct Indexes { } impl Indexes { - pub fn outputtypeindex(&self, outputtype: OutputType) -> OutputTypeIndex { + pub fn typeindex(&self, outputtype: OutputType) -> TypeIndex { match outputtype { OutputType::Empty => *self.emptyoutputindex, OutputType::OpReturn => *self.opreturnindex, - OutputType::P2A => *self.p2aindex, - OutputType::P2MS => *self.p2msindex, - OutputType::P2PK33 => *self.p2pkhindex, - OutputType::P2PK65 => *self.p2pk65index, - OutputType::P2PKH => *self.p2pkhindex, - OutputType::P2SH => *self.p2shindex, - OutputType::P2TR => *self.p2trindex, - OutputType::P2WPKH => *self.p2wpkhindex, - OutputType::P2WSH => *self.p2wshindex, + OutputType::P2A => *self.p2aaddressindex, + OutputType::P2MS => *self.p2msoutputindex, + OutputType::P2PK33 => *self.p2pkhaddressindex, + OutputType::P2PK65 => *self.p2pk65addressindex, + OutputType::P2PKH => *self.p2pkhaddressindex, + OutputType::P2SH => *self.p2shaddressindex, + OutputType::P2TR => *self.p2traddressindex, + OutputType::P2WPKH => *self.p2wpkhaddressindex, + OutputType::P2WSH => *self.p2wshaddressindex, OutputType::Unknown => *self.unknownoutputindex, } } @@ -58,28 +59,28 @@ impl Indexes { .push_if_needed(height, self.outputindex)?; vecs.height_to_first_emptyoutputindex .push_if_needed(height, self.emptyoutputindex)?; - vecs.height_to_first_p2msindex - .push_if_needed(height, self.p2msindex)?; + vecs.height_to_first_p2msoutputindex + .push_if_needed(height, self.p2msoutputindex)?; vecs.height_to_first_opreturnindex .push_if_needed(height, self.opreturnindex)?; - vecs.height_to_first_p2aindex - .push_if_needed(height, self.p2aindex)?; + vecs.height_to_first_p2aaddressindex + .push_if_needed(height, self.p2aaddressindex)?; vecs.height_to_first_unknownoutputindex .push_if_needed(height, self.unknownoutputindex)?; - vecs.height_to_first_p2pk33index - .push_if_needed(height, self.p2pk33index)?; - vecs.height_to_first_p2pk65index - .push_if_needed(height, self.p2pk65index)?; - vecs.height_to_first_p2pkhindex - .push_if_needed(height, self.p2pkhindex)?; - vecs.height_to_first_p2shindex - .push_if_needed(height, self.p2shindex)?; - vecs.height_to_first_p2trindex - .push_if_needed(height, self.p2trindex)?; - vecs.height_to_first_p2wpkhindex - .push_if_needed(height, self.p2wpkhindex)?; - vecs.height_to_first_p2wshindex - .push_if_needed(height, self.p2wshindex)?; + vecs.height_to_first_p2pk33addressindex + .push_if_needed(height, self.p2pk33addressindex)?; + vecs.height_to_first_p2pk65addressindex + .push_if_needed(height, self.p2pk65addressindex)?; + vecs.height_to_first_p2pkhaddressindex + .push_if_needed(height, self.p2pkhaddressindex)?; + vecs.height_to_first_p2shaddressindex + .push_if_needed(height, self.p2shaddressindex)?; + vecs.height_to_first_p2traddressindex + .push_if_needed(height, self.p2traddressindex)?; + vecs.height_to_first_p2wpkhaddressindex + .push_if_needed(height, self.p2wpkhaddressindex)?; + vecs.height_to_first_p2wshaddressindex + .push_if_needed(height, self.p2wshaddressindex)?; Ok(()) } @@ -122,9 +123,9 @@ impl TryFrom<(&mut Vecs, &Stores, &Client)> for Indexes { ) .context("")?, height, - p2msindex: starting_index( - &vecs.height_to_first_p2msindex, - &vecs.p2msindex_to_txindex, + p2msoutputindex: starting_index( + &vecs.height_to_first_p2msoutputindex, + &vecs.p2msoutputindex_to_txindex, height, ) .context("")?, @@ -134,51 +135,51 @@ impl TryFrom<(&mut Vecs, &Stores, &Client)> for Indexes { height, ) .context("")?, - p2pk33index: starting_index( - &vecs.height_to_first_p2pk33index, - &vecs.p2pk33index_to_p2pk33bytes, + p2pk33addressindex: starting_index( + &vecs.height_to_first_p2pk33addressindex, + &vecs.p2pk33addressindex_to_p2pk33bytes, height, ) .context("")?, - p2pk65index: starting_index( - &vecs.height_to_first_p2pk65index, - &vecs.p2pk65index_to_p2pk65bytes, + p2pk65addressindex: starting_index( + &vecs.height_to_first_p2pk65addressindex, + &vecs.p2pk65addressindex_to_p2pk65bytes, height, ) .context("")?, - p2pkhindex: starting_index( - &vecs.height_to_first_p2pkhindex, - &vecs.p2pkhindex_to_p2pkhbytes, + p2pkhaddressindex: starting_index( + &vecs.height_to_first_p2pkhaddressindex, + &vecs.p2pkhaddressindex_to_p2pkhbytes, height, ) .context("")?, - p2shindex: starting_index( - &vecs.height_to_first_p2shindex, - &vecs.p2shindex_to_p2shbytes, + p2shaddressindex: starting_index( + &vecs.height_to_first_p2shaddressindex, + &vecs.p2shaddressindex_to_p2shbytes, height, ) .context("")?, - p2trindex: starting_index( - &vecs.height_to_first_p2trindex, - &vecs.p2trindex_to_p2trbytes, + p2traddressindex: starting_index( + &vecs.height_to_first_p2traddressindex, + &vecs.p2traddressindex_to_p2trbytes, height, ) .context("")?, - p2wpkhindex: starting_index( - &vecs.height_to_first_p2wpkhindex, - &vecs.p2wpkhindex_to_p2wpkhbytes, + p2wpkhaddressindex: starting_index( + &vecs.height_to_first_p2wpkhaddressindex, + &vecs.p2wpkhaddressindex_to_p2wpkhbytes, height, ) .context("")?, - p2wshindex: starting_index( - &vecs.height_to_first_p2wshindex, - &vecs.p2wshindex_to_p2wshbytes, + p2wshaddressindex: starting_index( + &vecs.height_to_first_p2wshaddressindex, + &vecs.p2wshaddressindex_to_p2wshbytes, height, ) .context("")?, - p2aindex: starting_index( - &vecs.height_to_first_p2aindex, - &vecs.p2aindex_to_p2abytes, + p2aaddressindex: starting_index( + &vecs.height_to_first_p2aaddressindex, + &vecs.p2aaddressindex_to_p2abytes, height, ) .context("")?, diff --git a/crates/brk_indexer/src/lib.rs b/crates/brk_indexer/src/lib.rs index 1694d000a..876e445db 100644 --- a/crates/brk_indexer/src/lib.rs +++ b/crates/brk_indexer/src/lib.rs @@ -7,7 +7,7 @@ use std::{collections::BTreeMap, path::Path, str::FromStr, thread}; use brk_core::{ AddressBytes, AddressBytesHash, BlockHash, BlockHashPrefix, Height, InputIndex, OutputIndex, - OutputType, OutputTypeIndex, Sats, Timestamp, TxIndex, Txid, TxidPrefix, Version, Vin, Vout, + OutputType, Sats, Timestamp, TxIndex, Txid, TxidPrefix, TypeIndex, Version, Vin, Vout, setrlimit, }; @@ -267,15 +267,15 @@ impl Indexer { }); let outputindex_to_txout_outputtype_addressbytes_res_addressindex_opt_handle = scope.spawn(|| { - let p2pk65index_to_p2pk65bytes_mmap = vecs - .p2pk65index_to_p2pk65bytes.mmap().load(); - let p2pk33index_to_p2pk33bytes_mmap = vecs.p2pk33index_to_p2pk33bytes.mmap().load(); - let p2pkhindex_to_p2pkhbytes_mmap = vecs.p2pkhindex_to_p2pkhbytes.mmap().load(); - let p2shindex_to_p2shbytes_mmap = vecs.p2shindex_to_p2shbytes.mmap().load(); - let p2wpkhindex_to_p2wpkhbytes_mmap = vecs.p2wpkhindex_to_p2wpkhbytes.mmap().load(); - let p2wshindex_to_p2wshbytes_mmap = vecs.p2wshindex_to_p2wshbytes.mmap().load(); - let p2trindex_to_p2trbytes_mmap = vecs.p2trindex_to_p2trbytes.mmap().load(); - let p2aindex_to_p2abytes_mmap = vecs.p2aindex_to_p2abytes.mmap().load(); + let p2pk65addressindex_to_p2pk65bytes_mmap = vecs + .p2pk65addressindex_to_p2pk65bytes.mmap().load(); + let p2pk33addressindex_to_p2pk33bytes_mmap = vecs.p2pk33addressindex_to_p2pk33bytes.mmap().load(); + let p2pkhaddressindex_to_p2pkhbytes_mmap = vecs.p2pkhaddressindex_to_p2pkhbytes.mmap().load(); + let p2shaddressindex_to_p2shbytes_mmap = vecs.p2shaddressindex_to_p2shbytes.mmap().load(); + let p2wpkhaddressindex_to_p2wpkhbytes_mmap = vecs.p2wpkhaddressindex_to_p2wpkhbytes.mmap().load(); + let p2wshaddressindex_to_p2wshbytes_mmap = vecs.p2wshaddressindex_to_p2wshbytes.mmap().load(); + let p2traddressindex_to_p2trbytes_mmap = vecs.p2traddressindex_to_p2trbytes.mmap().load(); + let p2aaddressindex_to_p2abytes_mmap = vecs.p2aaddressindex_to_p2abytes.mmap().load(); outputs .into_par_iter() @@ -290,7 +290,7 @@ impl Indexer { Vout, OutputType, brk_core::Result, - Option, + Option, &Transaction, ), )> { @@ -306,53 +306,53 @@ impl Indexer { // dbg!(&txout, height, txi, &tx.compute_txid()); }); - let outputtypeindex_opt = address_bytes_res.as_ref().ok().and_then(|addressbytes| { + let typeindex_opt = address_bytes_res.as_ref().ok().and_then(|addressbytes| { stores - .addressbyteshash_to_outputtypeindex + .addressbyteshash_to_typeindex .get(&AddressBytesHash::from((addressbytes, outputtype))) .unwrap() .map(|v| *v) // Checking if not in the future - .and_then(|outputtypeindex_local| { - (outputtypeindex_local < idxs.outputtypeindex(outputtype)).then_some(outputtypeindex_local) + .and_then(|typeindex_local| { + (typeindex_local < idxs.typeindex(outputtype)).then_some(typeindex_local) }) }); - if let Some(Some(outputtypeindex)) = check_collisions.then_some(outputtypeindex_opt) { + if let Some(Some(typeindex)) = check_collisions.then_some(typeindex_opt) { let addressbytes = address_bytes_res.as_ref().unwrap(); let prev_addressbytes_opt = match outputtype { OutputType::P2PK65 => vecs - .p2pk65index_to_p2pk65bytes - .get_or_read(outputtypeindex.into(), &p2pk65index_to_p2pk65bytes_mmap)? + .p2pk65addressindex_to_p2pk65bytes + .get_or_read(typeindex.into(), &p2pk65addressindex_to_p2pk65bytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2PK33 => vecs - .p2pk33index_to_p2pk33bytes - .get_or_read(outputtypeindex.into(), &p2pk33index_to_p2pk33bytes_mmap)? + .p2pk33addressindex_to_p2pk33bytes + .get_or_read(typeindex.into(), &p2pk33addressindex_to_p2pk33bytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2PKH => vecs - .p2pkhindex_to_p2pkhbytes - .get_or_read(outputtypeindex.into(), &p2pkhindex_to_p2pkhbytes_mmap)? + .p2pkhaddressindex_to_p2pkhbytes + .get_or_read(typeindex.into(), &p2pkhaddressindex_to_p2pkhbytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2SH => vecs - .p2shindex_to_p2shbytes - .get_or_read(outputtypeindex.into(), &p2shindex_to_p2shbytes_mmap)? + .p2shaddressindex_to_p2shbytes + .get_or_read(typeindex.into(), &p2shaddressindex_to_p2shbytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2WPKH => vecs - .p2wpkhindex_to_p2wpkhbytes - .get_or_read(outputtypeindex.into(), &p2wpkhindex_to_p2wpkhbytes_mmap)? + .p2wpkhaddressindex_to_p2wpkhbytes + .get_or_read(typeindex.into(), &p2wpkhaddressindex_to_p2wpkhbytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2WSH => vecs - .p2wshindex_to_p2wshbytes - .get_or_read(outputtypeindex.into(), &p2wshindex_to_p2wshbytes_mmap)? + .p2wshaddressindex_to_p2wshbytes + .get_or_read(typeindex.into(), &p2wshaddressindex_to_p2wshbytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2TR => vecs - .p2trindex_to_p2trbytes - .get_or_read(outputtypeindex.into(), &p2trindex_to_p2trbytes_mmap)? + .p2traddressindex_to_p2trbytes + .get_or_read(typeindex.into(), &p2traddressindex_to_p2trbytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::P2A => vecs - .p2aindex_to_p2abytes - .get_or_read(outputtypeindex.into(), &p2aindex_to_p2abytes_mmap)? + .p2aaddressindex_to_p2abytes + .get_or_read(typeindex.into(), &p2aaddressindex_to_p2abytes_mmap)? .map(|v| AddressBytes::from(v.into_inner())), OutputType::Empty | OutputType::OpReturn | OutputType::P2MS | OutputType::Unknown => { unreachable!() @@ -361,7 +361,7 @@ impl Indexer { let prev_addressbytes = prev_addressbytes_opt.as_ref().context("Expect to have addressbytes")?; - if stores.addressbyteshash_to_outputtypeindex.needs(height) + if stores.addressbyteshash_to_typeindex.needs(height) && prev_addressbytes != addressbytes { let txid = tx.compute_txid(); @@ -374,8 +374,8 @@ impl Indexer { prev_addressbytes, addressbytes, &idxs, - outputtypeindex, - outputtypeindex, + typeindex, + typeindex, txout, AddressBytesHash::from((addressbytes, outputtype)), ); @@ -391,7 +391,7 @@ impl Indexer { vout, outputtype, address_bytes_res, - outputtypeindex_opt, + typeindex_opt, tx, ), )) @@ -443,14 +443,14 @@ impl Indexer { OutputIndex, > = BTreeMap::new(); - let mut already_added_addressbyteshash: BTreeMap = BTreeMap::new(); + let mut already_added_addressbyteshash: BTreeMap = BTreeMap::new(); outputindex_to_txout_outputtype_addressbytes_res_addressindex_opt .into_iter() .try_for_each( |( outputindex, - (txout, txindex, vout, outputtype, addressbytes_res, outputtypeindex_opt, _tx), + (txout, txindex, vout, outputtype, addressbytes_res, typeindex_opt, _tx), )| -> color_eyre::Result<()> { let sats = Sats::from(txout.value); @@ -466,9 +466,9 @@ impl Indexer { let mut addressbyteshash = None; - let outputtypeindex; + let typeindex; - if let Some(outputtypeindex_local) = outputtypeindex_opt.or_else(|| { + if let Some(typeindex_local) = typeindex_opt.or_else(|| { addressbytes_res.as_ref().ok().and_then(|addressbytes| { // Check if address was first seen before in this iterator // Example: https://mempool.space/address/046a0765b5865641ce08dd39690aade26dfbf5511430ca428a3089261361cef170e3929a68aee3d8d4848b0c5111b0a37b82b86ad559fd2a745b44d8e8d9dfdc0c @@ -478,40 +478,40 @@ impl Indexer { .cloned() }) }) { - outputtypeindex = outputtypeindex_local; + typeindex = typeindex_local; } else { - outputtypeindex = match outputtype { + typeindex = match outputtype { OutputType::P2PK65 => { - idxs.p2pk65index.copy_then_increment() + idxs.p2pk65addressindex.copy_then_increment() }, OutputType::P2PK33 => { - idxs.p2pk33index.copy_then_increment() + idxs.p2pk33addressindex.copy_then_increment() }, OutputType::P2PKH => { - idxs.p2pkhindex.copy_then_increment() + idxs.p2pkhaddressindex.copy_then_increment() }, OutputType::P2MS => { - vecs.p2msindex_to_txindex.push_if_needed(idxs.p2msindex, txindex)?; - idxs.p2msindex.copy_then_increment() + vecs.p2msoutputindex_to_txindex.push_if_needed(idxs.p2msoutputindex, txindex)?; + idxs.p2msoutputindex.copy_then_increment() }, OutputType::P2SH => { - idxs.p2shindex.copy_then_increment() + idxs.p2shaddressindex.copy_then_increment() }, OutputType::OpReturn => { vecs.opreturnindex_to_txindex.push_if_needed(idxs.opreturnindex, txindex)?; idxs.opreturnindex.copy_then_increment() }, OutputType::P2WPKH => { - idxs.p2wpkhindex.copy_then_increment() + idxs.p2wpkhaddressindex.copy_then_increment() }, OutputType::P2WSH => { - idxs.p2wshindex.copy_then_increment() + idxs.p2wshaddressindex.copy_then_increment() }, OutputType::P2TR => { - idxs.p2trindex.copy_then_increment() + idxs.p2traddressindex.copy_then_increment() }, OutputType::P2A => { - idxs.p2aindex.copy_then_increment() + idxs.p2aaddressindex.copy_then_increment() }, OutputType::Empty => { vecs.emptyoutputindex_to_txindex @@ -528,20 +528,20 @@ impl Indexer { let addressbyteshash = addressbyteshash.unwrap(); already_added_addressbyteshash - .insert(addressbyteshash, outputtypeindex); + .insert(addressbyteshash, typeindex); - stores.addressbyteshash_to_outputtypeindex.insert_if_needed( + stores.addressbyteshash_to_typeindex.insert_if_needed( addressbyteshash, - outputtypeindex, + typeindex, height, ); - vecs.push_bytes_if_needed(outputtypeindex, addressbytes)?; + vecs.push_bytes_if_needed(typeindex, addressbytes)?; } } - vecs.outputindex_to_outputtypeindex - .push_if_needed(outputindex, outputtypeindex)?; + vecs.outputindex_to_typeindex + .push_if_needed(outputindex, typeindex)?; new_txindexvout_to_outputindex .insert((txindex, vout), outputindex); diff --git a/crates/brk_indexer/src/stores.rs b/crates/brk_indexer/src/stores.rs index 7b15a3639..9ea1ef32c 100644 --- a/crates/brk_indexer/src/stores.rs +++ b/crates/brk_indexer/src/stores.rs @@ -1,8 +1,8 @@ use std::{fs, path::Path, thread}; use brk_core::{ - AddressBytes, AddressBytesHash, BlockHashPrefix, Height, OutputType, OutputTypeIndex, Result, - TxIndex, TxidPrefix, Value, Version, + AddressBytes, AddressBytesHash, BlockHashPrefix, Height, OutputType, Result, TxIndex, + TxidPrefix, TypeIndex, Value, Version, }; use brk_store::Store; use brk_vec::AnyIterableVec; @@ -15,7 +15,7 @@ use super::Vecs; #[derive(Clone)] pub struct Stores { pub keyspace: TransactionalKeyspace, - pub addressbyteshash_to_outputtypeindex: Store, + pub addressbyteshash_to_typeindex: Store, pub blockhashprefix_to_height: Store, pub txidprefix_to_txindex: Store, } @@ -35,11 +35,11 @@ impl Stores { }; thread::scope(|scope| { - let addressbyteshash_to_outputtypeindex = scope.spawn(|| { + let addressbyteshash_to_typeindex = scope.spawn(|| { Store::import( &keyspace, path, - "addressbyteshash_to_outputtypeindex", + "addressbyteshash_to_typeindex", version + VERSION + Version::ZERO, None, ) @@ -65,9 +65,7 @@ impl Stores { Ok(Self { keyspace: keyspace.clone(), - addressbyteshash_to_outputtypeindex: addressbyteshash_to_outputtypeindex - .join() - .unwrap()?, + addressbyteshash_to_typeindex: addressbyteshash_to_typeindex.join().unwrap()?, blockhashprefix_to_height: blockhashprefix_to_height.join().unwrap()?, txidprefix_to_txindex: txidprefix_to_txindex.join().unwrap()?, }) @@ -79,7 +77,7 @@ impl Stores { vecs: &mut Vecs, starting_indexes: &Indexes, ) -> color_eyre::Result<()> { - if self.addressbyteshash_to_outputtypeindex.is_empty() + if self.addressbyteshash_to_typeindex.is_empty() && self.blockhashprefix_to_height.is_empty() && self.txidprefix_to_txindex.is_empty() { @@ -95,158 +93,166 @@ impl Stores { }); if let Some(mut index) = vecs - .height_to_first_p2pk65index + .height_to_first_p2pk65addressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2pk65index_to_p2pk65bytes_iter = vecs.p2pk65index_to_p2pk65bytes.iter(); + let mut p2pk65addressindex_to_p2pk65bytes_iter = + vecs.p2pk65addressindex_to_p2pk65bytes.iter(); - while let Some(typedbytes) = p2pk65index_to_p2pk65bytes_iter + while let Some(typedbytes) = p2pk65addressindex_to_p2pk65bytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2PK65)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2pk33index + .height_to_first_p2pk33addressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2pk33index_to_p2pk33bytes_iter = vecs.p2pk33index_to_p2pk33bytes.iter(); + let mut p2pk33addressindex_to_p2pk33bytes_iter = + vecs.p2pk33addressindex_to_p2pk33bytes.iter(); - while let Some(typedbytes) = p2pk33index_to_p2pk33bytes_iter + while let Some(typedbytes) = p2pk33addressindex_to_p2pk33bytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2PK33)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2pkhindex + .height_to_first_p2pkhaddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2pkhindex_to_p2pkhbytes_iter = vecs.p2pkhindex_to_p2pkhbytes.iter(); + let mut p2pkhaddressindex_to_p2pkhbytes_iter = + vecs.p2pkhaddressindex_to_p2pkhbytes.iter(); - while let Some(typedbytes) = p2pkhindex_to_p2pkhbytes_iter + while let Some(typedbytes) = p2pkhaddressindex_to_p2pkhbytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2PKH)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2shindex + .height_to_first_p2shaddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2shindex_to_p2shbytes_iter = vecs.p2shindex_to_p2shbytes.iter(); + let mut p2shaddressindex_to_p2shbytes_iter = + vecs.p2shaddressindex_to_p2shbytes.iter(); - while let Some(typedbytes) = p2shindex_to_p2shbytes_iter + while let Some(typedbytes) = p2shaddressindex_to_p2shbytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2SH)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2trindex + .height_to_first_p2traddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2trindex_to_p2trbytes_iter = vecs.p2trindex_to_p2trbytes.iter(); + let mut p2traddressindex_to_p2trbytes_iter = + vecs.p2traddressindex_to_p2trbytes.iter(); - while let Some(typedbytes) = p2trindex_to_p2trbytes_iter + while let Some(typedbytes) = p2traddressindex_to_p2trbytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2TR)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2wpkhindex + .height_to_first_p2wpkhaddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2wpkhindex_to_p2wpkhbytes_iter = vecs.p2wpkhindex_to_p2wpkhbytes.iter(); + let mut p2wpkhaddressindex_to_p2wpkhbytes_iter = + vecs.p2wpkhaddressindex_to_p2wpkhbytes.iter(); - while let Some(typedbytes) = p2wpkhindex_to_p2wpkhbytes_iter + while let Some(typedbytes) = p2wpkhaddressindex_to_p2wpkhbytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2WPKH)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2wshindex + .height_to_first_p2wshaddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2wshindex_to_p2wshbytes_iter = vecs.p2wshindex_to_p2wshbytes.iter(); + let mut p2wshaddressindex_to_p2wshbytes_iter = + vecs.p2wshaddressindex_to_p2wshbytes.iter(); - while let Some(typedbytes) = p2wshindex_to_p2wshbytes_iter + while let Some(typedbytes) = p2wshaddressindex_to_p2wshbytes_iter .get(index) .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2WSH)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } if let Some(mut index) = vecs - .height_to_first_p2aindex + .height_to_first_p2aaddressindex .iter() .get(starting_indexes.height) .map(Value::into_inner) { - let mut p2aindex_to_p2abytes_iter = vecs.p2aindex_to_p2abytes.iter(); + let mut p2aaddressindex_to_p2abytes_iter = vecs.p2aaddressindex_to_p2abytes.iter(); - while let Some(typedbytes) = - p2aindex_to_p2abytes_iter.get(index).map(Value::into_inner) + while let Some(typedbytes) = p2aaddressindex_to_p2abytes_iter + .get(index) + .map(Value::into_inner) { let bytes = AddressBytes::from(typedbytes); let hash = AddressBytesHash::from((&bytes, OutputType::P2A)); - self.addressbyteshash_to_outputtypeindex.remove(hash); + self.addressbyteshash_to_typeindex.remove(hash); index.increment(); } } } else { self.blockhashprefix_to_height.reset_partition()?; - self.addressbyteshash_to_outputtypeindex.reset_partition()?; + self.addressbyteshash_to_typeindex.reset_partition()?; } if starting_indexes.txindex != TxIndex::ZERO { @@ -278,7 +284,7 @@ impl Stores { pub fn starting_height(&self) -> Height { [ - self.addressbyteshash_to_outputtypeindex.height(), + self.addressbyteshash_to_typeindex.height(), self.blockhashprefix_to_height.height(), self.txidprefix_to_txindex.height(), ] @@ -290,14 +296,14 @@ impl Stores { pub fn commit(&mut self, height: Height) -> Result<()> { thread::scope(|scope| -> Result<()> { - let addressbyteshash_to_outputtypeindex_commit_handle = - scope.spawn(|| self.addressbyteshash_to_outputtypeindex.commit(height)); + let addressbyteshash_to_typeindex_commit_handle = + scope.spawn(|| self.addressbyteshash_to_typeindex.commit(height)); let blockhashprefix_to_height_commit_handle = scope.spawn(|| self.blockhashprefix_to_height.commit(height)); let txidprefix_to_txindex_commit_handle = scope.spawn(|| self.txidprefix_to_txindex.commit(height)); - addressbyteshash_to_outputtypeindex_commit_handle + addressbyteshash_to_typeindex_commit_handle .join() .unwrap()?; blockhashprefix_to_height_commit_handle.join().unwrap()?; @@ -312,7 +318,7 @@ impl Stores { } pub fn rotate_memtables(&self) { - self.addressbyteshash_to_outputtypeindex.rotate_memtable(); + self.addressbyteshash_to_typeindex.rotate_memtable(); self.blockhashprefix_to_height.rotate_memtable(); self.txidprefix_to_txindex.rotate_memtable(); } diff --git a/crates/brk_indexer/src/vecs.rs b/crates/brk_indexer/src/vecs.rs index 664a3930f..d2b8fb125 100644 --- a/crates/brk_indexer/src/vecs.rs +++ b/crates/brk_indexer/src/vecs.rs @@ -2,11 +2,11 @@ use std::path::Path; use brk_core::{ AddressBytes, BlockHash, EmptyOutputIndex, Height, InputIndex, OpReturnIndex, OutputIndex, - OutputType, OutputTypeIndex, P2ABytes, P2AIndex, P2MSIndex, P2PK33Bytes, P2PK33Index, - P2PK65Bytes, P2PK65Index, P2PKHBytes, P2PKHIndex, P2SHBytes, P2SHIndex, P2TRBytes, P2TRIndex, - P2WPKHBytes, P2WPKHIndex, P2WSHBytes, P2WSHIndex, RawLockTime, Result, Sats, StoredF64, - StoredU32, StoredUsize, Timestamp, TxIndex, TxVersion, Txid, UnknownOutputIndex, Version, - Weight, + OutputType, P2AAddressIndex, P2ABytes, P2MSOutputIndex, P2PK33AddressIndex, P2PK33Bytes, + P2PK65AddressIndex, P2PK65Bytes, P2PKHAddressIndex, P2PKHBytes, P2SHAddressIndex, P2SHBytes, + P2TRAddressIndex, P2TRBytes, P2WPKHAddressIndex, P2WPKHBytes, P2WSHAddressIndex, P2WSHBytes, + RawLockTime, Result, Sats, StoredF64, StoredU32, StoredUsize, Timestamp, TxIndex, TxVersion, + Txid, TypeIndex, UnknownOutputIndex, Version, Weight, }; use brk_vec::{AnyCollectableVec, AnyIndexedVec, Format, IndexedVec}; use rayon::prelude::*; @@ -24,15 +24,15 @@ pub struct Vecs { pub height_to_first_inputindex: IndexedVec, pub height_to_first_opreturnindex: IndexedVec, pub height_to_first_outputindex: IndexedVec, - pub height_to_first_p2aindex: IndexedVec, - pub height_to_first_p2msindex: IndexedVec, - pub height_to_first_p2pk33index: IndexedVec, - pub height_to_first_p2pk65index: IndexedVec, - pub height_to_first_p2pkhindex: IndexedVec, - pub height_to_first_p2shindex: IndexedVec, - pub height_to_first_p2trindex: IndexedVec, - pub height_to_first_p2wpkhindex: IndexedVec, - pub height_to_first_p2wshindex: IndexedVec, + pub height_to_first_p2aaddressindex: IndexedVec, + pub height_to_first_p2msoutputindex: IndexedVec, + pub height_to_first_p2pk33addressindex: IndexedVec, + pub height_to_first_p2pk65addressindex: IndexedVec, + pub height_to_first_p2pkhaddressindex: IndexedVec, + pub height_to_first_p2shaddressindex: IndexedVec, + pub height_to_first_p2traddressindex: IndexedVec, + pub height_to_first_p2wpkhaddressindex: IndexedVec, + pub height_to_first_p2wshaddressindex: IndexedVec, pub height_to_first_txindex: IndexedVec, pub height_to_first_unknownoutputindex: IndexedVec, /// Doesn't guarantee continuity due to possible reorgs @@ -43,17 +43,17 @@ pub struct Vecs { pub inputindex_to_outputindex: IndexedVec, pub opreturnindex_to_txindex: IndexedVec, pub outputindex_to_outputtype: IndexedVec, - pub outputindex_to_outputtypeindex: IndexedVec, + pub outputindex_to_typeindex: IndexedVec, pub outputindex_to_value: IndexedVec, - pub p2aindex_to_p2abytes: IndexedVec, - pub p2msindex_to_txindex: IndexedVec, - pub p2pk33index_to_p2pk33bytes: IndexedVec, - pub p2pk65index_to_p2pk65bytes: IndexedVec, - pub p2pkhindex_to_p2pkhbytes: IndexedVec, - pub p2shindex_to_p2shbytes: IndexedVec, - pub p2trindex_to_p2trbytes: IndexedVec, - pub p2wpkhindex_to_p2wpkhbytes: IndexedVec, - pub p2wshindex_to_p2wshbytes: IndexedVec, + pub p2aaddressindex_to_p2abytes: IndexedVec, + pub p2msoutputindex_to_txindex: IndexedVec, + pub p2pk33addressindex_to_p2pk33bytes: IndexedVec, + pub p2pk65addressindex_to_p2pk65bytes: IndexedVec, + pub p2pkhaddressindex_to_p2pkhbytes: IndexedVec, + pub p2shaddressindex_to_p2shbytes: IndexedVec, + pub p2traddressindex_to_p2trbytes: IndexedVec, + pub p2wpkhaddressindex_to_p2wpkhbytes: IndexedVec, + pub p2wshaddressindex_to_p2wshbytes: IndexedVec, pub txindex_to_base_size: IndexedVec, pub txindex_to_first_inputindex: IndexedVec, pub txindex_to_first_outputindex: IndexedVec, @@ -110,57 +110,57 @@ impl Vecs { version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2aindex: IndexedVec::forced_import( + height_to_first_p2aaddressindex: IndexedVec::forced_import( path, - "first_p2aindex", + "first_p2aaddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2msindex: IndexedVec::forced_import( + height_to_first_p2msoutputindex: IndexedVec::forced_import( path, - "first_p2msindex", + "first_p2msoutputindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2pk33index: IndexedVec::forced_import( + height_to_first_p2pk33addressindex: IndexedVec::forced_import( path, - "first_p2pk33index", + "first_p2pk33addressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2pk65index: IndexedVec::forced_import( + height_to_first_p2pk65addressindex: IndexedVec::forced_import( path, - "first_p2pk65index", + "first_p2pk65addressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2pkhindex: IndexedVec::forced_import( + height_to_first_p2pkhaddressindex: IndexedVec::forced_import( path, - "first_p2pkhindex", + "first_p2pkhaddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2shindex: IndexedVec::forced_import( + height_to_first_p2shaddressindex: IndexedVec::forced_import( path, - "first_p2shindex", + "first_p2shaddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2trindex: IndexedVec::forced_import( + height_to_first_p2traddressindex: IndexedVec::forced_import( path, - "first_p2trindex", + "first_p2traddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2wpkhindex: IndexedVec::forced_import( + height_to_first_p2wpkhaddressindex: IndexedVec::forced_import( path, - "first_p2wpkhindex", + "first_p2wpkhaddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, - height_to_first_p2wshindex: IndexedVec::forced_import( + height_to_first_p2wshaddressindex: IndexedVec::forced_import( path, - "first_p2wshindex", + "first_p2wshaddressindex", version + VERSION + Version::ZERO, Format::Raw, )?, @@ -212,9 +212,9 @@ impl Vecs { version + VERSION + Version::ZERO, Format::Raw, )?, - outputindex_to_outputtypeindex: IndexedVec::forced_import( + outputindex_to_typeindex: IndexedVec::forced_import( path, - "outputtypeindex", + "typeindex", version + VERSION + Version::ZERO, Format::Raw, )?, @@ -224,55 +224,55 @@ impl Vecs { version + VERSION + Version::ZERO, Format::Raw, )?, - p2aindex_to_p2abytes: IndexedVec::forced_import( + p2aaddressindex_to_p2abytes: IndexedVec::forced_import( path, "p2abytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2msindex_to_txindex: IndexedVec::forced_import( + p2msoutputindex_to_txindex: IndexedVec::forced_import( path, "txindex", version + VERSION + Version::ZERO, Format::Raw, )?, - p2pk33index_to_p2pk33bytes: IndexedVec::forced_import( + p2pk33addressindex_to_p2pk33bytes: IndexedVec::forced_import( path, "p2pk33bytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2pk65index_to_p2pk65bytes: IndexedVec::forced_import( + p2pk65addressindex_to_p2pk65bytes: IndexedVec::forced_import( path, "p2pk65bytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2pkhindex_to_p2pkhbytes: IndexedVec::forced_import( + p2pkhaddressindex_to_p2pkhbytes: IndexedVec::forced_import( path, "p2pkhbytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2shindex_to_p2shbytes: IndexedVec::forced_import( + p2shaddressindex_to_p2shbytes: IndexedVec::forced_import( path, "p2shbytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2trindex_to_p2trbytes: IndexedVec::forced_import( + p2traddressindex_to_p2trbytes: IndexedVec::forced_import( path, "p2trbytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2wpkhindex_to_p2wpkhbytes: IndexedVec::forced_import( + p2wpkhaddressindex_to_p2wpkhbytes: IndexedVec::forced_import( path, "p2wpkhbytes", version + VERSION + Version::ZERO, Format::Raw, )?, - p2wshindex_to_p2wshbytes: IndexedVec::forced_import( + p2wshaddressindex_to_p2wshbytes: IndexedVec::forced_import( path, "p2wshbytes", version + VERSION + Version::ZERO, @@ -344,15 +344,15 @@ impl Vecs { inputindex, opreturnindex, outputindex, - p2aindex, - p2msindex, - p2pk33index, - p2pk65index, - p2pkhindex, - p2shindex, - p2trindex, - p2wpkhindex, - p2wshindex, + p2aaddressindex, + p2msoutputindex, + p2pk33addressindex, + p2pk65addressindex, + p2pkhaddressindex, + p2shaddressindex, + p2traddressindex, + p2wpkhaddressindex, + p2wshaddressindex, txindex, unknownoutputindex, } = starting_indexes; @@ -371,23 +371,23 @@ impl Vecs { .truncate_if_needed(height, saved_height)?; self.height_to_first_outputindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2aindex + self.height_to_first_p2aaddressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2msindex + self.height_to_first_p2msoutputindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2pk33index + self.height_to_first_p2pk33addressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2pk65index + self.height_to_first_p2pk65addressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2pkhindex + self.height_to_first_p2pkhaddressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2shindex + self.height_to_first_p2shaddressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2trindex + self.height_to_first_p2traddressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2wpkhindex + self.height_to_first_p2wpkhaddressindex .truncate_if_needed(height, saved_height)?; - self.height_to_first_p2wshindex + self.height_to_first_p2wshaddressindex .truncate_if_needed(height, saved_height)?; self.height_to_first_txindex .truncate_if_needed(height, saved_height)?; @@ -405,28 +405,28 @@ impl Vecs { .truncate_if_needed(opreturnindex, saved_height)?; self.outputindex_to_outputtype .truncate_if_needed(outputindex, saved_height)?; - self.outputindex_to_outputtypeindex + self.outputindex_to_typeindex .truncate_if_needed(outputindex, saved_height)?; self.outputindex_to_value .truncate_if_needed(outputindex, saved_height)?; - self.p2aindex_to_p2abytes - .truncate_if_needed(p2aindex, saved_height)?; - self.p2msindex_to_txindex - .truncate_if_needed(p2msindex, saved_height)?; - self.p2pk33index_to_p2pk33bytes - .truncate_if_needed(p2pk33index, saved_height)?; - self.p2pk65index_to_p2pk65bytes - .truncate_if_needed(p2pk65index, saved_height)?; - self.p2pkhindex_to_p2pkhbytes - .truncate_if_needed(p2pkhindex, saved_height)?; - self.p2shindex_to_p2shbytes - .truncate_if_needed(p2shindex, saved_height)?; - self.p2trindex_to_p2trbytes - .truncate_if_needed(p2trindex, saved_height)?; - self.p2wpkhindex_to_p2wpkhbytes - .truncate_if_needed(p2wpkhindex, saved_height)?; - self.p2wshindex_to_p2wshbytes - .truncate_if_needed(p2wshindex, saved_height)?; + self.p2aaddressindex_to_p2abytes + .truncate_if_needed(p2aaddressindex, saved_height)?; + self.p2msoutputindex_to_txindex + .truncate_if_needed(p2msoutputindex, saved_height)?; + self.p2pk33addressindex_to_p2pk33bytes + .truncate_if_needed(p2pk33addressindex, saved_height)?; + self.p2pk65addressindex_to_p2pk65bytes + .truncate_if_needed(p2pk65addressindex, saved_height)?; + self.p2pkhaddressindex_to_p2pkhbytes + .truncate_if_needed(p2pkhaddressindex, saved_height)?; + self.p2shaddressindex_to_p2shbytes + .truncate_if_needed(p2shaddressindex, saved_height)?; + self.p2traddressindex_to_p2trbytes + .truncate_if_needed(p2traddressindex, saved_height)?; + self.p2wpkhaddressindex_to_p2wpkhbytes + .truncate_if_needed(p2wpkhaddressindex, saved_height)?; + self.p2wshaddressindex_to_p2wshbytes + .truncate_if_needed(p2wshaddressindex, saved_height)?; self.txindex_to_base_size .truncate_if_needed(txindex, saved_height)?; self.txindex_to_first_inputindex @@ -449,35 +449,31 @@ impl Vecs { Ok(()) } - pub fn push_bytes_if_needed( - &mut self, - index: OutputTypeIndex, - bytes: AddressBytes, - ) -> Result<()> { + pub fn push_bytes_if_needed(&mut self, index: TypeIndex, bytes: AddressBytes) -> Result<()> { match bytes { AddressBytes::P2PK65(bytes) => self - .p2pk65index_to_p2pk65bytes + .p2pk65addressindex_to_p2pk65bytes .push_if_needed(index.into(), bytes), AddressBytes::P2PK33(bytes) => self - .p2pk33index_to_p2pk33bytes + .p2pk33addressindex_to_p2pk33bytes .push_if_needed(index.into(), bytes), AddressBytes::P2PKH(bytes) => self - .p2pkhindex_to_p2pkhbytes + .p2pkhaddressindex_to_p2pkhbytes .push_if_needed(index.into(), bytes), AddressBytes::P2SH(bytes) => self - .p2shindex_to_p2shbytes + .p2shaddressindex_to_p2shbytes .push_if_needed(index.into(), bytes), AddressBytes::P2WPKH(bytes) => self - .p2wpkhindex_to_p2wpkhbytes + .p2wpkhaddressindex_to_p2wpkhbytes .push_if_needed(index.into(), bytes), AddressBytes::P2WSH(bytes) => self - .p2wshindex_to_p2wshbytes + .p2wshaddressindex_to_p2wshbytes .push_if_needed(index.into(), bytes), AddressBytes::P2TR(bytes) => self - .p2trindex_to_p2trbytes + .p2traddressindex_to_p2trbytes .push_if_needed(index.into(), bytes), AddressBytes::P2A(bytes) => self - .p2aindex_to_p2abytes + .p2aaddressindex_to_p2abytes .push_if_needed(index.into(), bytes), } } @@ -508,15 +504,15 @@ impl Vecs { &self.height_to_first_inputindex, &self.height_to_first_opreturnindex, &self.height_to_first_outputindex, - &self.height_to_first_p2aindex, - &self.height_to_first_p2msindex, - &self.height_to_first_p2pk33index, - &self.height_to_first_p2pk65index, - &self.height_to_first_p2pkhindex, - &self.height_to_first_p2shindex, - &self.height_to_first_p2trindex, - &self.height_to_first_p2wpkhindex, - &self.height_to_first_p2wshindex, + &self.height_to_first_p2aaddressindex, + &self.height_to_first_p2msoutputindex, + &self.height_to_first_p2pk33addressindex, + &self.height_to_first_p2pk65addressindex, + &self.height_to_first_p2pkhaddressindex, + &self.height_to_first_p2shaddressindex, + &self.height_to_first_p2traddressindex, + &self.height_to_first_p2wpkhaddressindex, + &self.height_to_first_p2wshaddressindex, &self.height_to_first_txindex, &self.height_to_first_unknownoutputindex, &self.height_to_timestamp, @@ -525,17 +521,17 @@ impl Vecs { &self.inputindex_to_outputindex, &self.opreturnindex_to_txindex, &self.outputindex_to_outputtype, - &self.outputindex_to_outputtypeindex, + &self.outputindex_to_typeindex, &self.outputindex_to_value, - &self.p2aindex_to_p2abytes, - &self.p2msindex_to_txindex, - &self.p2pk33index_to_p2pk33bytes, - &self.p2pk65index_to_p2pk65bytes, - &self.p2pkhindex_to_p2pkhbytes, - &self.p2shindex_to_p2shbytes, - &self.p2trindex_to_p2trbytes, - &self.p2wpkhindex_to_p2wpkhbytes, - &self.p2wshindex_to_p2wshbytes, + &self.p2aaddressindex_to_p2abytes, + &self.p2msoutputindex_to_txindex, + &self.p2pk33addressindex_to_p2pk33bytes, + &self.p2pk65addressindex_to_p2pk65bytes, + &self.p2pkhaddressindex_to_p2pkhbytes, + &self.p2shaddressindex_to_p2shbytes, + &self.p2traddressindex_to_p2trbytes, + &self.p2wpkhaddressindex_to_p2wpkhbytes, + &self.p2wshaddressindex_to_p2wshbytes, &self.txindex_to_base_size, &self.txindex_to_first_inputindex, &self.txindex_to_first_outputindex, @@ -557,15 +553,15 @@ impl Vecs { &mut self.height_to_first_inputindex, &mut self.height_to_first_opreturnindex, &mut self.height_to_first_outputindex, - &mut self.height_to_first_p2aindex, - &mut self.height_to_first_p2msindex, - &mut self.height_to_first_p2pk33index, - &mut self.height_to_first_p2pk65index, - &mut self.height_to_first_p2pkhindex, - &mut self.height_to_first_p2shindex, - &mut self.height_to_first_p2trindex, - &mut self.height_to_first_p2wpkhindex, - &mut self.height_to_first_p2wshindex, + &mut self.height_to_first_p2aaddressindex, + &mut self.height_to_first_p2msoutputindex, + &mut self.height_to_first_p2pk33addressindex, + &mut self.height_to_first_p2pk65addressindex, + &mut self.height_to_first_p2pkhaddressindex, + &mut self.height_to_first_p2shaddressindex, + &mut self.height_to_first_p2traddressindex, + &mut self.height_to_first_p2wpkhaddressindex, + &mut self.height_to_first_p2wshaddressindex, &mut self.height_to_first_txindex, &mut self.height_to_first_unknownoutputindex, &mut self.height_to_timestamp, @@ -574,17 +570,17 @@ impl Vecs { &mut self.inputindex_to_outputindex, &mut self.opreturnindex_to_txindex, &mut self.outputindex_to_outputtype, - &mut self.outputindex_to_outputtypeindex, + &mut self.outputindex_to_typeindex, &mut self.outputindex_to_value, - &mut self.p2aindex_to_p2abytes, - &mut self.p2msindex_to_txindex, - &mut self.p2pk33index_to_p2pk33bytes, - &mut self.p2pk65index_to_p2pk65bytes, - &mut self.p2pkhindex_to_p2pkhbytes, - &mut self.p2shindex_to_p2shbytes, - &mut self.p2trindex_to_p2trbytes, - &mut self.p2wpkhindex_to_p2wpkhbytes, - &mut self.p2wshindex_to_p2wshbytes, + &mut self.p2aaddressindex_to_p2abytes, + &mut self.p2msoutputindex_to_txindex, + &mut self.p2pk33addressindex_to_p2pk33bytes, + &mut self.p2pk65addressindex_to_p2pk65bytes, + &mut self.p2pkhaddressindex_to_p2pkhbytes, + &mut self.p2shaddressindex_to_p2shbytes, + &mut self.p2traddressindex_to_p2trbytes, + &mut self.p2wpkhaddressindex_to_p2wpkhbytes, + &mut self.p2wshaddressindex_to_p2wshbytes, &mut self.txindex_to_base_size, &mut self.txindex_to_first_inputindex, &mut self.txindex_to_first_outputindex, diff --git a/crates/brk_interface/src/index.rs b/crates/brk_interface/src/index.rs index 9e991f6ce..252bd300e 100644 --- a/crates/brk_interface/src/index.rs +++ b/crates/brk_interface/src/index.rs @@ -2,9 +2,9 @@ use std::fmt::{self, Debug}; use brk_core::{ DateIndex, DecadeIndex, DifficultyEpoch, EmptyOutputIndex, HalvingEpoch, Height, InputIndex, - MonthIndex, OpReturnIndex, OutputIndex, P2AIndex, P2MSIndex, P2PK33Index, P2PK65Index, - P2PKHIndex, P2SHIndex, P2TRIndex, P2WPKHIndex, P2WSHIndex, Printable, QuarterIndex, TxIndex, - UnknownOutputIndex, WeekIndex, YearIndex, + MonthIndex, OpReturnIndex, OutputIndex, P2AAddressIndex, P2MSOutputIndex, P2PK33AddressIndex, + P2PK65AddressIndex, P2PKHAddressIndex, P2SHAddressIndex, P2TRAddressIndex, P2WPKHAddressIndex, + P2WSHAddressIndex, Printable, QuarterIndex, TxIndex, UnknownOutputIndex, WeekIndex, YearIndex, }; use color_eyre::eyre::eyre; use schemars::JsonSchema; @@ -22,15 +22,15 @@ pub enum Index { MonthIndex, OpReturnIndex, OutputIndex, - P2AIndex, - P2MSIndex, - P2PK33Index, - P2PK65Index, - P2PKHIndex, - P2SHIndex, - P2TRIndex, - P2WPKHIndex, - P2WSHIndex, + P2AAddressIndex, + P2MSOutputIndex, + P2PK33AddressIndex, + P2PK65AddressIndex, + P2PKHAddressIndex, + P2SHAddressIndex, + P2TRAddressIndex, + P2WPKHAddressIndex, + P2WSHAddressIndex, QuarterIndex, TxIndex, UnknownOutputIndex, @@ -51,15 +51,15 @@ impl Index { Self::MonthIndex, Self::OpReturnIndex, Self::OutputIndex, - Self::P2AIndex, - Self::P2MSIndex, - Self::P2PK33Index, - Self::P2PK65Index, - Self::P2PKHIndex, - Self::P2SHIndex, - Self::P2TRIndex, - Self::P2WPKHIndex, - Self::P2WSHIndex, + Self::P2AAddressIndex, + Self::P2MSOutputIndex, + Self::P2PK33AddressIndex, + Self::P2PK65AddressIndex, + Self::P2PKHAddressIndex, + Self::P2SHAddressIndex, + Self::P2TRAddressIndex, + Self::P2WPKHAddressIndex, + Self::P2WSHAddressIndex, Self::QuarterIndex, Self::TxIndex, Self::UnknownOutputIndex, @@ -80,15 +80,15 @@ impl Index { Self::MonthIndex => MonthIndex::to_possible_strings(), Self::OpReturnIndex => OpReturnIndex::to_possible_strings(), Self::OutputIndex => OutputIndex::to_possible_strings(), - Self::P2AIndex => P2AIndex::to_possible_strings(), - Self::P2MSIndex => P2MSIndex::to_possible_strings(), - Self::P2PK33Index => P2PK33Index::to_possible_strings(), - Self::P2PK65Index => P2PK65Index::to_possible_strings(), - Self::P2PKHIndex => P2PKHIndex::to_possible_strings(), - Self::P2SHIndex => P2SHIndex::to_possible_strings(), - Self::P2TRIndex => P2TRIndex::to_possible_strings(), - Self::P2WPKHIndex => P2WPKHIndex::to_possible_strings(), - Self::P2WSHIndex => P2WSHIndex::to_possible_strings(), + Self::P2AAddressIndex => P2AAddressIndex::to_possible_strings(), + Self::P2MSOutputIndex => P2MSOutputIndex::to_possible_strings(), + Self::P2PK33AddressIndex => P2PK33AddressIndex::to_possible_strings(), + Self::P2PK65AddressIndex => P2PK65AddressIndex::to_possible_strings(), + Self::P2PKHAddressIndex => P2PKHAddressIndex::to_possible_strings(), + Self::P2SHAddressIndex => P2SHAddressIndex::to_possible_strings(), + Self::P2TRAddressIndex => P2TRAddressIndex::to_possible_strings(), + Self::P2WPKHAddressIndex => P2WPKHAddressIndex::to_possible_strings(), + Self::P2WSHAddressIndex => P2WSHAddressIndex::to_possible_strings(), Self::QuarterIndex => QuarterIndex::to_possible_strings(), Self::TxIndex => TxIndex::to_possible_strings(), Self::UnknownOutputIndex => UnknownOutputIndex::to_possible_strings(), @@ -130,15 +130,25 @@ impl TryFrom<&str> for Index { v if (Self::MonthIndex).possible_values().contains(&v) => Self::MonthIndex, v if (Self::OpReturnIndex).possible_values().contains(&v) => Self::OpReturnIndex, v if (Self::OutputIndex).possible_values().contains(&v) => Self::OutputIndex, - v if (Self::P2AIndex).possible_values().contains(&v) => Self::P2AIndex, - v if (Self::P2MSIndex).possible_values().contains(&v) => Self::P2MSIndex, - v if (Self::P2PK33Index).possible_values().contains(&v) => Self::P2PK33Index, - v if (Self::P2PK65Index).possible_values().contains(&v) => Self::P2PK65Index, - v if (Self::P2PKHIndex).possible_values().contains(&v) => Self::P2PKHIndex, - v if (Self::P2SHIndex).possible_values().contains(&v) => Self::P2SHIndex, - v if (Self::P2TRIndex).possible_values().contains(&v) => Self::P2TRIndex, - v if (Self::P2WPKHIndex).possible_values().contains(&v) => Self::P2WPKHIndex, - v if (Self::P2WSHIndex).possible_values().contains(&v) => Self::P2WSHIndex, + v if (Self::P2AAddressIndex).possible_values().contains(&v) => Self::P2AAddressIndex, + v if (Self::P2MSOutputIndex).possible_values().contains(&v) => Self::P2MSOutputIndex, + v if (Self::P2PK33AddressIndex).possible_values().contains(&v) => { + Self::P2PK33AddressIndex + } + v if (Self::P2PK65AddressIndex).possible_values().contains(&v) => { + Self::P2PK65AddressIndex + } + v if (Self::P2PKHAddressIndex).possible_values().contains(&v) => { + Self::P2PKHAddressIndex + } + v if (Self::P2SHAddressIndex).possible_values().contains(&v) => Self::P2SHAddressIndex, + v if (Self::P2TRAddressIndex).possible_values().contains(&v) => Self::P2TRAddressIndex, + v if (Self::P2WPKHAddressIndex).possible_values().contains(&v) => { + Self::P2WPKHAddressIndex + } + v if (Self::P2WSHAddressIndex).possible_values().contains(&v) => { + Self::P2WSHAddressIndex + } v if (Self::QuarterIndex).possible_values().contains(&v) => Self::QuarterIndex, v if (Self::QuarterIndex).possible_values().contains(&v) => Self::QuarterIndex, v if (Self::TxIndex).possible_values().contains(&v) => Self::TxIndex, diff --git a/crates/brk_vec/examples/main.rs b/crates/brk_vec/examples/main.rs index f8c26ab02..b82a6ba19 100644 --- a/crates/brk_vec/examples/main.rs +++ b/crates/brk_vec/examples/main.rs @@ -3,6 +3,7 @@ use std::{fs, path::Path}; use brk_core::{DateIndex, Height, Version}; use brk_vec::{AnyVec, CollectableVec, Format, GenericStoredVec, StoredVec, VecIterator}; +#[allow(clippy::upper_case_acronyms)] type VEC = StoredVec; fn main() -> Result<(), Box> { diff --git a/crates/brk_vec/src/variants/raw.rs b/crates/brk_vec/src/variants/raw.rs index d8c565896..afe59af3a 100644 --- a/crates/brk_vec/src/variants/raw.rs +++ b/crates/brk_vec/src/variants/raw.rs @@ -42,14 +42,14 @@ where version = version + VERSION; let res = Self::import(parent, name, version); match res { - // Err(Error::DifferentCompressionMode) - // | Err(Error::WrongEndian) - // | Err(Error::WrongLength) - // | Err(Error::DifferentVersion { .. }) => { - // let path = Self::path_(parent, name); - // fs::remove_file(path)?; - // Self::import(parent, name, version) - // } + Err(Error::DifferentCompressionMode) + | Err(Error::WrongEndian) + | Err(Error::WrongLength) + | Err(Error::DifferentVersion { .. }) => { + let path = Self::path_(parent, name); + fs::remove_file(path)?; + Self::import(parent, name, version) + } _ => res, } } diff --git a/websites/default/scripts/main.js b/websites/default/scripts/main.js index 7d77e9744..c8d022cd8 100644 --- a/websites/default/scripts/main.js +++ b/websites/default/scripts/main.js @@ -64,14 +64,14 @@ function initPackages() { const imports = { async signals() { return import("../packages/solid-signals/wrapper.js").then( - (d) => d.default + (d) => d.default, ); }, async lightweightCharts() { return window.document.fonts.ready.then(() => import("../packages/lightweight-charts/wrapper.js").then( - (d) => d.default - ) + (d) => d.default, + ), ); }, async leanQr() { @@ -79,7 +79,7 @@ function initPackages() { }, async ufuzzy() { return import("../packages/ufuzzy/v1.0.18/script.js").then( - ({ default: d }) => d + ({ default: d }) => d, ); }, }; @@ -587,7 +587,7 @@ function createUtils() { window.history.pushState( null, "", - `${pathname}?${urlParams.toString()}` + `${pathname}?${urlParams.toString()}`, ); } catch (_) {} }, @@ -604,7 +604,7 @@ function createUtils() { window.history.replaceState( null, "", - `${pathname}?${urlParams.toString()}` + `${pathname}?${urlParams.toString()}`, ); } catch (_) {} }, @@ -1138,23 +1138,23 @@ function createUtils() { case /** @satisfies {OutputIndex} */ (9): return "outputindex"; case /** @satisfies {P2AIndex} */ (10): - return "p2aindex"; + return "p2aaddressindex"; case /** @satisfies {P2MSIndex} */ (11): - return "p2msindex"; + return "p2msoutputindex"; case /** @satisfies {P2PK33Index} */ (12): - return "p2pk33index"; + return "p2pk33addressindex"; case /** @satisfies {P2PK65Index} */ (13): - return "p2pk65index"; + return "p2pk65addressindex"; case /** @satisfies {P2PKHIndex} */ (14): - return "p2pkhindex"; + return "p2pkhaddressindex"; case /** @satisfies {P2SHIndex} */ (15): - return "p2shindex"; + return "p2shaddressindex"; case /** @satisfies {P2TRIndex} */ (16): - return "p2trindex"; + return "p2traddressindex"; case /** @satisfies {P2WPKHIndex} */ (17): - return "p2wpkhindex"; + return "p2wpkhaddressindex"; case /** @satisfies {P2WSHIndex} */ (18): - return "p2wshindex"; + return "p2wshaddressindex"; case /** @satisfies {QuarterIndex} */ (19): return "quarterindex"; case /** @satisfies {TxIndex} */ (20): @@ -1251,8 +1251,8 @@ function createUtils() { today.getUTCDate(), 0, 0, - 0 - ) + 0, + ), ); }, /** @@ -1339,7 +1339,7 @@ function createUtils() { */ function getNumberOfDaysBetweenTwoDates(oldest, youngest) { return Math.round( - Math.abs((youngest.getTime() - oldest.getTime()) / date.ONE_DAY_IN_MS) + Math.abs((youngest.getTime() - oldest.getTime()) / date.ONE_DAY_IN_MS), ); } @@ -1558,7 +1558,7 @@ function createVecsResources(signals, utils) { const fetchedRecord = signals.createSignal( /** @type {Map}>} */ ( new Map() - ) + ), ); return { @@ -1608,7 +1608,7 @@ function createVecsResources(signals, utils) { index, id, from, - to + to, ) ); fetched.at = new Date(); @@ -1869,7 +1869,7 @@ function initWebSockets(signals, utils) { window.document.addEventListener( "visibilitychange", - reinitWebSocketIfDocumentNotHidden + reinitWebSocketIfDocumentNotHidden, ); window.document.addEventListener("online", reinitWebSocket); @@ -1878,7 +1878,7 @@ function initWebSockets(signals, utils) { ws?.close(); window.document.removeEventListener( "visibilitychange", - reinitWebSocketIfDocumentNotHidden + reinitWebSocketIfDocumentNotHidden, ); window.document.removeEventListener("online", reinitWebSocket); live.set(false); @@ -1904,7 +1904,7 @@ function initWebSockets(signals, utils) { symbol: ["BTC/USD"], interval: 1440, }, - }) + }), ); }); @@ -1933,7 +1933,7 @@ function initWebSockets(signals, utils) { /** @type {ReturnType>} */ const kraken1dCandle = createWebsocket((callback) => - krakenCandleWebSocketCreator(callback) + krakenCandleWebSocketCreator(callback), ); kraken1dCandle.open(); @@ -1992,7 +1992,7 @@ function main() { } const frame = window.document.getElementById( - /** @type {string} */ (input.value) + /** @type {string} */ (input.value), ); if (!frame) { @@ -2090,23 +2090,23 @@ function main() { function initDark() { const preferredColorSchemeMatchMedia = window.matchMedia( - "(prefers-color-scheme: dark)" + "(prefers-color-scheme: dark)", ); const dark = signals.createSignal( - preferredColorSchemeMatchMedia.matches + preferredColorSchemeMatchMedia.matches, ); preferredColorSchemeMatchMedia.addEventListener( "change", ({ matches }) => { dark.set(matches); - } + }, ); return dark; } const dark = initDark(); const qrcode = signals.createSignal( - /** @type {string | null} */ (null) + /** @type {string | null} */ (null), ); function createLastHeightResource() { @@ -2117,7 +2117,7 @@ function main() { lastHeight.set(h); }, /** @satisfies {Height} */ (5), - "height" + "height", ); } fetchLastHeight(); @@ -2161,10 +2161,10 @@ function main() { const owner = signals.getOwner(); const chartOption = signals.createSignal( - /** @type {ChartOption | null} */ (null) + /** @type {ChartOption | null} */ (null), ); const simOption = signals.createSignal( - /** @type {SimulationOption | null} */ (null) + /** @type {SimulationOption | null} */ (null), ); let previousElement = /** @type {HTMLElement | undefined} */ ( @@ -2210,9 +2210,9 @@ function main() { webSockets, vecsResources, vecIdToIndexes, - }) - ) - ) + }), + ), + ), ); } firstTimeLoadingChart = false; @@ -2233,8 +2233,8 @@ function main() { vecsResources, option, vecIdToIndexes, - }) - ) + }), + ), ); } firstTimeLoadingTable = false; @@ -2258,9 +2258,9 @@ function main() { signals, utils, vecsResources, - }) - ) - ) + }), + ), + ), ); } firstTimeLoadingSimulation = false; @@ -2289,7 +2289,7 @@ function main() { createMobileSwitchEffect(); utils.dom.onFirstIntersection(elements.aside, () => - signals.runWithOwner(owner, initSelectedFrame) + signals.runWithOwner(owner, initSelectedFrame), ); } initSelected(); @@ -2369,7 +2369,7 @@ function main() { if (indexes?.length) { const maxIndex = Math.min( (order || indexes).length - 1, - minIndex + RESULTS_PER_PAGE - 1 + minIndex + RESULTS_PER_PAGE - 1, ); list = Array(maxIndex - minIndex + 1); @@ -2445,7 +2445,7 @@ function main() { haystack, needle, undefined, - infoThresh + infoThresh, ); if (!result?.[0]?.length || !result?.[1]) { @@ -2453,7 +2453,7 @@ function main() { haystack, needle, outOfOrder, - infoThresh + infoThresh, ); } @@ -2462,7 +2462,7 @@ function main() { haystack, needle, outOfOrder, - infoThresh + infoThresh, ); } @@ -2471,7 +2471,7 @@ function main() { haystack, needle, outOfOrder, - infoThresh + infoThresh, ); } @@ -2480,7 +2480,7 @@ function main() { haystack, needle, undefined, - infoThresh + infoThresh, ); } @@ -2489,7 +2489,7 @@ function main() { haystack, needle, outOfOrder, - infoThresh + infoThresh, ); } @@ -2572,7 +2572,7 @@ function main() { shareDiv.hidden = false; }); - }) + }), ); } initShare(); @@ -2596,7 +2596,7 @@ function main() { utils.storage.write(barWidthLocalStorageKey, String(width)); } else { elements.main.style.width = elements.style.getPropertyValue( - "--default-main-width" + "--default-main-width", ); utils.storage.remove(barWidthLocalStorageKey); } @@ -2633,9 +2633,9 @@ function main() { window.addEventListener("mouseleave", setResizeFalse); } initDesktopResizeBar(); - }) - ) - ) + }), + ), + ), ); } main(); diff --git a/websites/default/scripts/table.js b/websites/default/scripts/table.js index ff49b384b..2d876bcc5 100644 --- a/websites/default/scripts/table.js +++ b/websites/default/scripts/table.js @@ -411,15 +411,15 @@ function createSerializedIndexes() { /** @satisfies {VecId} */ ("monthindex"), /** @satisfies {VecId} */ ("opreturnindex"), /** @satisfies {VecId} */ ("outputindex"), - /** @satisfies {VecId} */ ("p2aindex"), - /** @satisfies {VecId} */ ("p2msindex"), - /** @satisfies {VecId} */ ("p2pk33index"), - /** @satisfies {VecId} */ ("p2pk65index"), - /** @satisfies {VecId} */ ("p2pkhindex"), - /** @satisfies {VecId} */ ("p2shindex"), - /** @satisfies {VecId} */ ("p2trindex"), - /** @satisfies {VecId} */ ("p2wpkhindex"), - /** @satisfies {VecId} */ ("p2wshindex"), + /** @satisfies {VecId} */ ("p2aaddressindex"), + /** @satisfies {VecId} */ ("p2msoutputindex"), + /** @satisfies {VecId} */ ("p2pk33addressindex"), + /** @satisfies {VecId} */ ("p2pk65addressindex"), + /** @satisfies {VecId} */ ("p2pkhaddressindex"), + /** @satisfies {VecId} */ ("p2shaddressindex"), + /** @satisfies {VecId} */ ("p2traddressindex"), + /** @satisfies {VecId} */ ("p2wpkhaddressindex"), + /** @satisfies {VecId} */ ("p2wshaddressindex"), /** @satisfies {VecId} */ ("quarterindex"), /** @satisfies {VecId} */ ("txindex"), /** @satisfies {VecId} */ ("unknownoutputindex"), @@ -460,23 +460,23 @@ function serializedIndexToIndex(serializedIndex) { return /** @satisfies {InputIndex} */ (6); case "outputindex": return /** @satisfies {OutputIndex} */ (9); - case "p2pk33index": + case "p2pk33addressindex": return /** @satisfies {P2PK33Index} */ (12); - case "p2pk65index": + case "p2pk65addressindex": return /** @satisfies {P2PK65Index} */ (13); - case "p2pkhindex": + case "p2pkhaddressindex": return /** @satisfies {P2PKHIndex} */ (14); - case "p2shindex": + case "p2shaddressindex": return /** @satisfies {P2SHIndex} */ (15); - case "p2trindex": + case "p2traddressindex": return /** @satisfies {P2TRIndex} */ (16); - case "p2wpkhindex": + case "p2wpkhaddressindex": return /** @satisfies {P2WPKHIndex} */ (17); - case "p2wshindex": + case "p2wshaddressindex": return /** @satisfies {P2WSHIndex} */ (18); - case "p2aindex": + case "p2aaddressindex": return /** @satisfies {P2AIndex} */ (10); - case "p2msindex": + case "p2msoutputindex": return /** @satisfies {P2MSIndex} */ (11); case "opreturnindex": return /** @satisfies {OpReturnIndex} */ (8); diff --git a/websites/default/scripts/vecid-to-indexes.js b/websites/default/scripts/vecid-to-indexes.js deleted file mode 100644 index 508d444fc..000000000 --- a/websites/default/scripts/vecid-to-indexes.js +++ /dev/null @@ -1,10862 +0,0 @@ -// -// File auto-generated, any modifications will be overwritten -// - -export const VERSION = "v0.0.66"; - -/** @typedef {0} DateIndex */ -/** @typedef {1} DecadeIndex */ -/** @typedef {2} DifficultyEpoch */ -/** @typedef {3} EmptyOutputIndex */ -/** @typedef {4} HalvingEpoch */ -/** @typedef {5} Height */ -/** @typedef {6} InputIndex */ -/** @typedef {7} MonthIndex */ -/** @typedef {8} OpReturnIndex */ -/** @typedef {9} OutputIndex */ -/** @typedef {10} P2AIndex */ -/** @typedef {11} P2MSIndex */ -/** @typedef {12} P2PK33Index */ -/** @typedef {13} P2PK65Index */ -/** @typedef {14} P2PKHIndex */ -/** @typedef {15} P2SHIndex */ -/** @typedef {16} P2TRIndex */ -/** @typedef {17} P2WPKHIndex */ -/** @typedef {18} P2WSHIndex */ -/** @typedef {19} QuarterIndex */ -/** @typedef {20} TxIndex */ -/** @typedef {21} UnknownOutputIndex */ -/** @typedef {22} WeekIndex */ -/** @typedef {23} YearIndex */ - -/** @typedef {DateIndex | DecadeIndex | DifficultyEpoch | EmptyOutputIndex | HalvingEpoch | Height | InputIndex | MonthIndex | OpReturnIndex | OutputIndex | P2AIndex | P2MSIndex | P2PK33Index | P2PK65Index | P2PKHIndex | P2SHIndex | P2TRIndex | P2WPKHIndex | P2WSHIndex | QuarterIndex | TxIndex | UnknownOutputIndex | WeekIndex | YearIndex} Index */ - -/** @typedef {ReturnType} VecIdToIndexes */ -/** @typedef {keyof VecIdToIndexes} VecId */ - -export function createVecIdToIndexes() { - return { - "0": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_adjusted_spent_output_profit_ratio": [0], - "0sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "0sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "0sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "0sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "0sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "0sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "0sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "0sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "0sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_satblocks_destroyed": [5], - "0sats_satdays_destroyed": [5], - "0sats_sell_side_risk_ratio": [0], - "0sats_spent_output_profit_ratio": [0], - "0sats_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "0sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "0sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "0sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "1": [0, 1, 2, 5, 7, 19, 22, 23], - "100": [0, 1, 2, 5, 7, 19, 22, 23], - "10y_cagr": [0, 1, 7, 19, 22, 23], - "10y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "10y_dca_cagr": [0, 1, 7, 19, 22, 23], - "10y_dca_returns": [0, 1, 7, 19, 22, 23], - "10y_dca_stack": [0, 1, 7, 19, 22, 23], - "10y_returns": [0, 1, 7, 19, 22, 23], - "13d_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "13d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "144d_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "144d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "1d_returns": [0, 1, 7, 19, 22, 23], - "1m_dca_avg_price": [0, 1, 7, 19, 22, 23], - "1m_dca_returns": [0, 1, 7, 19, 22, 23], - "1m_dca_stack": [0, 1, 7, 19, 22, 23], - "1m_returns": [0, 1, 7, 19, 22, 23], - "1m_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "1m_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "1w_dca_avg_price": [0, 1, 7, 19, 22, 23], - "1w_dca_returns": [0, 1, 7, 19, 22, 23], - "1w_dca_stack": [0, 1, 7, 19, 22, 23], - "1w_returns": [0, 1, 7, 19, 22, 23], - "1w_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "1w_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "1y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "1y_dca_returns": [0, 1, 7, 19, 22, 23], - "1y_dca_stack": [0, 1, 7, 19, 22, 23], - "1y_returns": [0, 1, 7, 19, 22, 23], - "1y_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "1y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "200d_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "200d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "200d_sma_x0_8": [0, 1, 7, 19, 22, 23], - "200d_sma_x2_4": [0, 1, 7, 19, 22, 23], - "200w_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "200w_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "21d_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "21d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "2y_cagr": [0, 1, 7, 19, 22, 23], - "2y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "2y_dca_cagr": [0, 1, 7, 19, 22, 23], - "2y_dca_returns": [0, 1, 7, 19, 22, 23], - "2y_dca_stack": [0, 1, 7, 19, 22, 23], - "2y_returns": [0, 1, 7, 19, 22, 23], - "2y_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "2y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "34d_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "34d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "3m_dca_avg_price": [0, 1, 7, 19, 22, 23], - "3m_dca_returns": [0, 1, 7, 19, 22, 23], - "3m_dca_stack": [0, 1, 7, 19, 22, 23], - "3m_returns": [0, 1, 7, 19, 22, 23], - "3y_cagr": [0, 1, 7, 19, 22, 23], - "3y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "3y_dca_cagr": [0, 1, 7, 19, 22, 23], - "3y_dca_returns": [0, 1, 7, 19, 22, 23], - "3y_dca_stack": [0, 1, 7, 19, 22, 23], - "3y_returns": [0, 1, 7, 19, 22, 23], - "4y_cagr": [0, 1, 7, 19, 22, 23], - "4y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "4y_dca_cagr": [0, 1, 7, 19, 22, 23], - "4y_dca_returns": [0, 1, 7, 19, 22, 23], - "4y_dca_stack": [0, 1, 7, 19, 22, 23], - "4y_returns": [0, 1, 7, 19, 22, 23], - "4y_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "4y_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "50": [0, 1, 2, 5, 7, 19, 22, 23], - "55d_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "55d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "5y_cagr": [0, 1, 7, 19, 22, 23], - "5y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "5y_dca_cagr": [0, 1, 7, 19, 22, 23], - "5y_dca_returns": [0, 1, 7, 19, 22, 23], - "5y_dca_stack": [0, 1, 7, 19, 22, 23], - "5y_returns": [0, 1, 7, 19, 22, 23], - "6m_dca_avg_price": [0, 1, 7, 19, 22, 23], - "6m_dca_returns": [0, 1, 7, 19, 22, 23], - "6m_dca_stack": [0, 1, 7, 19, 22, 23], - "6m_returns": [0, 1, 7, 19, 22, 23], - "6y_cagr": [0, 1, 7, 19, 22, 23], - "6y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "6y_dca_cagr": [0, 1, 7, 19, 22, 23], - "6y_dca_returns": [0, 1, 7, 19, 22, 23], - "6y_dca_stack": [0, 1, 7, 19, 22, 23], - "6y_returns": [0, 1, 7, 19, 22, 23], - "89d_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "89d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "8d_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p1": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_sd": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_sma": [0, 1, 7, 19, 22, 23], - "8d_sma_ratio_zscore": [0, 1, 7, 19, 22, 23], - "8y_cagr": [0, 1, 7, 19, 22, 23], - "8y_dca_avg_price": [0, 1, 7, 19, 22, 23], - "8y_dca_cagr": [0, 1, 7, 19, 22, 23], - "8y_dca_returns": [0, 1, 7, 19, 22, 23], - "8y_dca_stack": [0, 1, 7, 19, 22, 23], - "8y_returns": [0, 1, 7, 19, 22, 23], - "active_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "active_price": [0, 1, 2, 5, 7, 19, 22, 23], - "active_price_ratio": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "active_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "active_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "active_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "active_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "active_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "active_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "active_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "active_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "active_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "activity_to_vaultedness_ratio": [0, 1, 2, 5, 7, 19, 22, 23], - "adjusted_spent_output_profit_ratio": [0], - "adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "ath": [0, 1, 5, 7, 19, 22, 23], - "base_size": [20], - "block_count": [0, 1, 2, 5, 7, 19, 22, 23], - "block_interval_10p": [0], - "block_interval_25p": [0], - "block_interval_75p": [0], - "block_interval_90p": [0], - "block_interval_average": [0, 1, 2, 7, 19, 22, 23], - "block_interval_max": [0, 1, 2, 7, 19, 22, 23], - "block_interval_median": [0], - "block_interval_min": [0, 1, 2, 7, 19, 22, 23], - "block_size": [0, 1, 2, 7, 19, 22, 23], - "block_vbytes": [0, 1, 2, 7, 19, 22, 23], - "block_weight": [0, 1, 2, 7, 19, 22, 23], - "blockhash": [5], - "close": [0, 1, 2, 5, 7, 19, 22, 23], - "close_in_cents": [0, 5], - "close_in_sats": [0, 1, 2, 5, 7, 19, 22, 23], - "coinbase": [0, 1, 2, 5, 7, 19, 22, 23], - "coinbase_10p": [0], - "coinbase_25p": [0], - "coinbase_75p": [0], - "coinbase_90p": [0], - "coinbase_average": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "coinbase_in_btc_10p": [0], - "coinbase_in_btc_25p": [0], - "coinbase_in_btc_75p": [0], - "coinbase_in_btc_90p": [0], - "coinbase_in_btc_average": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_btc_max": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_btc_median": [0], - "coinbase_in_btc_min": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "coinbase_in_usd_10p": [0], - "coinbase_in_usd_25p": [0], - "coinbase_in_usd_75p": [0], - "coinbase_in_usd_90p": [0], - "coinbase_in_usd_average": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_usd_max": [0, 1, 2, 7, 19, 22, 23], - "coinbase_in_usd_median": [0], - "coinbase_in_usd_min": [0, 1, 2, 7, 19, 22, 23], - "coinbase_max": [0, 1, 2, 7, 19, 22, 23], - "coinbase_median": [0], - "coinbase_min": [0, 1, 2, 7, 19, 22, 23], - "coinblocks_created": [0, 1, 2, 5, 7, 19, 22, 23], - "coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "coinblocks_stored": [0, 1, 2, 5, 7, 19, 22, 23], - "coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cointime_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "cointime_price": [0, 1, 2, 5, 7, 19, 22, 23], - "cointime_price_ratio": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "cointime_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "cointime_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "cointime_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cointime_value_stored": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_0sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_0sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_0sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_0sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_block_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_block_size": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_block_vbytes": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_block_weight": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinbase": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinbase_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinbase_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinblocks_created": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coinblocks_stored": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_cointime_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_cointime_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_cointime_value_stored": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_empty_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_empty_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_empty_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_empty_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_emptyoutput_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_0_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_0_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_0_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_0_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_1_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_1_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_1_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_1_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_2_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_2_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_2_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_2_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_3_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_3_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_3_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_3_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_4_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_4_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_epoch_4_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_epoch_4_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_fee": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_fee_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_fee_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100_000sats_to_1_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100btc_to_1_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_100sats_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000_000sats_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000btc_to_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10_000sats_to_100_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10btc_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10sats_to_100sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_10y_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_to_end_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_15y_to_end_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_15y_to_end_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000_000sats_to_10_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000btc_to_10_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1_000sats_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1btc_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1d_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1m_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1sat_to_10sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1w_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_1y_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2m_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_2y_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3m_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_3y_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4m_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_4y_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5m_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_5y_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6m_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_6y_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_7y_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_from_8y_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_input_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_lth_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_lth_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_lth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_lth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_opreturn_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_output_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2a_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2a_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2a_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2a_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2ms_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2ms_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2ms_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2ms_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk33_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk33_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk33_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk33_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk65_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk65_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pk65_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pk65_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2pkh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pkh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2pkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2pkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2sh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2sh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2sh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2sh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2tr_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2tr_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2tr_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2tr_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2wpkh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2wpkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wpkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_p2wsh_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2wsh_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_p2wsh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_p2wsh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_start_to_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_start_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_start_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_sth_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_sth_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_sth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_sth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_subsidy": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_subsidy_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_subsidy_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_tx_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_tx_v1": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_tx_v2": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_tx_v3": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unclaimed_rewards": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unclaimed_rewards_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unclaimed_rewards_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_unknown_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_unknown_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_unknown_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknown_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_unknownoutput_count": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_100btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_15y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1btc_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1d_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1w_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6m_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_7y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change_relative_to_market_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_8y_net_realized_profit_and_loss_30d_change_relative_to_realized_cap": [0, 1, 7, 19, 22, 23], - "cumulative_up_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "cumulative_up_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "date": [0, 5], - "date_fixed": [5], - "dateindex": [0, 5], - "dateindex_count": [7, 22], - "days_since_ath": [0, 1, 7, 19, 22, 23], - "dca_class_2015_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2015_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2015_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2016_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2016_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2016_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2017_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2017_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2017_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2018_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2018_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2018_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2019_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2019_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2019_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2020_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2020_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2020_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2021_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2021_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2021_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2022_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2022_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2022_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2023_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2023_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2023_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2024_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2024_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2024_stack": [0, 1, 7, 19, 22, 23], - "dca_class_2025_avg_price": [0, 1, 7, 19, 22, 23], - "dca_class_2025_returns": [0, 1, 7, 19, 22, 23], - "dca_class_2025_stack": [0, 1, 7, 19, 22, 23], - "decadeindex": [1, 23], - "difficulty": [0, 1, 2, 5, 7, 19, 22, 23], - "difficultyepoch": [0, 1, 2, 5, 7, 19, 22, 23], - "drawdown": [0, 1, 5, 7, 19, 22, 23], - "empty_adjusted_spent_output_profit_ratio": [0], - "empty_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "empty_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "empty_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "empty_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "empty_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "empty_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "empty_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "empty_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "empty_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_satblocks_destroyed": [5], - "empty_satdays_destroyed": [5], - "empty_sell_side_risk_ratio": [0], - "empty_spent_output_profit_ratio": [0], - "empty_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_even": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "empty_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "empty_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "empty_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "empty_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "emptyoutput_count": [0, 1, 2, 5, 7, 19, 22, 23], - "emptyoutput_count_10p": [0], - "emptyoutput_count_25p": [0], - "emptyoutput_count_75p": [0], - "emptyoutput_count_90p": [0], - "emptyoutput_count_average": [0, 1, 2, 7, 19, 22, 23], - "emptyoutput_count_max": [0, 1, 2, 7, 19, 22, 23], - "emptyoutput_count_median": [0], - "emptyoutput_count_min": [0, 1, 2, 7, 19, 22, 23], - "emptyoutputindex": [3], - "epoch_0_adjusted_spent_output_profit_ratio": [0], - "epoch_0_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "epoch_0_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_satblocks_destroyed": [5], - "epoch_0_satdays_destroyed": [5], - "epoch_0_sell_side_risk_ratio": [0], - "epoch_0_spent_output_profit_ratio": [0], - "epoch_0_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_even": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_0_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_0_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_adjusted_spent_output_profit_ratio": [0], - "epoch_1_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "epoch_1_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_satblocks_destroyed": [5], - "epoch_1_satdays_destroyed": [5], - "epoch_1_sell_side_risk_ratio": [0], - "epoch_1_spent_output_profit_ratio": [0], - "epoch_1_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_even": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_1_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_1_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_adjusted_spent_output_profit_ratio": [0], - "epoch_2_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "epoch_2_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_satblocks_destroyed": [5], - "epoch_2_satdays_destroyed": [5], - "epoch_2_sell_side_risk_ratio": [0], - "epoch_2_spent_output_profit_ratio": [0], - "epoch_2_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_even": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_2_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_2_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_adjusted_spent_output_profit_ratio": [0], - "epoch_3_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "epoch_3_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_satblocks_destroyed": [5], - "epoch_3_satdays_destroyed": [5], - "epoch_3_sell_side_risk_ratio": [0], - "epoch_3_spent_output_profit_ratio": [0], - "epoch_3_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_even": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_3_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_3_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_adjusted_spent_output_profit_ratio": [0], - "epoch_4_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "epoch_4_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_satblocks_destroyed": [5], - "epoch_4_satdays_destroyed": [5], - "epoch_4_sell_side_risk_ratio": [0], - "epoch_4_spent_output_profit_ratio": [0], - "epoch_4_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_even": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "epoch_4_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch_4_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "exact_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "fee": [0, 1, 2, 5, 7, 19, 20, 22, 23], - "fee_10p": [5], - "fee_25p": [5], - "fee_75p": [5], - "fee_90p": [5], - "fee_average": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_btc": [0, 1, 2, 5, 7, 19, 20, 22, 23], - "fee_in_btc_10p": [5], - "fee_in_btc_25p": [5], - "fee_in_btc_75p": [5], - "fee_in_btc_90p": [5], - "fee_in_btc_average": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_btc_max": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_btc_median": [5], - "fee_in_btc_min": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_usd": [0, 1, 2, 5, 7, 19, 20, 22, 23], - "fee_in_usd_10p": [5], - "fee_in_usd_25p": [5], - "fee_in_usd_75p": [5], - "fee_in_usd_90p": [5], - "fee_in_usd_average": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_usd_max": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_in_usd_median": [5], - "fee_in_usd_min": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_max": [0, 1, 2, 5, 7, 19, 22, 23], - "fee_median": [5], - "fee_min": [0, 1, 2, 5, 7, 19, 22, 23], - "feerate": [20], - "feerate_10p": [5], - "feerate_25p": [5], - "feerate_75p": [5], - "feerate_90p": [5], - "feerate_average": [0, 1, 2, 5, 7, 19, 22, 23], - "feerate_max": [0, 1, 2, 5, 7, 19, 22, 23], - "feerate_median": [5], - "feerate_min": [0, 1, 2, 5, 7, 19, 22, 23], - "first_dateindex": [7, 22], - "first_emptyoutputindex": [5], - "first_height": [0, 2, 4], - "first_inputindex": [5, 20], - "first_monthindex": [19, 23], - "first_opreturnindex": [5], - "first_outputindex": [5, 20], - "first_p2aindex": [5], - "first_p2msindex": [5], - "first_p2pk33index": [5], - "first_p2pk65index": [5], - "first_p2pkhindex": [5], - "first_p2shindex": [5], - "first_p2trindex": [5], - "first_p2wpkhindex": [5], - "first_p2wshindex": [5], - "first_txindex": [5], - "first_unknownoutputindex": [5], - "first_yearindex": [1], - "from_100_000btc_adjusted_spent_output_profit_ratio": [0], - "from_100_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_satblocks_destroyed": [5], - "from_100_000btc_satdays_destroyed": [5], - "from_100_000btc_sell_side_risk_ratio": [0], - "from_100_000btc_spent_output_profit_ratio": [0], - "from_100_000btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_adjusted_spent_output_profit_ratio": [0], - "from_100_000sats_to_1_000_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_satblocks_destroyed": [5], - "from_100_000sats_to_1_000_000sats_satdays_destroyed": [5], - "from_100_000sats_to_1_000_000sats_sell_side_risk_ratio": [0], - "from_100_000sats_to_1_000_000sats_spent_output_profit_ratio": [0], - "from_100_000sats_to_1_000_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100_000sats_to_1_000_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_adjusted_spent_output_profit_ratio": [0], - "from_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_satblocks_destroyed": [5], - "from_100btc_satdays_destroyed": [5], - "from_100btc_sell_side_risk_ratio": [0], - "from_100btc_spent_output_profit_ratio": [0], - "from_100btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_adjusted_spent_output_profit_ratio": [0], - "from_100btc_to_1_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_satblocks_destroyed": [5], - "from_100btc_to_1_000btc_satdays_destroyed": [5], - "from_100btc_to_1_000btc_sell_side_risk_ratio": [0], - "from_100btc_to_1_000btc_spent_output_profit_ratio": [0], - "from_100btc_to_1_000btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_to_1_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_adjusted_spent_output_profit_ratio": [0], - "from_100sats_to_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_satblocks_destroyed": [5], - "from_100sats_to_1_000sats_satdays_destroyed": [5], - "from_100sats_to_1_000sats_sell_side_risk_ratio": [0], - "from_100sats_to_1_000sats_spent_output_profit_ratio": [0], - "from_100sats_to_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_100sats_to_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_adjusted_spent_output_profit_ratio": [0], - "from_10_000_000sats_to_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_satblocks_destroyed": [5], - "from_10_000_000sats_to_1btc_satdays_destroyed": [5], - "from_10_000_000sats_to_1btc_sell_side_risk_ratio": [0], - "from_10_000_000sats_to_1btc_spent_output_profit_ratio": [0], - "from_10_000_000sats_to_1btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000_000sats_to_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_adjusted_spent_output_profit_ratio": [0], - "from_10_000btc_to_100_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_satblocks_destroyed": [5], - "from_10_000btc_to_100_000btc_satdays_destroyed": [5], - "from_10_000btc_to_100_000btc_sell_side_risk_ratio": [0], - "from_10_000btc_to_100_000btc_spent_output_profit_ratio": [0], - "from_10_000btc_to_100_000btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000btc_to_100_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_adjusted_spent_output_profit_ratio": [0], - "from_10_000sats_to_100_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_satblocks_destroyed": [5], - "from_10_000sats_to_100_000sats_satdays_destroyed": [5], - "from_10_000sats_to_100_000sats_sell_side_risk_ratio": [0], - "from_10_000sats_to_100_000sats_spent_output_profit_ratio": [0], - "from_10_000sats_to_100_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10_000sats_to_100_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_adjusted_spent_output_profit_ratio": [0], - "from_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_satblocks_destroyed": [5], - "from_10btc_satdays_destroyed": [5], - "from_10btc_sell_side_risk_ratio": [0], - "from_10btc_spent_output_profit_ratio": [0], - "from_10btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_adjusted_spent_output_profit_ratio": [0], - "from_10btc_to_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_satblocks_destroyed": [5], - "from_10btc_to_100btc_satdays_destroyed": [5], - "from_10btc_to_100btc_sell_side_risk_ratio": [0], - "from_10btc_to_100btc_spent_output_profit_ratio": [0], - "from_10btc_to_100btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_to_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_adjusted_spent_output_profit_ratio": [0], - "from_10sats_to_100sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_satblocks_destroyed": [5], - "from_10sats_to_100sats_satdays_destroyed": [5], - "from_10sats_to_100sats_sell_side_risk_ratio": [0], - "from_10sats_to_100sats_spent_output_profit_ratio": [0], - "from_10sats_to_100sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10sats_to_100sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_adjusted_spent_output_profit_ratio": [0], - "from_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_satblocks_destroyed": [5], - "from_10y_satdays_destroyed": [5], - "from_10y_sell_side_risk_ratio": [0], - "from_10y_spent_output_profit_ratio": [0], - "from_10y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_adjusted_spent_output_profit_ratio": [0], - "from_10y_to_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_10y_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_satblocks_destroyed": [5], - "from_10y_to_15y_satdays_destroyed": [5], - "from_10y_to_15y_sell_side_risk_ratio": [0], - "from_10y_to_15y_spent_output_profit_ratio": [0], - "from_10y_to_15y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10y_to_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_to_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_adjusted_spent_output_profit_ratio": [0], - "from_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_satblocks_destroyed": [5], - "from_15y_satdays_destroyed": [5], - "from_15y_sell_side_risk_ratio": [0], - "from_15y_spent_output_profit_ratio": [0], - "from_15y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_adjusted_spent_output_profit_ratio": [0], - "from_15y_to_end_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_15y_to_end_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_satblocks_destroyed": [5], - "from_15y_to_end_satdays_destroyed": [5], - "from_15y_to_end_sell_side_risk_ratio": [0], - "from_15y_to_end_spent_output_profit_ratio": [0], - "from_15y_to_end_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_15y_to_end_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_to_end_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_adjusted_spent_output_profit_ratio": [0], - "from_1_000_000sats_to_10_000_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_satblocks_destroyed": [5], - "from_1_000_000sats_to_10_000_000sats_satdays_destroyed": [5], - "from_1_000_000sats_to_10_000_000sats_sell_side_risk_ratio": [0], - "from_1_000_000sats_to_10_000_000sats_spent_output_profit_ratio": [0], - "from_1_000_000sats_to_10_000_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000_000sats_to_10_000_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_adjusted_spent_output_profit_ratio": [0], - "from_1_000btc_to_10_000btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_satblocks_destroyed": [5], - "from_1_000btc_to_10_000btc_satdays_destroyed": [5], - "from_1_000btc_to_10_000btc_sell_side_risk_ratio": [0], - "from_1_000btc_to_10_000btc_spent_output_profit_ratio": [0], - "from_1_000btc_to_10_000btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000btc_to_10_000btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_adjusted_spent_output_profit_ratio": [0], - "from_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_satblocks_destroyed": [5], - "from_1_000sats_satdays_destroyed": [5], - "from_1_000sats_sell_side_risk_ratio": [0], - "from_1_000sats_spent_output_profit_ratio": [0], - "from_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_adjusted_spent_output_profit_ratio": [0], - "from_1_000sats_to_10_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_satblocks_destroyed": [5], - "from_1_000sats_to_10_000sats_satdays_destroyed": [5], - "from_1_000sats_to_10_000sats_sell_side_risk_ratio": [0], - "from_1_000sats_to_10_000sats_spent_output_profit_ratio": [0], - "from_1_000sats_to_10_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_to_10_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_adjusted_spent_output_profit_ratio": [0], - "from_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_satblocks_destroyed": [5], - "from_1btc_satdays_destroyed": [5], - "from_1btc_sell_side_risk_ratio": [0], - "from_1btc_spent_output_profit_ratio": [0], - "from_1btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_adjusted_spent_output_profit_ratio": [0], - "from_1btc_to_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_satblocks_destroyed": [5], - "from_1btc_to_10btc_satdays_destroyed": [5], - "from_1btc_to_10btc_sell_side_risk_ratio": [0], - "from_1btc_to_10btc_spent_output_profit_ratio": [0], - "from_1btc_to_10btc_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_to_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_adjusted_spent_output_profit_ratio": [0], - "from_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_satblocks_destroyed": [5], - "from_1d_satdays_destroyed": [5], - "from_1d_sell_side_risk_ratio": [0], - "from_1d_spent_output_profit_ratio": [0], - "from_1d_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_adjusted_spent_output_profit_ratio": [0], - "from_1d_to_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1d_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_satblocks_destroyed": [5], - "from_1d_to_1w_satdays_destroyed": [5], - "from_1d_to_1w_sell_side_risk_ratio": [0], - "from_1d_to_1w_spent_output_profit_ratio": [0], - "from_1d_to_1w_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1d_to_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_to_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_adjusted_spent_output_profit_ratio": [0], - "from_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_satblocks_destroyed": [5], - "from_1m_satdays_destroyed": [5], - "from_1m_sell_side_risk_ratio": [0], - "from_1m_spent_output_profit_ratio": [0], - "from_1m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_adjusted_spent_output_profit_ratio": [0], - "from_1m_to_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1m_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_satblocks_destroyed": [5], - "from_1m_to_2m_satdays_destroyed": [5], - "from_1m_to_2m_sell_side_risk_ratio": [0], - "from_1m_to_2m_spent_output_profit_ratio": [0], - "from_1m_to_2m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1m_to_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_to_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_adjusted_spent_output_profit_ratio": [0], - "from_1sat_to_10sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_satblocks_destroyed": [5], - "from_1sat_to_10sats_satdays_destroyed": [5], - "from_1sat_to_10sats_sell_side_risk_ratio": [0], - "from_1sat_to_10sats_spent_output_profit_ratio": [0], - "from_1sat_to_10sats_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1sat_to_10sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_adjusted_spent_output_profit_ratio": [0], - "from_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_satblocks_destroyed": [5], - "from_1w_satdays_destroyed": [5], - "from_1w_sell_side_risk_ratio": [0], - "from_1w_spent_output_profit_ratio": [0], - "from_1w_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_adjusted_spent_output_profit_ratio": [0], - "from_1w_to_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1w_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_satblocks_destroyed": [5], - "from_1w_to_1m_satdays_destroyed": [5], - "from_1w_to_1m_sell_side_risk_ratio": [0], - "from_1w_to_1m_spent_output_profit_ratio": [0], - "from_1w_to_1m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1w_to_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_to_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_adjusted_spent_output_profit_ratio": [0], - "from_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_satblocks_destroyed": [5], - "from_1y_satdays_destroyed": [5], - "from_1y_sell_side_risk_ratio": [0], - "from_1y_spent_output_profit_ratio": [0], - "from_1y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_adjusted_spent_output_profit_ratio": [0], - "from_1y_to_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_1y_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_satblocks_destroyed": [5], - "from_1y_to_2y_satdays_destroyed": [5], - "from_1y_to_2y_sell_side_risk_ratio": [0], - "from_1y_to_2y_spent_output_profit_ratio": [0], - "from_1y_to_2y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1y_to_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_to_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_adjusted_spent_output_profit_ratio": [0], - "from_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_satblocks_destroyed": [5], - "from_2m_satdays_destroyed": [5], - "from_2m_sell_side_risk_ratio": [0], - "from_2m_spent_output_profit_ratio": [0], - "from_2m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_adjusted_spent_output_profit_ratio": [0], - "from_2m_to_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_2m_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_satblocks_destroyed": [5], - "from_2m_to_3m_satdays_destroyed": [5], - "from_2m_to_3m_sell_side_risk_ratio": [0], - "from_2m_to_3m_spent_output_profit_ratio": [0], - "from_2m_to_3m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2m_to_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_to_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_adjusted_spent_output_profit_ratio": [0], - "from_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_satblocks_destroyed": [5], - "from_2y_satdays_destroyed": [5], - "from_2y_sell_side_risk_ratio": [0], - "from_2y_spent_output_profit_ratio": [0], - "from_2y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_adjusted_spent_output_profit_ratio": [0], - "from_2y_to_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_2y_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_satblocks_destroyed": [5], - "from_2y_to_3y_satdays_destroyed": [5], - "from_2y_to_3y_sell_side_risk_ratio": [0], - "from_2y_to_3y_spent_output_profit_ratio": [0], - "from_2y_to_3y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2y_to_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_to_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_adjusted_spent_output_profit_ratio": [0], - "from_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_satblocks_destroyed": [5], - "from_3m_satdays_destroyed": [5], - "from_3m_sell_side_risk_ratio": [0], - "from_3m_spent_output_profit_ratio": [0], - "from_3m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_adjusted_spent_output_profit_ratio": [0], - "from_3m_to_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_3m_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_satblocks_destroyed": [5], - "from_3m_to_4m_satdays_destroyed": [5], - "from_3m_to_4m_sell_side_risk_ratio": [0], - "from_3m_to_4m_spent_output_profit_ratio": [0], - "from_3m_to_4m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3m_to_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_to_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_adjusted_spent_output_profit_ratio": [0], - "from_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_satblocks_destroyed": [5], - "from_3y_satdays_destroyed": [5], - "from_3y_sell_side_risk_ratio": [0], - "from_3y_spent_output_profit_ratio": [0], - "from_3y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_adjusted_spent_output_profit_ratio": [0], - "from_3y_to_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_3y_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_satblocks_destroyed": [5], - "from_3y_to_4y_satdays_destroyed": [5], - "from_3y_to_4y_sell_side_risk_ratio": [0], - "from_3y_to_4y_spent_output_profit_ratio": [0], - "from_3y_to_4y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3y_to_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_to_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_adjusted_spent_output_profit_ratio": [0], - "from_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_satblocks_destroyed": [5], - "from_4m_satdays_destroyed": [5], - "from_4m_sell_side_risk_ratio": [0], - "from_4m_spent_output_profit_ratio": [0], - "from_4m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_adjusted_spent_output_profit_ratio": [0], - "from_4m_to_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_4m_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_satblocks_destroyed": [5], - "from_4m_to_5m_satdays_destroyed": [5], - "from_4m_to_5m_sell_side_risk_ratio": [0], - "from_4m_to_5m_spent_output_profit_ratio": [0], - "from_4m_to_5m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4m_to_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_to_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_adjusted_spent_output_profit_ratio": [0], - "from_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_satblocks_destroyed": [5], - "from_4y_satdays_destroyed": [5], - "from_4y_sell_side_risk_ratio": [0], - "from_4y_spent_output_profit_ratio": [0], - "from_4y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_adjusted_spent_output_profit_ratio": [0], - "from_4y_to_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_4y_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_satblocks_destroyed": [5], - "from_4y_to_5y_satdays_destroyed": [5], - "from_4y_to_5y_sell_side_risk_ratio": [0], - "from_4y_to_5y_spent_output_profit_ratio": [0], - "from_4y_to_5y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4y_to_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_to_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_adjusted_spent_output_profit_ratio": [0], - "from_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_satblocks_destroyed": [5], - "from_5m_satdays_destroyed": [5], - "from_5m_sell_side_risk_ratio": [0], - "from_5m_spent_output_profit_ratio": [0], - "from_5m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_adjusted_spent_output_profit_ratio": [0], - "from_5m_to_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_5m_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_satblocks_destroyed": [5], - "from_5m_to_6m_satdays_destroyed": [5], - "from_5m_to_6m_sell_side_risk_ratio": [0], - "from_5m_to_6m_spent_output_profit_ratio": [0], - "from_5m_to_6m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5m_to_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_to_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_adjusted_spent_output_profit_ratio": [0], - "from_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_satblocks_destroyed": [5], - "from_5y_satdays_destroyed": [5], - "from_5y_sell_side_risk_ratio": [0], - "from_5y_spent_output_profit_ratio": [0], - "from_5y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_adjusted_spent_output_profit_ratio": [0], - "from_5y_to_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_5y_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_satblocks_destroyed": [5], - "from_5y_to_6y_satdays_destroyed": [5], - "from_5y_to_6y_sell_side_risk_ratio": [0], - "from_5y_to_6y_spent_output_profit_ratio": [0], - "from_5y_to_6y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5y_to_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_to_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_adjusted_spent_output_profit_ratio": [0], - "from_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_satblocks_destroyed": [5], - "from_6m_satdays_destroyed": [5], - "from_6m_sell_side_risk_ratio": [0], - "from_6m_spent_output_profit_ratio": [0], - "from_6m_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_adjusted_spent_output_profit_ratio": [0], - "from_6m_to_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_6m_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_satblocks_destroyed": [5], - "from_6m_to_1y_satdays_destroyed": [5], - "from_6m_to_1y_sell_side_risk_ratio": [0], - "from_6m_to_1y_spent_output_profit_ratio": [0], - "from_6m_to_1y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6m_to_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_to_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_adjusted_spent_output_profit_ratio": [0], - "from_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_satblocks_destroyed": [5], - "from_6y_satdays_destroyed": [5], - "from_6y_sell_side_risk_ratio": [0], - "from_6y_spent_output_profit_ratio": [0], - "from_6y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_adjusted_spent_output_profit_ratio": [0], - "from_6y_to_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_6y_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_satblocks_destroyed": [5], - "from_6y_to_7y_satdays_destroyed": [5], - "from_6y_to_7y_sell_side_risk_ratio": [0], - "from_6y_to_7y_spent_output_profit_ratio": [0], - "from_6y_to_7y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6y_to_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_to_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_adjusted_spent_output_profit_ratio": [0], - "from_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_satblocks_destroyed": [5], - "from_7y_satdays_destroyed": [5], - "from_7y_sell_side_risk_ratio": [0], - "from_7y_spent_output_profit_ratio": [0], - "from_7y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_adjusted_spent_output_profit_ratio": [0], - "from_7y_to_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_7y_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_satblocks_destroyed": [5], - "from_7y_to_8y_satdays_destroyed": [5], - "from_7y_to_8y_sell_side_risk_ratio": [0], - "from_7y_to_8y_spent_output_profit_ratio": [0], - "from_7y_to_8y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_7y_to_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_to_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_adjusted_spent_output_profit_ratio": [0], - "from_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_satblocks_destroyed": [5], - "from_8y_satdays_destroyed": [5], - "from_8y_sell_side_risk_ratio": [0], - "from_8y_spent_output_profit_ratio": [0], - "from_8y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_adjusted_spent_output_profit_ratio": [0], - "from_8y_to_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "from_8y_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_satblocks_destroyed": [5], - "from_8y_to_10y_satdays_destroyed": [5], - "from_8y_to_10y_sell_side_risk_ratio": [0], - "from_8y_to_10y_spent_output_profit_ratio": [0], - "from_8y_to_10y_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_8y_to_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_to_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "from_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "from_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "from_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "halved_supply": [0, 1, 5, 7, 19, 22, 23], - "halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "halvingepoch": [0, 1, 4, 5, 7, 19, 22, 23], - "height": [5, 20], - "height_count": [0, 2], - "high": [0, 1, 2, 5, 7, 19, 22, 23], - "high_in_cents": [0, 5], - "high_in_sats": [0, 1, 2, 5, 7, 19, 22, 23], - "input_count": [0, 1, 2, 5, 7, 19, 20, 22, 23], - "input_count_10p": [5], - "input_count_25p": [5], - "input_count_75p": [5], - "input_count_90p": [5], - "input_count_average": [0, 1, 2, 5, 7, 19, 22, 23], - "input_count_max": [0, 1, 2, 5, 7, 19, 22, 23], - "input_count_median": [5], - "input_count_min": [0, 1, 2, 5, 7, 19, 22, 23], - "input_value": [20], - "inputindex": [6], - "interval": [5], - "investor_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "is_coinbase": [20], - "is_explicitly_rbf": [20], - "liveliness": [0, 1, 2, 5, 7, 19, 22, 23], - "low": [0, 1, 2, 5, 7, 19, 22, 23], - "low_in_cents": [0, 5], - "low_in_sats": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_adjusted_spent_output_profit_ratio": [0], - "lth_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "lth_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "lth_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "lth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "lth_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "lth_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "lth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "lth_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "lth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_satblocks_destroyed": [5], - "lth_satdays_destroyed": [5], - "lth_sell_side_risk_ratio": [0], - "lth_spent_output_profit_ratio": [0], - "lth_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_even": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "lth_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "lth_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "lth_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "lth_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "marketcap": [0, 1, 5, 7, 19, 22, 23], - "max_days_between_aths": [0, 1, 7, 19, 22, 23], - "max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "max_years_between_aths": [0, 1, 7, 19, 22, 23], - "min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "monthindex": [0, 7], - "monthindex_count": [19, 23], - "negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "ohlc": [0, 1, 2, 5, 7, 19, 22, 23], - "ohlc_in_cents": [0, 5], - "ohlc_in_sats": [0, 1, 2, 5, 7, 19, 22, 23], - "open": [0, 1, 2, 5, 7, 19, 22, 23], - "open_in_cents": [0, 5], - "open_in_sats": [0, 1, 2, 5, 7, 19, 22, 23], - "opreturn_count": [0, 1, 2, 5, 7, 19, 22, 23], - "opreturn_count_10p": [0], - "opreturn_count_25p": [0], - "opreturn_count_75p": [0], - "opreturn_count_90p": [0], - "opreturn_count_average": [0, 1, 2, 7, 19, 22, 23], - "opreturn_count_max": [0, 1, 2, 7, 19, 22, 23], - "opreturn_count_median": [0], - "opreturn_count_min": [0, 1, 2, 7, 19, 22, 23], - "opreturn_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "opreturn_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "opreturn_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "opreturnindex": [8], - "output_count": [0, 1, 2, 5, 7, 19, 20, 22, 23], - "output_count_10p": [5], - "output_count_25p": [5], - "output_count_75p": [5], - "output_count_90p": [5], - "output_count_average": [0, 1, 2, 5, 7, 19, 22, 23], - "output_count_max": [0, 1, 2, 5, 7, 19, 22, 23], - "output_count_median": [5], - "output_count_min": [0, 1, 2, 5, 7, 19, 22, 23], - "output_value": [20], - "outputindex": [6, 9], - "outputtype": [9], - "outputtypeindex": [9], - "p2a_adjusted_spent_output_profit_ratio": [0], - "p2a_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_count_10p": [0], - "p2a_count_25p": [0], - "p2a_count_75p": [0], - "p2a_count_90p": [0], - "p2a_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2a_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2a_count_median": [0], - "p2a_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2a_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2a_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2a_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2a_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2a_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2a_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2a_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2a_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2a_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_satblocks_destroyed": [5], - "p2a_satdays_destroyed": [5], - "p2a_sell_side_risk_ratio": [0], - "p2a_spent_output_profit_ratio": [0], - "p2a_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2a_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2a_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2a_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2abytes": [10], - "p2aindex": [10], - "p2ms_adjusted_spent_output_profit_ratio": [0], - "p2ms_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_count_10p": [0], - "p2ms_count_25p": [0], - "p2ms_count_75p": [0], - "p2ms_count_90p": [0], - "p2ms_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2ms_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2ms_count_median": [0], - "p2ms_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2ms_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2ms_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2ms_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2ms_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2ms_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2ms_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2ms_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2ms_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2ms_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_satblocks_destroyed": [5], - "p2ms_satdays_destroyed": [5], - "p2ms_sell_side_risk_ratio": [0], - "p2ms_spent_output_profit_ratio": [0], - "p2ms_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2ms_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2ms_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2ms_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2msindex": [11], - "p2pk33_adjusted_spent_output_profit_ratio": [0], - "p2pk33_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_count_10p": [0], - "p2pk33_count_25p": [0], - "p2pk33_count_75p": [0], - "p2pk33_count_90p": [0], - "p2pk33_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2pk33_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2pk33_count_median": [0], - "p2pk33_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2pk33_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2pk33_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_satblocks_destroyed": [5], - "p2pk33_satdays_destroyed": [5], - "p2pk33_sell_side_risk_ratio": [0], - "p2pk33_spent_output_profit_ratio": [0], - "p2pk33_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pk33_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33bytes": [12], - "p2pk33index": [12], - "p2pk65_adjusted_spent_output_profit_ratio": [0], - "p2pk65_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_count_10p": [0], - "p2pk65_count_25p": [0], - "p2pk65_count_75p": [0], - "p2pk65_count_90p": [0], - "p2pk65_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2pk65_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2pk65_count_median": [0], - "p2pk65_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2pk65_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2pk65_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_satblocks_destroyed": [5], - "p2pk65_satdays_destroyed": [5], - "p2pk65_sell_side_risk_ratio": [0], - "p2pk65_spent_output_profit_ratio": [0], - "p2pk65_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pk65_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65bytes": [13], - "p2pk65index": [13], - "p2pkh_adjusted_spent_output_profit_ratio": [0], - "p2pkh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_count_10p": [0], - "p2pkh_count_25p": [0], - "p2pkh_count_75p": [0], - "p2pkh_count_90p": [0], - "p2pkh_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2pkh_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2pkh_count_median": [0], - "p2pkh_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2pkh_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2pkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_satblocks_destroyed": [5], - "p2pkh_satdays_destroyed": [5], - "p2pkh_sell_side_risk_ratio": [0], - "p2pkh_spent_output_profit_ratio": [0], - "p2pkh_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2pkh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkhbytes": [14], - "p2pkhindex": [14], - "p2sh_adjusted_spent_output_profit_ratio": [0], - "p2sh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_count_10p": [0], - "p2sh_count_25p": [0], - "p2sh_count_75p": [0], - "p2sh_count_90p": [0], - "p2sh_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2sh_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2sh_count_median": [0], - "p2sh_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2sh_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2sh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2sh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2sh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2sh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2sh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2sh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2sh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2sh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_satblocks_destroyed": [5], - "p2sh_satdays_destroyed": [5], - "p2sh_sell_side_risk_ratio": [0], - "p2sh_spent_output_profit_ratio": [0], - "p2sh_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2sh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2sh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2sh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2shbytes": [15], - "p2shindex": [15], - "p2tr_adjusted_spent_output_profit_ratio": [0], - "p2tr_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_count_10p": [0], - "p2tr_count_25p": [0], - "p2tr_count_75p": [0], - "p2tr_count_90p": [0], - "p2tr_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2tr_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2tr_count_median": [0], - "p2tr_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2tr_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2tr_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2tr_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2tr_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2tr_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2tr_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2tr_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2tr_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2tr_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_satblocks_destroyed": [5], - "p2tr_satdays_destroyed": [5], - "p2tr_sell_side_risk_ratio": [0], - "p2tr_spent_output_profit_ratio": [0], - "p2tr_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2tr_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2tr_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2tr_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2trbytes": [16], - "p2trindex": [16], - "p2wpkh_adjusted_spent_output_profit_ratio": [0], - "p2wpkh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_count_10p": [0], - "p2wpkh_count_25p": [0], - "p2wpkh_count_75p": [0], - "p2wpkh_count_90p": [0], - "p2wpkh_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2wpkh_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2wpkh_count_median": [0], - "p2wpkh_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2wpkh_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2wpkh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_satblocks_destroyed": [5], - "p2wpkh_satdays_destroyed": [5], - "p2wpkh_sell_side_risk_ratio": [0], - "p2wpkh_spent_output_profit_ratio": [0], - "p2wpkh_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkhbytes": [17], - "p2wpkhindex": [17], - "p2wsh_adjusted_spent_output_profit_ratio": [0], - "p2wsh_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_count_10p": [0], - "p2wsh_count_25p": [0], - "p2wsh_count_75p": [0], - "p2wsh_count_90p": [0], - "p2wsh_count_average": [0, 1, 2, 7, 19, 22, 23], - "p2wsh_count_max": [0, 1, 2, 7, 19, 22, 23], - "p2wsh_count_median": [0], - "p2wsh_count_min": [0, 1, 2, 7, 19, 22, 23], - "p2wsh_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "p2wsh_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_satblocks_destroyed": [5], - "p2wsh_satdays_destroyed": [5], - "p2wsh_sell_side_risk_ratio": [0], - "p2wsh_spent_output_profit_ratio": [0], - "p2wsh_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_even": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "p2wsh_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wshbytes": [18], - "p2wshindex": [18], - "price_10y_ago": [0, 1, 7, 19, 22, 23], - "price_1d_ago": [0, 1, 7, 19, 22, 23], - "price_1m_ago": [0, 1, 7, 19, 22, 23], - "price_1w_ago": [0, 1, 7, 19, 22, 23], - "price_1y_ago": [0, 1, 7, 19, 22, 23], - "price_2y_ago": [0, 1, 7, 19, 22, 23], - "price_3m_ago": [0, 1, 7, 19, 22, 23], - "price_3y_ago": [0, 1, 7, 19, 22, 23], - "price_4y_ago": [0, 1, 7, 19, 22, 23], - "price_5y_ago": [0, 1, 7, 19, 22, 23], - "price_6m_ago": [0, 1, 7, 19, 22, 23], - "price_6y_ago": [0, 1, 7, 19, 22, 23], - "price_8y_ago": [0, 1, 7, 19, 22, 23], - "quarterindex": [7, 19], - "rawlocktime": [20], - "realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_price_ratio": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "satblocks_destroyed": [5], - "satdays_destroyed": [5], - "sell_side_risk_ratio": [0], - "spent_output_profit_ratio": [0], - "start_to_1d_adjusted_spent_output_profit_ratio": [0], - "start_to_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "start_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_satblocks_destroyed": [5], - "start_to_1d_satdays_destroyed": [5], - "start_to_1d_sell_side_risk_ratio": [0], - "start_to_1d_spent_output_profit_ratio": [0], - "start_to_1d_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_even": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "start_to_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "start_to_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_adjusted_spent_output_profit_ratio": [0], - "sth_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "sth_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "sth_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "sth_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "sth_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "sth_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "sth_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "sth_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "sth_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_satblocks_destroyed": [5], - "sth_satdays_destroyed": [5], - "sth_sell_side_risk_ratio": [0], - "sth_spent_output_profit_ratio": [0], - "sth_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_even": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "sth_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "sth_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "sth_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "sth_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "subsidy": [0, 1, 2, 5, 7, 19, 22, 23], - "subsidy_10p": [0], - "subsidy_25p": [0], - "subsidy_75p": [0], - "subsidy_90p": [0], - "subsidy_average": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "subsidy_in_btc_10p": [0], - "subsidy_in_btc_25p": [0], - "subsidy_in_btc_75p": [0], - "subsidy_in_btc_90p": [0], - "subsidy_in_btc_average": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_btc_max": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_btc_median": [0], - "subsidy_in_btc_min": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "subsidy_in_usd_10p": [0], - "subsidy_in_usd_25p": [0], - "subsidy_in_usd_75p": [0], - "subsidy_in_usd_90p": [0], - "subsidy_in_usd_average": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_usd_max": [0, 1, 2, 7, 19, 22, 23], - "subsidy_in_usd_median": [0], - "subsidy_in_usd_min": [0, 1, 2, 7, 19, 22, 23], - "subsidy_max": [0, 1, 2, 7, 19, 22, 23], - "subsidy_median": [0], - "subsidy_min": [0, 1, 2, 7, 19, 22, 23], - "supply": [0, 1, 5, 7, 19, 22, 23], - "supply_even": [0, 1, 5, 7, 19, 22, 23], - "supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "thermo_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "timestamp": [0, 1, 2, 4, 5, 7, 19, 22, 23], - "timestamp_fixed": [5], - "total_size": [5, 20], - "true_market_mean": [0, 1, 2, 5, 7, 19, 22, 23], - "true_market_mean_ratio": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p1": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_sd": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_sma": [0, 1, 7, 19, 22, 23], - "true_market_mean_ratio_zscore": [0, 1, 7, 19, 22, 23], - "tx_count": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_count_10p": [0], - "tx_count_25p": [0], - "tx_count_75p": [0], - "tx_count_90p": [0], - "tx_count_average": [0, 1, 2, 7, 19, 22, 23], - "tx_count_max": [0, 1, 2, 7, 19, 22, 23], - "tx_count_median": [0], - "tx_count_min": [0, 1, 2, 7, 19, 22, 23], - "tx_v1": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_v2": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_v3": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_vsize_10p": [5], - "tx_vsize_25p": [5], - "tx_vsize_75p": [5], - "tx_vsize_90p": [5], - "tx_vsize_average": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_vsize_max": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_vsize_median": [5], - "tx_vsize_min": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_weight_10p": [5], - "tx_weight_25p": [5], - "tx_weight_75p": [5], - "tx_weight_90p": [5], - "tx_weight_average": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_weight_max": [0, 1, 2, 5, 7, 19, 22, 23], - "tx_weight_median": [5], - "tx_weight_min": [0, 1, 2, 5, 7, 19, 22, 23], - "txid": [20], - "txindex": [3, 8, 9, 11, 20, 21], - "txindex_count": [5], - "txversion": [20], - "unclaimed_rewards": [0, 1, 2, 5, 7, 19, 22, 23], - "unclaimed_rewards_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "unclaimed_rewards_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_adjusted_spent_output_profit_ratio": [0], - "unknown_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "unknown_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "unknown_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "unknown_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "unknown_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "unknown_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "unknown_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "unknown_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "unknown_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_satblocks_destroyed": [5], - "unknown_satdays_destroyed": [5], - "unknown_sell_side_risk_ratio": [0], - "unknown_spent_output_profit_ratio": [0], - "unknown_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_even": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "unknown_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "unknown_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "unknown_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "unknownoutput_count": [0, 1, 2, 5, 7, 19, 22, 23], - "unknownoutput_count_10p": [0], - "unknownoutput_count_25p": [0], - "unknownoutput_count_75p": [0], - "unknownoutput_count_90p": [0], - "unknownoutput_count_average": [0, 1, 2, 7, 19, 22, 23], - "unknownoutput_count_max": [0, 1, 2, 7, 19, 22, 23], - "unknownoutput_count_median": [0], - "unknownoutput_count_min": [0, 1, 2, 7, 19, 22, 23], - "unknownoutputindex": [21], - "unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "unspendable_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "unspendable_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "unspendable_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_adjusted_spent_output_profit_ratio": [0], - "up_to_100btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_100btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_satblocks_destroyed": [5], - "up_to_100btc_satdays_destroyed": [5], - "up_to_100btc_sell_side_risk_ratio": [0], - "up_to_100btc_spent_output_profit_ratio": [0], - "up_to_100btc_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_100btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_100btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_adjusted_spent_output_profit_ratio": [0], - "up_to_10_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_satblocks_destroyed": [5], - "up_to_10_000sats_satdays_destroyed": [5], - "up_to_10_000sats_sell_side_risk_ratio": [0], - "up_to_10_000sats_spent_output_profit_ratio": [0], - "up_to_10_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_adjusted_spent_output_profit_ratio": [0], - "up_to_10btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_satblocks_destroyed": [5], - "up_to_10btc_satdays_destroyed": [5], - "up_to_10btc_sell_side_risk_ratio": [0], - "up_to_10btc_spent_output_profit_ratio": [0], - "up_to_10btc_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_adjusted_spent_output_profit_ratio": [0], - "up_to_10y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_10y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_satblocks_destroyed": [5], - "up_to_10y_satdays_destroyed": [5], - "up_to_10y_sell_side_risk_ratio": [0], - "up_to_10y_spent_output_profit_ratio": [0], - "up_to_10y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_10y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_10y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_adjusted_spent_output_profit_ratio": [0], - "up_to_15y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_15y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_satblocks_destroyed": [5], - "up_to_15y_satdays_destroyed": [5], - "up_to_15y_sell_side_risk_ratio": [0], - "up_to_15y_spent_output_profit_ratio": [0], - "up_to_15y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_15y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_15y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_adjusted_spent_output_profit_ratio": [0], - "up_to_1_000sats_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1_000sats_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_satblocks_destroyed": [5], - "up_to_1_000sats_satdays_destroyed": [5], - "up_to_1_000sats_sell_side_risk_ratio": [0], - "up_to_1_000sats_spent_output_profit_ratio": [0], - "up_to_1_000sats_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1_000sats_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1_000sats_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_adjusted_spent_output_profit_ratio": [0], - "up_to_1btc_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1btc_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_satblocks_destroyed": [5], - "up_to_1btc_satdays_destroyed": [5], - "up_to_1btc_sell_side_risk_ratio": [0], - "up_to_1btc_spent_output_profit_ratio": [0], - "up_to_1btc_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1btc_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1btc_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_adjusted_spent_output_profit_ratio": [0], - "up_to_1d_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1d_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_satblocks_destroyed": [5], - "up_to_1d_satdays_destroyed": [5], - "up_to_1d_sell_side_risk_ratio": [0], - "up_to_1d_spent_output_profit_ratio": [0], - "up_to_1d_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1d_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1d_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_adjusted_spent_output_profit_ratio": [0], - "up_to_1m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_satblocks_destroyed": [5], - "up_to_1m_satdays_destroyed": [5], - "up_to_1m_sell_side_risk_ratio": [0], - "up_to_1m_spent_output_profit_ratio": [0], - "up_to_1m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_adjusted_spent_output_profit_ratio": [0], - "up_to_1w_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1w_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_satblocks_destroyed": [5], - "up_to_1w_satdays_destroyed": [5], - "up_to_1w_sell_side_risk_ratio": [0], - "up_to_1w_spent_output_profit_ratio": [0], - "up_to_1w_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1w_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1w_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_adjusted_spent_output_profit_ratio": [0], - "up_to_1y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_1y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_satblocks_destroyed": [5], - "up_to_1y_satdays_destroyed": [5], - "up_to_1y_sell_side_risk_ratio": [0], - "up_to_1y_spent_output_profit_ratio": [0], - "up_to_1y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_1y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_1y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_adjusted_spent_output_profit_ratio": [0], - "up_to_2m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_satblocks_destroyed": [5], - "up_to_2m_satdays_destroyed": [5], - "up_to_2m_sell_side_risk_ratio": [0], - "up_to_2m_spent_output_profit_ratio": [0], - "up_to_2m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_2m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_adjusted_spent_output_profit_ratio": [0], - "up_to_2y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_2y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_satblocks_destroyed": [5], - "up_to_2y_satdays_destroyed": [5], - "up_to_2y_sell_side_risk_ratio": [0], - "up_to_2y_spent_output_profit_ratio": [0], - "up_to_2y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_2y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_2y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_adjusted_spent_output_profit_ratio": [0], - "up_to_3m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_satblocks_destroyed": [5], - "up_to_3m_satdays_destroyed": [5], - "up_to_3m_sell_side_risk_ratio": [0], - "up_to_3m_spent_output_profit_ratio": [0], - "up_to_3m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_3m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_adjusted_spent_output_profit_ratio": [0], - "up_to_3y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_3y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_satblocks_destroyed": [5], - "up_to_3y_satdays_destroyed": [5], - "up_to_3y_sell_side_risk_ratio": [0], - "up_to_3y_spent_output_profit_ratio": [0], - "up_to_3y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_3y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_3y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_adjusted_spent_output_profit_ratio": [0], - "up_to_4m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_satblocks_destroyed": [5], - "up_to_4m_satdays_destroyed": [5], - "up_to_4m_sell_side_risk_ratio": [0], - "up_to_4m_spent_output_profit_ratio": [0], - "up_to_4m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_4m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_adjusted_spent_output_profit_ratio": [0], - "up_to_4y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_4y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_satblocks_destroyed": [5], - "up_to_4y_satdays_destroyed": [5], - "up_to_4y_sell_side_risk_ratio": [0], - "up_to_4y_spent_output_profit_ratio": [0], - "up_to_4y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_4y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_4y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_adjusted_spent_output_profit_ratio": [0], - "up_to_5m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_satblocks_destroyed": [5], - "up_to_5m_satdays_destroyed": [5], - "up_to_5m_sell_side_risk_ratio": [0], - "up_to_5m_spent_output_profit_ratio": [0], - "up_to_5m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_5m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_adjusted_spent_output_profit_ratio": [0], - "up_to_5y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_5y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_satblocks_destroyed": [5], - "up_to_5y_satdays_destroyed": [5], - "up_to_5y_sell_side_risk_ratio": [0], - "up_to_5y_spent_output_profit_ratio": [0], - "up_to_5y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_5y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_5y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_adjusted_spent_output_profit_ratio": [0], - "up_to_6m_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6m_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_satblocks_destroyed": [5], - "up_to_6m_satdays_destroyed": [5], - "up_to_6m_sell_side_risk_ratio": [0], - "up_to_6m_spent_output_profit_ratio": [0], - "up_to_6m_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_6m_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6m_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_adjusted_spent_output_profit_ratio": [0], - "up_to_6y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_6y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_satblocks_destroyed": [5], - "up_to_6y_satdays_destroyed": [5], - "up_to_6y_sell_side_risk_ratio": [0], - "up_to_6y_spent_output_profit_ratio": [0], - "up_to_6y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_6y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_6y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_adjusted_spent_output_profit_ratio": [0], - "up_to_7y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_7y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_satblocks_destroyed": [5], - "up_to_7y_satdays_destroyed": [5], - "up_to_7y_sell_side_risk_ratio": [0], - "up_to_7y_spent_output_profit_ratio": [0], - "up_to_7y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_7y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_7y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_adjusted_spent_output_profit_ratio": [0], - "up_to_8y_adjusted_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_adjusted_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_coinblocks_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_coindays_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_halved_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_halved_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_halved_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_max_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_min_price_paid": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_negative_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_negative_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_net_realized_profit_and_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_net_realized_profit_and_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_net_unrealized_profit_and_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_net_unrealized_profit_and_loss_relative_to_market_cap": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_cap_30d_change": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_loss": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_loss_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_price": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "up_to_8y_realized_profit": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_profit_relative_to_realized_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_realized_value": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_satblocks_destroyed": [5], - "up_to_8y_satdays_destroyed": [5], - "up_to_8y_sell_side_risk_ratio": [0], - "up_to_8y_spent_output_profit_ratio": [0], - "up_to_8y_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_even": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_even_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_even_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_even_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_even_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_loss_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_loss_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_loss_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_loss_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_profit_in_btc": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_profit_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_profit_relative_to_circulating_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_profit_relative_to_own_supply": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_in_usd": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_supply_relative_to_circulating_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_unrealized_loss": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_unrealized_profit": [0, 1, 5, 7, 19, 22, 23], - "up_to_8y_utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "up_to_8y_value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "utxo_count": [0, 1, 2, 5, 7, 19, 22, 23], - "value": [6, 9], - "value_created": [0, 1, 2, 5, 7, 19, 22, 23], - "value_destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "vaulted_cap": [0, 1, 2, 5, 7, 19, 22, 23], - "vaulted_price": [0, 1, 2, 5, 7, 19, 22, 23], - "vaulted_price_ratio": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1m_sma": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1w_sma": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1y_sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1y_sma": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1y_sma_momentum_oscillator": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_1y_zscore": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_4y_sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_4y_sma": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_4y_zscore": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m1sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m1sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m2sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m2sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m3sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_m3sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p0_1": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p0_1_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p0_5": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p0_5_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p1": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p1_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p1sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p1sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p2sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p2sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p3sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p3sd_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99_5": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99_5_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99_9": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99_9_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_p99_as_price": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_sd": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_sma": [0, 1, 7, 19, 22, 23], - "vaulted_price_ratio_zscore": [0, 1, 7, 19, 22, 23], - "vaulted_supply": [0, 1, 2, 5, 7, 19, 22, 23], - "vaulted_supply_in_btc": [0, 1, 2, 5, 7, 19, 22, 23], - "vaulted_supply_in_usd": [0, 1, 2, 5, 7, 19, 22, 23], - "vaultedness": [0, 1, 2, 5, 7, 19, 22, 23], - "vbytes": [5], - "vsize": [20], - "weekindex": [0, 22], - "weight": [5, 20], - "yearindex": [7, 23], - "yearindex_count": [1], - }; -}