From 4ab10670c981155eedca2750c26e5a09f8678102 Mon Sep 17 00:00:00 2001 From: nym21 Date: Sat, 24 May 2025 12:52:15 +0200 Subject: [PATCH] global: utxos part 7 --- crates/brk_computer/src/states/block.rs | 34 +- crates/brk_computer/src/states/cohort.rs | 18 +- crates/brk_computer/src/states/mod.rs | 6 +- .../src/states/outputs/by_size.rs | 91 +- .../src/states/outputs/by_spendable_type.rs | 121 +- .../src/states/outputs/by_type.rs | 73 +- .../src/states/outputs/by_unspendable_type.rs | 62 +- .../brk_computer/src/states/outputs/filter.rs | 4 +- crates/brk_computer/src/states/outputs/mod.rs | 142 +- crates/brk_computer/src/states/realized.rs | 66 +- crates/brk_computer/src/states/supply.rs | 6 + crates/brk_computer/src/states/transacted.rs | 100 + .../src/vecs/grouped/from_txindex.rs | 1 + crates/brk_computer/src/vecs/utxos/cohort.rs | 24 +- crates/brk_computer/src/vecs/utxos/mod.rs | 406 +- crates/brk_core/src/structs/dollars.rs | 1 + crates/brk_core/src/structs/outputtype.rs | 4 +- crates/brk_core/src/structs/sats.rs | 10 + crates/brk_fetcher/src/lib.rs | 2 +- crates/brk_query/src/vec_trees.rs | 2 +- crates/brk_vec/src/structs/unsafe_slice.rs | 5 + crates/brk_vec/src/variants/eager.rs | 10 + websites/kibo.money/scripts/options.js | 143 +- .../kibo.money/scripts/vecid-to-indexes.js | 6291 +++++++++-------- 24 files changed, 4237 insertions(+), 3385 deletions(-) create mode 100644 crates/brk_computer/src/states/transacted.rs diff --git a/crates/brk_computer/src/states/block.rs b/crates/brk_computer/src/states/block.rs index 7d753e13c..d4c371df5 100644 --- a/crates/brk_computer/src/states/block.rs +++ b/crates/brk_computer/src/states/block.rs @@ -1,8 +1,8 @@ use std::ops::{Add, AddAssign, SubAssign}; -use brk_core::{Dollars, Sats, Timestamp}; +use brk_core::{Dollars, Timestamp}; -use super::{OutputsByType, SupplyState}; +use super::SupplyState; #[derive(Debug, Clone)] pub struct BlockState { @@ -30,33 +30,3 @@ impl SubAssign<&BlockState> for BlockState { self.supply -= &rhs.supply; } } - -pub struct ReceivedBlockStateData<'a> { - pub received: &'a OutputsByType<(SupplyState, Vec)>, - pub timestamp: Timestamp, - pub price: Option, -} -impl<'a> From> for BlockState { - fn from( - ReceivedBlockStateData { - received, - timestamp, - price, - }: ReceivedBlockStateData<'a>, - ) -> Self { - let mut block_state = BlockState { - supply: SupplyState::default(), - price, - timestamp, - }; - received - .spendable - .as_vec() - .into_iter() - .for_each(|spendable_block_state| { - block_state.supply += &spendable_block_state.0; - }); - block_state.supply.utxos += received.unspendable.empty.0.utxos; - block_state - } -} diff --git a/crates/brk_computer/src/states/cohort.rs b/crates/brk_computer/src/states/cohort.rs index 794115aea..26f9196be 100644 --- a/crates/brk_computer/src/states/cohort.rs +++ b/crates/brk_computer/src/states/cohort.rs @@ -1,29 +1,27 @@ -use brk_core::{Bitcoin, CheckedSub, Dollars}; +use brk_core::Dollars; -use super::SupplyState; +use super::{RealizedState, SupplyState}; // Vecs ? probably #[derive(Debug, Default, Clone)] pub struct CohortState { pub supply: SupplyState, - pub realized_cap: Option, + pub realized: Option, // pub price_to_amount: PriceToValue, save it not rounded in fjall } impl CohortState { pub fn increment(&mut self, supply_state: &SupplyState, price: Option) { self.supply += supply_state; - if let Some(realized_cap) = self.realized_cap.as_mut() { - *realized_cap += price.unwrap() * Bitcoin::from(supply_state.value); + if let Some(realized) = self.realized.as_mut() { + realized.increment(supply_state, price.unwrap()); } } pub fn decrement(&mut self, supply_state: &SupplyState, price: Option) { - if let Some(realized_cap) = self.realized_cap.as_mut() { - *realized_cap = realized_cap - .checked_sub(price.unwrap() * Bitcoin::from(supply_state.value)) - .unwrap(); - } self.supply -= supply_state; + if let Some(realized) = self.realized.as_mut() { + realized.decrement(supply_state, price.unwrap()); + } } } diff --git a/crates/brk_computer/src/states/mod.rs b/crates/brk_computer/src/states/mod.rs index 3405b3cc6..e2093964f 100644 --- a/crates/brk_computer/src/states/mod.rs +++ b/crates/brk_computer/src/states/mod.rs @@ -1,13 +1,15 @@ mod block; mod cohort; mod outputs; -// mod realized; +mod realized; // mod hot; mod supply; +mod transacted; pub use block::*; pub use cohort::*; pub use outputs::*; -// pub use realized::*; +pub use realized::*; // pub use hot::*; pub use supply::*; +pub use transacted::*; diff --git a/crates/brk_computer/src/states/outputs/by_size.rs b/crates/brk_computer/src/states/outputs/by_size.rs index 96f98800f..118d99464 100644 --- a/crates/brk_computer/src/states/outputs/by_size.rs +++ b/crates/brk_computer/src/states/outputs/by_size.rs @@ -1,9 +1,8 @@ -use brk_core::Sats; - use super::OutputFilter; #[derive(Default, Clone)] pub struct OutputsBySize { + pub _0sat: T, pub from_1sat_to_10sats: T, pub from_10sats_to_100sats: T, pub from_100sats_to_1_000sats: T, @@ -24,60 +23,79 @@ impl From> for OutputsBySize<(OutputFilter, T)> { fn from(value: OutputsBySize) -> Self { #[allow(clippy::inconsistent_digit_grouping)] Self { + _0sat: ( + // OutputFilter::Zero, + OutputFilter::Size, + value._0sat, + ), from_1sat_to_10sats: ( - OutputFilter::Size(Sats::new(1)..Sats::new(10)), + // OutputFilter::Size(Sats::new(1)..Sats::new(10)), + OutputFilter::Size, value.from_1sat_to_10sats, ), from_10sats_to_100sats: ( - OutputFilter::Size(Sats::new(10)..Sats::new(100)), + // OutputFilter::Size(Sats::new(10)..Sats::new(100)), + OutputFilter::Size, value.from_10sats_to_100sats, ), from_100sats_to_1_000sats: ( - OutputFilter::Size(Sats::new(100)..Sats::new(1_000)), + // OutputFilter::Size(Sats::new(100)..Sats::new(1_000)), + OutputFilter::Size, value.from_100sats_to_1_000sats, ), from_1_000sats_to_10_000sats: ( - OutputFilter::Size(Sats::new(1_000)..Sats::new(10_000)), + // OutputFilter::Size(Sats::new(1_000)..Sats::new(10_000)), + OutputFilter::Size, value.from_1_000sats_to_10_000sats, ), from_10_000sats_to_100_000sats: ( - OutputFilter::Size(Sats::new(10_000)..Sats::new(100_000)), + // OutputFilter::Size(Sats::new(10_000)..Sats::new(100_000)), + OutputFilter::Size, value.from_10_000sats_to_100_000sats, ), from_100_000sats_to_1_000_000sats: ( - OutputFilter::Size(Sats::new(100_000)..Sats::new(1_000_000)), + // OutputFilter::Size(Sats::new(100_000)..Sats::new(1_000_000)), + OutputFilter::Size, value.from_100_000sats_to_1_000_000sats, ), from_1_000_000sats_to_10_000_000sats: ( - OutputFilter::Size(Sats::new(1_000_000)..Sats::new(10_000_000)), + // OutputFilter::Size(Sats::new(1_000_000)..Sats::new(10_000_000)), + OutputFilter::Size, value.from_1_000_000sats_to_10_000_000sats, ), from_10_000_000sats_to_1btc: ( - OutputFilter::Size(Sats::new(10_000_000)..Sats::new(1_00_000_000)), + // OutputFilter::Size(Sats::new(10_000_000)..Sats::new(1_00_000_000)), + OutputFilter::Size, value.from_10_000_000sats_to_1btc, ), from_1btc_to_10btc: ( - OutputFilter::Size(Sats::new(1_00_000_000)..Sats::new(10_00_000_000)), + // OutputFilter::Size(Sats::new(1_00_000_000)..Sats::new(10_00_000_000)), + OutputFilter::Size, value.from_1btc_to_10btc, ), from_10btc_to_100btc: ( - OutputFilter::Size(Sats::new(10_00_000_000)..Sats::new(100_00_000_000)), + // OutputFilter::Size(Sats::new(10_00_000_000)..Sats::new(100_00_000_000)), + OutputFilter::Size, value.from_10btc_to_100btc, ), from_100btc_to_1_000btc: ( - OutputFilter::Size(Sats::new(100_00_000_000)..Sats::new(1_000_00_000_000)), + // OutputFilter::Size(Sats::new(100_00_000_000)..Sats::new(1_000_00_000_000)), + OutputFilter::Size, value.from_100btc_to_1_000btc, ), from_1_000btc_to_10_000btc: ( - OutputFilter::Size(Sats::new(1_000_00_000_000)..Sats::new(10_000_00_000_000)), + // OutputFilter::Size(Sats::new(1_000_00_000_000)..Sats::new(10_000_00_000_000)), + OutputFilter::Size, value.from_1_000btc_to_10_000btc, ), from_10_000btc_to_100_000btc: ( - OutputFilter::Size(Sats::new(10_000_00_000_000)..Sats::new(100_000_00_000_000)), + // OutputFilter::Size(Sats::new(10_000_00_000_000)..Sats::new(100_000_00_000_000)), + OutputFilter::Size, value.from_10_000btc_to_100_000btc, ), from_100_000btc: ( - OutputFilter::Size(Sats::new(100_000_00_000_000)..Sats::MAX), + // OutputFilter::Size(Sats::new(100_000_00_000_000)..Sats::MAX), + OutputFilter::Size, value.from_100_000btc, ), } @@ -85,8 +103,44 @@ impl From> for OutputsBySize<(OutputFilter, T)> { } impl OutputsBySize { - pub fn as_mut_vec(&mut self) -> [&mut T; 14] { + #[allow(clippy::inconsistent_digit_grouping)] + pub fn get_mut(&mut self, group: usize) -> &mut T { + if group == 0 { + &mut self._0sat + } else if group == 10 { + &mut self.from_1sat_to_10sats + } else if group == 100 { + &mut self.from_10sats_to_100sats + } else if group == 1_000 { + &mut self.from_100sats_to_1_000sats + } else if group == 10_000 { + &mut self.from_1_000sats_to_10_000sats + } else if group == 100_000 { + &mut self.from_10_000sats_to_100_000sats + } else if group == 1_000_000 { + &mut self.from_100_000sats_to_1_000_000sats + } else if group == 10_000_000 { + &mut self.from_1_000_000sats_to_10_000_000sats + } else if group == 1_00_000_000 { + &mut self.from_10_000_000sats_to_1btc + } else if group == 10_00_000_000 { + &mut self.from_1btc_to_10btc + } else if group == 100_00_000_000 { + &mut self.from_10btc_to_100btc + } else if group == 1_000_00_000_000 { + &mut self.from_100btc_to_1_000btc + } else if group == 10_000_00_000_000 { + &mut self.from_1_000btc_to_10_000btc + } else if group == 100_000_00_000_000 { + &mut self.from_10_000btc_to_100_000btc + } else { + &mut self.from_100_000btc + } + } + + pub fn as_mut_vec(&mut self) -> [&mut T; 15] { [ + &mut self._0sat, &mut self.from_1sat_to_10sats, &mut self.from_10sats_to_100sats, &mut self.from_100sats_to_1_000sats, @@ -106,8 +160,9 @@ impl OutputsBySize { } impl OutputsBySize<(OutputFilter, T)> { - pub fn vecs(&self) -> [&T; 14] { + pub fn vecs(&self) -> [&T; 15] { [ + &self._0sat.1, &self.from_1sat_to_10sats.1, &self.from_10sats_to_100sats.1, &self.from_100sats_to_1_000sats.1, diff --git a/crates/brk_computer/src/states/outputs/by_spendable_type.rs b/crates/brk_computer/src/states/outputs/by_spendable_type.rs index cfe175362..cc5169dad 100644 --- a/crates/brk_computer/src/states/outputs/by_spendable_type.rs +++ b/crates/brk_computer/src/states/outputs/by_spendable_type.rs @@ -1,6 +1,6 @@ -use brk_core::{OutputType, Sats}; +use std::ops::{Add, AddAssign}; -use crate::states::SupplyState; +use brk_core::OutputType; use super::OutputFilter; @@ -16,24 +16,26 @@ pub struct OutputsBySpendableType { pub p2tr: T, pub p2a: T, pub unknown: T, + pub empty: T, } impl OutputsBySpendableType { - pub fn get(&self, output_type: OutputType) -> &T { - match output_type { - OutputType::P2PK65 => &self.p2pk65, - OutputType::P2PK33 => &self.p2pk33, - OutputType::P2PKH => &self.p2pkh, - OutputType::P2MS => &self.p2ms, - OutputType::P2SH => &self.p2sh, - OutputType::P2WPKH => &self.p2wpkh, - OutputType::P2WSH => &self.p2wsh, - OutputType::P2TR => &self.p2tr, - OutputType::P2A => &self.p2a, - OutputType::Unknown => &self.unknown, - _ => unreachable!(), - } - } + // pub fn get(&self, output_type: OutputType) -> &T { + // match output_type { + // OutputType::P2PK65 => &self.p2pk65, + // OutputType::P2PK33 => &self.p2pk33, + // OutputType::P2PKH => &self.p2pkh, + // OutputType::P2MS => &self.p2ms, + // OutputType::P2SH => &self.p2sh, + // OutputType::P2WPKH => &self.p2wpkh, + // OutputType::P2WSH => &self.p2wsh, + // OutputType::P2TR => &self.p2tr, + // OutputType::P2A => &self.p2a, + // OutputType::Unknown => &self.unknown, + // OutputType::Empty => &self.empty, + // _ => unreachable!(), + // } + // } pub fn get_mut(&mut self, output_type: OutputType) -> &mut T { match output_type { @@ -47,26 +49,28 @@ impl OutputsBySpendableType { OutputType::P2TR => &mut self.p2tr, OutputType::P2A => &mut self.p2a, OutputType::Unknown => &mut self.unknown, + OutputType::Empty => &mut self.empty, _ => unreachable!(), } } - pub fn as_vec(&self) -> [&T; 10] { - [ - &self.p2pk65, - &self.p2pk33, - &self.p2pkh, - &self.p2ms, - &self.p2sh, - &self.p2wpkh, - &self.p2wsh, - &self.p2tr, - &self.p2a, - &self.unknown, - ] - } + // pub fn as_vec(&self) -> [&T; 11] { + // [ + // &self.p2pk65, + // &self.p2pk33, + // &self.p2pkh, + // &self.p2ms, + // &self.p2sh, + // &self.p2wpkh, + // &self.p2wsh, + // &self.p2tr, + // &self.p2a, + // &self.unknown, + // &self.empty, + // ] + // } - pub fn as_mut_vec(&mut self) -> [&mut T; 10] { + pub fn as_mut_vec(&mut self) -> [&mut T; 11] { [ &mut self.p2pk65, &mut self.p2pk33, @@ -78,10 +82,11 @@ impl OutputsBySpendableType { &mut self.p2tr, &mut self.p2a, &mut self.unknown, + &mut self.empty, ] } - pub fn as_typed_vec(&self) -> [(OutputType, &T); 10] { + pub fn as_typed_vec(&self) -> [(OutputType, &T); 11] { [ (OutputType::P2PK65, &self.p2pk65), (OutputType::P2PK33, &self.p2pk33), @@ -93,12 +98,13 @@ impl OutputsBySpendableType { (OutputType::P2TR, &self.p2tr), (OutputType::P2A, &self.p2a), (OutputType::Unknown, &self.unknown), + (OutputType::Empty, &self.empty), ] } } impl OutputsBySpendableType<(OutputFilter, T)> { - pub fn vecs(&self) -> [&T; 10] { + pub fn vecs(&self) -> [&T; 11] { [ &self.p2pk65.1, &self.p2pk33.1, @@ -110,6 +116,7 @@ impl OutputsBySpendableType<(OutputFilter, T)> { &self.p2tr.1, &self.p2a.1, &self.unknown.1, + &self.empty.1, ] } } @@ -127,16 +134,48 @@ impl From> for OutputsBySpendableType<(OutputFilter p2tr: (OutputFilter::Type(OutputType::P2TR), value.p2tr), p2a: (OutputFilter::Type(OutputType::P2A), value.p2a), unknown: (OutputFilter::Type(OutputType::Unknown), value.unknown), + empty: (OutputFilter::Type(OutputType::Empty), value.empty), } } } -impl OutputsBySpendableType<(SupplyState, Vec)> { - pub fn reduce(&self) -> SupplyState { - let mut supply_state = SupplyState::default(); - self.as_vec().iter().for_each(|(supply_state_, _)| { - supply_state += supply_state_; - }); - supply_state +impl Add for OutputsBySpendableType +where + T: Add, +{ + type Output = Self; + fn add(self, rhs: Self) -> Self::Output { + Self { + p2pk65: self.p2pk65 + rhs.p2pk65, + p2pk33: self.p2pk33 + rhs.p2pk33, + p2pkh: self.p2pkh + rhs.p2pkh, + p2ms: self.p2ms + rhs.p2ms, + p2sh: self.p2sh + rhs.p2sh, + p2wpkh: self.p2wpkh + rhs.p2wpkh, + p2wsh: self.p2wsh + rhs.p2wsh, + p2tr: self.p2tr + rhs.p2tr, + p2a: self.p2a + rhs.p2a, + unknown: self.unknown + rhs.unknown, + empty: self.empty + rhs.empty, + } + } +} + +impl AddAssign for OutputsBySpendableType +where + T: AddAssign, +{ + fn add_assign(&mut self, rhs: Self) { + self.p2pk65 += rhs.p2pk65; + self.p2pk33 += rhs.p2pk33; + self.p2pkh += rhs.p2pkh; + self.p2ms += rhs.p2ms; + self.p2sh += rhs.p2sh; + self.p2wpkh += rhs.p2wpkh; + self.p2wsh += rhs.p2wsh; + self.p2tr += rhs.p2tr; + self.p2a += rhs.p2a; + self.unknown += rhs.unknown; + self.empty += rhs.empty; } } diff --git a/crates/brk_computer/src/states/outputs/by_type.rs b/crates/brk_computer/src/states/outputs/by_type.rs index 6a4bc6476..a64d4b691 100644 --- a/crates/brk_computer/src/states/outputs/by_type.rs +++ b/crates/brk_computer/src/states/outputs/by_type.rs @@ -1,3 +1,5 @@ +use std::ops::{Add, AddAssign}; + use brk_core::OutputType; use super::{OutputsBySpendableType, OutputsByUnspendableType}; @@ -9,22 +11,22 @@ pub struct OutputsByType { } impl OutputsByType { - // pub fn get(&self, output_type: OutputType) -> &T { - // match output_type { - // OutputType::P2PK65 => &self.spendable.p2pk65, - // OutputType::P2PK33 => &self.spendable.p2pk33, - // OutputType::P2PKH => &self.spendable.p2pkh, - // OutputType::P2MS => &self.spendable.p2ms, - // OutputType::P2SH => &self.spendable.p2sh, - // OutputType::P2WPKH => &self.spendable.p2wpkh, - // OutputType::P2WSH => &self.spendable.p2wsh, - // OutputType::P2TR => &self.spendable.p2tr, - // OutputType::P2A => &self.spendable.p2a, - // OutputType::OpReturn => &self.unspendable.op_return, - // OutputType::Empty => &self.unspendable.empty, - // OutputType::Unknown => &self.unspendable.unknown, - // } - // } + pub fn get(&self, output_type: OutputType) -> &T { + match output_type { + OutputType::P2PK65 => &self.spendable.p2pk65, + OutputType::P2PK33 => &self.spendable.p2pk33, + OutputType::P2PKH => &self.spendable.p2pkh, + OutputType::P2MS => &self.spendable.p2ms, + OutputType::P2SH => &self.spendable.p2sh, + OutputType::P2WPKH => &self.spendable.p2wpkh, + OutputType::P2WSH => &self.spendable.p2wsh, + OutputType::P2TR => &self.spendable.p2tr, + OutputType::P2A => &self.spendable.p2a, + OutputType::Empty => &self.spendable.empty, + OutputType::Unknown => &self.spendable.unknown, + OutputType::OpReturn => &self.unspendable.op_return, + } + } pub fn get_mut(&mut self, output_type: OutputType) -> &mut T { match output_type { @@ -38,18 +40,18 @@ impl OutputsByType { OutputType::P2TR => &mut self.spendable.p2tr, OutputType::P2A => &mut self.spendable.p2a, OutputType::Unknown => &mut self.spendable.unknown, + OutputType::Empty => &mut self.spendable.empty, OutputType::OpReturn => &mut self.unspendable.op_return, - OutputType::Empty => &mut self.unspendable.empty, } } - pub fn as_vec(&self) -> Vec<&T> { - self.spendable - .as_vec() - .into_iter() - .chain(self.unspendable.as_vec()) - .collect::>() - } + // pub fn as_vec(&self) -> Vec<&T> { + // self.spendable + // .as_vec() + // .into_iter() + // .chain(self.unspendable.as_vec()) + // .collect::>() + // } // pub fn as_mut_vec(&mut self) -> Vec<&mut T> { // self.spendable @@ -59,3 +61,26 @@ impl OutputsByType { // .collect::>() // } } + +impl Add for OutputsByType +where + T: Add, +{ + type Output = Self; + fn add(self, rhs: Self) -> Self::Output { + Self { + spendable: self.spendable + rhs.spendable, + unspendable: self.unspendable + rhs.unspendable, + } + } +} + +impl AddAssign for OutputsByType +where + T: AddAssign, +{ + fn add_assign(&mut self, rhs: Self) { + self.spendable += rhs.spendable; + self.unspendable += rhs.unspendable; + } +} diff --git a/crates/brk_computer/src/states/outputs/by_unspendable_type.rs b/crates/brk_computer/src/states/outputs/by_unspendable_type.rs index edf267f77..66d422918 100644 --- a/crates/brk_computer/src/states/outputs/by_unspendable_type.rs +++ b/crates/brk_computer/src/states/outputs/by_unspendable_type.rs @@ -1,47 +1,33 @@ -// use brk_core::OutputType; +use std::ops::{Add, AddAssign}; #[derive(Default, Clone)] pub struct OutputsByUnspendableType { pub op_return: T, - pub empty: T, - // pub unknown: T, } impl OutputsByUnspendableType { - // pub fn get(&self, output_type: OutputType) -> &T { - // match output_type { - // OutputType::OpReturn => &self.op_return, - // OutputType::Empty => &self.empty, - // OutputType::Unknown => &self.unknown, - // _ => unreachable!(), - // } - // } - - // pub fn get_mut(&mut self, output_type: OutputType) -> &mut T { - // match output_type { - // OutputType::OpReturn => &mut self.op_return, - // OutputType::Empty => &mut self.empty, - // OutputType::Unknown => &mut self.unknown, - // _ => unreachable!(), - // } - // } - - // pub fn to_unspendable_vec(&self) -> Vec<&T> { - // OutputType::as_vec() - // .into_iter() - // .map(|t| (self.get(t))) - // .collect::>() - // } - - pub fn as_vec(&self) -> [&T; 2] { - [ - &self.op_return, - &self.empty, - // &self.unknown - ] + pub fn as_vec(&self) -> [&T; 1] { + [&self.op_return] + } +} + +impl Add for OutputsByUnspendableType +where + T: Add, +{ + type Output = Self; + fn add(self, rhs: Self) -> Self::Output { + Self { + op_return: self.op_return + rhs.op_return, + } + } +} + +impl AddAssign for OutputsByUnspendableType +where + T: AddAssign, +{ + fn add_assign(&mut self, rhs: Self) { + self.op_return += rhs.op_return; } - - // pub fn as_mut_vec(&mut self) -> [&mut T; 3] { - // [&mut self.op_return, &mut self.empty, &mut self.unknown] - // } } diff --git a/crates/brk_computer/src/states/outputs/filter.rs b/crates/brk_computer/src/states/outputs/filter.rs index 7715005c1..a2ff8811a 100644 --- a/crates/brk_computer/src/states/outputs/filter.rs +++ b/crates/brk_computer/src/states/outputs/filter.rs @@ -1,6 +1,6 @@ use std::ops::Range; -use brk_core::{HalvingEpoch, OutputType, Sats}; +use brk_core::{HalvingEpoch, OutputType}; #[derive(Debug, Clone)] pub enum OutputFilter { @@ -8,7 +8,7 @@ pub enum OutputFilter { To(usize), Range(Range), From(usize), - Size(Range), + Size, Epoch(HalvingEpoch), Type(OutputType), } diff --git a/crates/brk_computer/src/states/outputs/mod.rs b/crates/brk_computer/src/states/outputs/mod.rs index 32b18861d..3af2035ad 100644 --- a/crates/brk_computer/src/states/outputs/mod.rs +++ b/crates/brk_computer/src/states/outputs/mod.rs @@ -2,7 +2,7 @@ use brk_vec::StoredIndex; use rayon::prelude::*; use std::{collections::BTreeMap, ops::ControlFlow}; -use brk_core::{Dollars, HalvingEpoch, Height, Sats, Timestamp}; +use brk_core::{Dollars, HalvingEpoch, Height, Timestamp}; mod by_epoch; mod by_from; @@ -30,7 +30,7 @@ pub use filter::*; use crate::vecs; -use super::{BlockState, SupplyState}; +use super::{BlockState, Transacted}; #[derive(Default, Clone)] pub struct Outputs { @@ -38,12 +38,12 @@ pub struct Outputs { pub by_term: OutputsByTerm, // pub by_up_to: OutputsByUpTo, pub by_from: OutputsByFrom, - // pub by_range: OutputsByRange, + pub by_range: OutputsByRange, pub by_epoch: OutputsByEpoch, + pub by_type: OutputsBySpendableType, pub by_size: OutputsBySize, // // Needs whole UTXO set, TODO later // // pub by_value: OutputsByValue, - pub by_spendable_type: OutputsBySpendableType, } impl Outputs { @@ -53,11 +53,11 @@ impl Outputs { .chain(self.by_term.as_mut_vec()) // .chain(self.by_up_to.as_mut_vec()) .chain(self.by_from.as_mut_vec()) - // .chain(self.by_range.as_mut_vec()) + .chain(self.by_range.as_mut_vec()) .chain(self.by_epoch.as_mut_vec()) .chain(self.by_size.as_mut_vec()) + .chain(self.by_type.as_mut_vec()) // // .chain(self.by_value.as_mut_vec()) - .chain(self.by_spendable_type.as_mut_vec()) .collect::>() } } @@ -75,7 +75,7 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { .into_par_iter() // .chain(self.by_up_to.as_mut_vec()) .chain(self.by_from.as_mut_vec()) - // .chain(self.by_range.as_mut_vec()) + .chain(self.by_range.as_mut_vec()) .for_each(|(filter, v)| { let state = &mut v.state; @@ -86,7 +86,7 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { OutputFilter::Range(range) => range.contains(&days_old), OutputFilter::All | OutputFilter::Epoch(_) - | OutputFilter::Size(_) + | OutputFilter::Size | OutputFilter::Type(_) => unreachable!(), } }; @@ -98,12 +98,14 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { .timestamp .difference_in_days_between(prev_timestamp); let days_old = block_state.timestamp.difference_in_days_between(timestamp); + if prev_days_old == days_old { return ControlFlow::Continue(()); } let is = check_days_old(days_old); let was = check_days_old(prev_days_old); + if is && !was { state.increment(&block_state.supply, block_state.price); } else if was && !is { @@ -117,7 +119,7 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { pub fn send( &mut self, - height_to_sent: BTreeMap)>>, + height_to_sent: BTreeMap, chain_state: &[BlockState], ) { let mut time_based_vecs = self @@ -126,58 +128,21 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { .into_iter() // .chain(self.by_up_to.as_mut_vec()) .chain(self.by_from.as_mut_vec()) - // .chain(self.by_range.as_mut_vec()) + .chain(self.by_range.as_mut_vec()) .chain(self.by_epoch.as_mut_vec()) .collect::>(); let last_timestamp = chain_state.last().unwrap().timestamp; - height_to_sent.into_iter().for_each(|(height, by_type)| { - let by_spendable_type = by_type.spendable; - + height_to_sent.into_iter().for_each(|(height, sent)| { let block_state = chain_state.get(height.unwrap_to_usize()).unwrap(); let price = block_state.price; - let supply_state = by_spendable_type.reduce(); let days_old = block_state .timestamp .difference_in_days_between(last_timestamp); - self.all.1.state.decrement(&supply_state, price); - - by_spendable_type.as_typed_vec().into_iter().for_each( - |(output_type, (supply_state, _))| { - self.by_spendable_type - .get_mut(output_type) - .1 - .state - .decrement(supply_state, price) - }, - ); - - by_spendable_type - .as_vec() - .into_iter() - .flat_map(|(_, sats_received)| sats_received.iter()) - .for_each(|sats| { - let sats = *sats; - self.by_size - .as_mut_vec() - .iter_mut() - .filter(|(filter, _)| match filter { - OutputFilter::Size(range) => range.contains(&sats), - _ => unreachable!(), - }) - .for_each(|(_, vec)| { - vec.state.decrement( - &SupplyState { - utxos: 1, - value: sats, - }, - price, - ); - }); - }); + self.all.1.state.decrement(&sent.spendable_supply, price); time_based_vecs .iter_mut() @@ -189,18 +154,31 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { _ => unreachable!(), }) .for_each(|(_, vecs)| { - vecs.state.decrement(&supply_state, price); + vecs.state.decrement(&sent.spendable_supply, price); }); + + sent.by_type.spendable.as_typed_vec().into_iter().for_each( + |(output_type, supply_state)| { + self.by_type + .get_mut(output_type) + .1 + .state + .decrement(supply_state, price) + }, + ); + + sent.by_size.into_iter().for_each(|(group, supply_state)| { + self.by_size + .get_mut(group) + .1 + .state + .decrement(&supply_state, price); + }); }); } - pub fn receive( - &mut self, - received: OutputsByType<(SupplyState, Vec)>, - height: Height, - price: Option, - ) { - let supply_state = received.spendable.reduce(); + pub fn receive(&mut self, received: Transacted, height: Height, price: Option) { + let supply_state = received.spendable_supply; [ &mut self.all.1, @@ -214,34 +192,7 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { v.state.increment(&supply_state, price); }); - let mut by_size = self.by_size.as_mut_vec(); - - received - .spendable - .as_vec() - .into_iter() - .flat_map(|(_, sats_received)| sats_received.iter()) - .for_each(|sats| { - let sats = *sats; - - by_size - .iter_mut() - .filter(|(filter, _)| match filter { - OutputFilter::Size(range) => range.contains(&sats), - _ => unreachable!(), - }) - .for_each(|(_, vec)| { - vec.state.increment( - &SupplyState { - utxos: 1, - value: sats, - }, - price, - ); - }); - }); - - self.by_spendable_type + self.by_type .as_mut_vec() .into_iter() .for_each(|(filter, vecs)| { @@ -250,7 +201,18 @@ impl Outputs<(OutputFilter, vecs::utxos::cohort::Vecs)> { _ => unreachable!(), }; vecs.state - .increment(&received.spendable.get(output_type).0, price) + .increment(received.by_type.get(output_type), price) + }); + + received + .by_size + .into_iter() + .for_each(|(group, supply_state)| { + self.by_size + .get_mut(group) + .1 + .state + .increment(&supply_state, price); }); } } @@ -262,11 +224,11 @@ impl Outputs<(OutputFilter, T)> { .chain(self.by_term.vecs()) // .chain(self.by_up_to.vecs()) .chain(self.by_from.vecs()) - // .chain(self.by_range.vecs()) + .chain(self.by_range.vecs()) .chain(self.by_epoch.vecs()) .chain(self.by_size.vecs()) // // .chain(self.by_value.vecs()) - .chain(self.by_spendable_type.vecs()) + .chain(self.by_type.vecs()) .collect::>() } } @@ -278,12 +240,12 @@ impl From> for Outputs<(OutputFilter, T)> { by_term: OutputsByTerm::from(value.by_term), // by_up_to: OutputsByUpTo::from(value.by_up_to), by_from: OutputsByFrom::from(value.by_from), - // by_range: OutputsByRange::from(value.by_range), + by_range: OutputsByRange::from(value.by_range), by_epoch: OutputsByEpoch::from(value.by_epoch), by_size: OutputsBySize::from(value.by_size), // // Needs whole UTXO set, TODO later // // by_value: OutputsByValue, - by_spendable_type: OutputsBySpendableType::from(value.by_spendable_type), + by_type: OutputsBySpendableType::from(value.by_type), } } } diff --git a/crates/brk_computer/src/states/realized.rs b/crates/brk_computer/src/states/realized.rs index 8fb0fc3b9..851178f1e 100644 --- a/crates/brk_computer/src/states/realized.rs +++ b/crates/brk_computer/src/states/realized.rs @@ -1,11 +1,61 @@ -use brk_core::Dollars; +use brk_core::{Bitcoin, CheckedSub, Dollars}; -#[derive(Debug, Default)] +use super::SupplyState; + +#[derive(Debug, Default, Clone)] pub struct RealizedState { - realized_profit: Dollars, - realized_loss: Dollars, - value_created: Dollars, - adjusted_value_created: Dollars, - value_destroyed: Dollars, - adjusted_value_destroyed: Dollars, + pub realized_cap: Dollars, + // pub realized_profit: Dollars, + // pub realized_loss: Dollars, + // pub value_created: Dollars, + // pub adjusted_value_created: Dollars, + // pub value_destroyed: Dollars, + // pub adjusted_value_destroyed: Dollars, +} + +impl RealizedState { + pub const NAN: Self = Self { + realized_cap: Dollars::NAN, + // realized_profit: Dollars::NAN, + // realized_loss: Dollars::NAN, + // value_created: Dollars::NAN, + // adjusted_value_created: Dollars::NAN, + // value_destroyed: Dollars::NAN, + // adjusted_value_destroyed: Dollars::NAN, + }; + + pub fn increment(&mut self, supply_state: &SupplyState, price: Dollars) { + if supply_state.value.is_not_zero() { + if self.realized_cap == Dollars::NAN { + self.realized_cap = Dollars::ZERO; + } + self.realized_cap += price * Bitcoin::from(supply_state.value); + } + + // if self.realized_profit == Dollars::NAN { + // self.realized_profit = Dollars::ZERO; + // } + // if self.realized_loss == Dollars::NAN { + // self.realized_loss = Dollars::ZERO; + // } + // if self.value_created == Dollars::NAN { + // self.value_created = Dollars::ZERO; + // } + // if self.adjusted_value_created == Dollars::NAN { + // self.adjusted_value_created = Dollars::ZERO; + // } + // if self.value_destroyed == Dollars::NAN { + // self.value_destroyed = Dollars::ZERO; + // } + // if self.adjusted_value_destroyed == Dollars::NAN { + // self.adjusted_value_destroyed = Dollars::ZERO; + // } + } + + pub fn decrement(&mut self, supply_state: &SupplyState, price: Dollars) { + self.realized_cap = self + .realized_cap + .checked_sub(price * Bitcoin::from(supply_state.value)) + .unwrap(); + } } diff --git a/crates/brk_computer/src/states/supply.rs b/crates/brk_computer/src/states/supply.rs index 23e66c776..c9bd95442 100644 --- a/crates/brk_computer/src/states/supply.rs +++ b/crates/brk_computer/src/states/supply.rs @@ -20,6 +20,12 @@ impl Add for SupplyState { } } +impl AddAssign for SupplyState { + fn add_assign(&mut self, rhs: Self) { + *self += &rhs; + } +} + impl AddAssign<&SupplyState> for SupplyState { fn add_assign(&mut self, rhs: &Self) { self.utxos += rhs.utxos; diff --git a/crates/brk_computer/src/states/transacted.rs b/crates/brk_computer/src/states/transacted.rs new file mode 100644 index 000000000..ec8915234 --- /dev/null +++ b/crates/brk_computer/src/states/transacted.rs @@ -0,0 +1,100 @@ +use std::{ + collections::BTreeMap, + mem, + ops::{Add, AddAssign}, +}; + +use brk_core::{OutputType, Sats}; + +use super::{OutputsByType, SupplyState}; + +#[derive(Default)] +pub struct Transacted { + pub spendable_supply: SupplyState, + pub by_type: OutputsByType, + pub by_size: BTreeMap, +} + +impl Transacted { + #[allow(clippy::inconsistent_digit_grouping)] + pub fn iterate(&mut self, value: Sats, _type: OutputType) { + let supply = SupplyState { utxos: 1, value }; + + *self.by_type.get_mut(_type) += &supply; + + if _type.is_unspendable() { + return; + } + + self.spendable_supply += &supply; + + let _value = usize::from(value); + + // Need to be in sync with by_size !! but plenty fast (I think) + if _value == 0 { + *self.by_size.entry(0).or_default() += &supply; + } else if _value < 10 { + *self.by_size.entry(1).or_default() += &supply; + } else if _value < 100 { + *self.by_size.entry(10).or_default() += &supply; + } else if _value < 1_000 { + *self.by_size.entry(100).or_default() += &supply; + } else if _value < 10_000 { + *self.by_size.entry(1_000).or_default() += &supply; + } else if _value < 100_000 { + *self.by_size.entry(10_000).or_default() += &supply; + } else if _value < 1_000_000 { + *self.by_size.entry(100_000).or_default() += &supply; + } else if _value < 10_000_000 { + *self.by_size.entry(1_000_000).or_default() += &supply; + } else if _value < 1_00_000_000 { + *self.by_size.entry(10_000_000).or_default() += &supply; + } else if _value < 10_00_000_000 { + *self.by_size.entry(1_00_000_000).or_default() += &supply; + } else if _value < 100_00_000_000 { + *self.by_size.entry(10_00_000_000).or_default() += &supply; + } else if _value < 1_000_00_000_000 { + *self.by_size.entry(100_00_000_000).or_default() += &supply; + } else if _value < 10_000_00_000_000 { + *self.by_size.entry(1_000_00_000_000).or_default() += &supply; + } else if _value < 100_000_00_000_000 { + *self.by_size.entry(10_000_00_000_000).or_default() += &supply; + } else { + *self.by_size.entry(100_000_00_000_000).or_default() += &supply; + } + } + + fn merge_by_size( + first: BTreeMap, + second: BTreeMap, + ) -> BTreeMap { + let (mut source, to_consume) = if first.len() > second.len() { + (first, second) + } else { + (second, first) + }; + to_consume.into_iter().for_each(|(k, v)| { + *source.entry(k).or_default() += &v; + }); + source + } +} + +impl Add for Transacted { + type Output = Self; + fn add(self, rhs: Self) -> Self::Output { + Self { + spendable_supply: self.spendable_supply + rhs.spendable_supply, + by_type: self.by_type + rhs.by_type, + by_size: Self::merge_by_size(self.by_size, rhs.by_size), + } + } +} + +impl AddAssign for Transacted { + fn add_assign(&mut self, rhs: Self) { + self.by_size = Self::merge_by_size(mem::take(&mut self.by_size), rhs.by_size); + self.spendable_supply += &rhs.spendable_supply; + self.by_type += rhs.by_type; + } +} diff --git a/crates/brk_computer/src/vecs/grouped/from_txindex.rs b/crates/brk_computer/src/vecs/grouped/from_txindex.rs index de37a9ff1..1e1c34cfa 100644 --- a/crates/brk_computer/src/vecs/grouped/from_txindex.rs +++ b/crates/brk_computer/src/vecs/grouped/from_txindex.rs @@ -405,6 +405,7 @@ impl ComputedVecsFromTxindex { } impl ComputedVecsFromTxindex { + #[allow(clippy::too_many_arguments)] pub fn compute_rest_from_bitcoin( &mut self, indexer: &Indexer, diff --git a/crates/brk_computer/src/vecs/utxos/cohort.rs b/crates/brk_computer/src/vecs/utxos/cohort.rs index 1f68360a0..b93f09d22 100644 --- a/crates/brk_computer/src/vecs/utxos/cohort.rs +++ b/crates/brk_computer/src/vecs/utxos/cohort.rs @@ -8,7 +8,7 @@ use brk_vec::{ }; use crate::{ - states::CohortState, + states::{CohortState, RealizedState}, vecs::{ Indexes, fetched, grouped::{ @@ -55,7 +55,7 @@ impl Vecs { let mut state = CohortState::default(); if compute_dollars { - state.realized_cap = Some(Dollars::ZERO); + state.realized = Some(RealizedState::NAN); } Ok(Self { @@ -169,11 +169,9 @@ impl Vecs { .unwrap_get_inner(prev_height); if let Some(height_to_realized_cap) = self.height_to_realized_cap.as_mut() { - self.state.realized_cap = Some( - height_to_realized_cap - .into_iter() - .unwrap_get_inner(prev_height), - ); + self.state.realized.as_mut().unwrap().realized_cap = height_to_realized_cap + .into_iter() + .unwrap_get_inner(prev_height); } } } @@ -215,10 +213,14 @@ impl Vecs { if let Some(height_to_realized_cap) = self.height_to_realized_cap.as_mut() { height_to_realized_cap.forced_push_at( height, - self.state.realized_cap.unwrap_or_else(|| { - dbg!(&self.state); - panic!(); - }), + self.state + .realized + .as_ref() + .unwrap_or_else(|| { + dbg!(&self.state); + panic!(); + }) + .realized_cap, exit, )?; } diff --git a/crates/brk_computer/src/vecs/utxos/mod.rs b/crates/brk_computer/src/vecs/utxos/mod.rs index 0f130c46f..21a9b7b63 100644 --- a/crates/brk_computer/src/vecs/utxos/mod.rs +++ b/crates/brk_computer/src/vecs/utxos/mod.rs @@ -1,18 +1,18 @@ use std::{cmp::Ordering, collections::BTreeMap, mem, path::Path, thread}; -use brk_core::{Height, InputIndex, OutputIndex, Sats}; +use brk_core::{Height, InputIndex, OutputIndex, OutputType, Sats}; use brk_exit::Exit; use brk_indexer::Indexer; use brk_vec::{ AnyCollectableVec, AnyVec, BaseVecIterator, CollectableVec, Compressed, Computation, EagerVec, - GenericStoredVec, StoredIndex, StoredVec, VecIterator, Version, + GenericStoredVec, StoredIndex, StoredVec, UnsafeSlice, VecIterator, Version, }; use log::info; +use rayon::prelude::*; use crate::states::{ BlockState, OutputFilter, Outputs, OutputsByEpoch, OutputsByFrom, OutputsByRange, - OutputsBySize, OutputsBySpendableType, OutputsByTerm, OutputsByType, OutputsByUpTo, - ReceivedBlockStateData, SupplyState, + OutputsBySize, OutputsBySpendableType, OutputsByTerm, SupplyState, Transacted, }; use super::{ @@ -23,7 +23,7 @@ use super::{ pub mod cohort; -const VERSION: Version = Version::new(99); +const VERSION: Version = Version::new(999); #[derive(Clone)] pub struct Vecs { @@ -32,6 +32,8 @@ pub struct Vecs { // cointime,... pub height_to_unspendable_supply: EagerVec, pub indexes_to_unspendable_supply: ComputedValueVecsFromHeight, + // pub height_to_opreturn_supply: EagerVec, + // pub indexes_to_opreturn_supply: ComputedValueVecsFromHeight, utxos_vecs: Outputs<(OutputFilter, cohort::Vecs)>, } @@ -391,104 +393,104 @@ impl Vecs { fetched, )?, }, - // by_range: OutputsByRange { - // _1d_to_1w: cohort::Vecs::forced_import( - // path, - // Some("from_1d_to_1w"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _1w_to_1m: cohort::Vecs::forced_import( - // path, - // Some("from_1w_to_1m"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _1m_to_3m: cohort::Vecs::forced_import( - // path, - // Some("from_1m_to_3m"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _3m_to_6m: cohort::Vecs::forced_import( - // path, - // Some("from_3m_to_6m"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _6m_to_1y: cohort::Vecs::forced_import( - // path, - // Some("from_6m_to_1y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _1y_to_2y: cohort::Vecs::forced_import( - // path, - // Some("from_1y_to_2y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _2y_to_3y: cohort::Vecs::forced_import( - // path, - // Some("from_2y_to_3y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _3y_to_4y: cohort::Vecs::forced_import( - // path, - // Some("from_3y_to_4y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _4y_to_5y: cohort::Vecs::forced_import( - // path, - // Some("from_4y_to_5y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _5y_to_7y: cohort::Vecs::forced_import( - // path, - // Some("from_5y_to_7y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _7y_to_10y: cohort::Vecs::forced_import( - // path, - // Some("from_7y_to_10y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // _10y_to_15y: cohort::Vecs::forced_import( - // path, - // Some("from_10y_to_15y"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, - // }, + by_range: OutputsByRange { + _1d_to_1w: cohort::Vecs::forced_import( + path, + Some("from_1d_to_1w"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _1w_to_1m: cohort::Vecs::forced_import( + path, + Some("from_1w_to_1m"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _1m_to_3m: cohort::Vecs::forced_import( + path, + Some("from_1m_to_3m"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _3m_to_6m: cohort::Vecs::forced_import( + path, + Some("from_3m_to_6m"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _6m_to_1y: cohort::Vecs::forced_import( + path, + Some("from_6m_to_1y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _1y_to_2y: cohort::Vecs::forced_import( + path, + Some("from_1y_to_2y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _2y_to_3y: cohort::Vecs::forced_import( + path, + Some("from_2y_to_3y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _3y_to_4y: cohort::Vecs::forced_import( + path, + Some("from_3y_to_4y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _4y_to_5y: cohort::Vecs::forced_import( + path, + Some("from_4y_to_5y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _5y_to_7y: cohort::Vecs::forced_import( + path, + Some("from_5y_to_7y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _7y_to_10y: cohort::Vecs::forced_import( + path, + Some("from_7y_to_10y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + _10y_to_15y: cohort::Vecs::forced_import( + path, + Some("from_10y_to_15y"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, + }, by_epoch: OutputsByEpoch { _0: cohort::Vecs::forced_import( path, @@ -532,6 +534,14 @@ impl Vecs { )?, }, by_size: OutputsBySize { + _0sat: cohort::Vecs::forced_import( + path, + Some("0sat"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, from_1sat_to_10sats: cohort::Vecs::forced_import( path, Some("from_1sat_to_10sats"), @@ -738,7 +748,7 @@ impl Vecs { // fetched, // )?, // }, - by_spendable_type: OutputsBySpendableType { + by_type: OutputsBySpendableType { p2pk65: cohort::Vecs::forced_import( path, Some("p2pk65"), @@ -819,14 +829,14 @@ impl Vecs { VERSION + Version::ZERO, fetched, )?, - // empty: cohort::Vecs::forced_import( - // path, - // Some("empty"), - // _computation, - // compressed, - // VERSION + Version::ZERO, - // fetched, - // )?, + empty: cohort::Vecs::forced_import( + path, + Some("empty"), + _computation, + compressed, + VERSION + Version::ZERO, + fetched, + )?, unknown: cohort::Vecs::forced_import( path, Some("unknown"), @@ -873,18 +883,19 @@ impl Vecs { .as_ref() .map(|fetched| &fetched.chainindexes_to_close.height); + let inputindex_to_outputindex_mmap = inputindex_to_outputindex.mmap().load(); + let outputindex_to_value_mmap = outputindex_to_value.mmap().load(); + let outputindex_to_outputtype_mmap = outputindex_to_outputtype.mmap().load(); + let outputindex_to_txindex_mmap = outputindex_to_txindex.mmap().load(); + let txindex_to_height_mmap = txindex_to_height.mmap().load(); + let mut height_to_first_outputindex_iter = height_to_first_outputindex.into_iter(); let mut height_to_first_inputindex_iter = height_to_first_inputindex.into_iter(); let mut height_to_output_count_iter = height_to_output_count.into_iter(); let mut height_to_input_count_iter = height_to_input_count.into_iter(); - let mut inputindex_to_outputindex_iter = inputindex_to_outputindex.into_iter(); - let mut outputindex_to_value_iter = outputindex_to_value.into_iter(); - let mut outputindex_to_value_iter_2 = outputindex_to_value.into_iter(); - let mut txindex_to_height_iter = txindex_to_height.into_iter(); - let mut outputindex_to_txindex_iter = outputindex_to_txindex.into_iter(); + // let mut outputindex_to_value_iter_2 = outputindex_to_value.into_iter(); let mut height_to_close_iter = height_to_close.as_ref().map(|v| v.into_iter()); - let mut outputindex_to_outputtype_iter = outputindex_to_outputtype.into_iter(); - let mut outputindex_to_outputtype_iter_2 = outputindex_to_outputtype.into_iter(); + // let mut outputindex_to_outputtype_iter_2 = outputindex_to_outputtype.into_iter(); let mut height_to_unclaimed_rewards_iter = height_to_unclaimed_rewards.into_iter(); let mut height_to_timestamp_fixed_iter = height_to_timestamp_fixed.into_iter(); @@ -1012,104 +1023,134 @@ impl Vecs { } let sent_handle = s.spawn(|| { - let mut txindex_to_height = BTreeMap::new(); - let mut height_to_sent: BTreeMap< - Height, - OutputsByType<(SupplyState, Vec)>, - > = BTreeMap::new(); - // Skip coinbase (first_inputindex + 1..first_inputindex + *input_count) + .into_par_iter() .map(InputIndex::from) - .for_each(|inputindex| { - let outputindex = - inputindex_to_outputindex_iter.unwrap_get_inner(inputindex); + .map(|inputindex| { + let outputindex = inputindex_to_outputindex + .get_or_read(inputindex, &inputindex_to_outputindex_mmap) + .unwrap() + .unwrap() + .into_inner(); - let value = outputindex_to_value_iter.unwrap_get_inner(outputindex); + let value = outputindex_to_value + .get_or_read(outputindex, &outputindex_to_value_mmap) + .unwrap() + .unwrap() + .into_inner(); - let input_type = - outputindex_to_outputtype_iter.unwrap_get_inner(outputindex); + let input_type = outputindex_to_outputtype + .get_or_read(outputindex, &outputindex_to_outputtype_mmap) + .unwrap() + .unwrap() + .into_inner(); - let input_txindex = - outputindex_to_txindex_iter.unwrap_get_inner(outputindex); + if input_type.is_unspendable() { + unreachable!() + } - let input_height = - *txindex_to_height.entry(input_txindex).or_insert_with(|| { - txindex_to_height_iter.unwrap_get_inner(input_txindex) - }); + let input_txindex = outputindex_to_txindex + .get_or_read(outputindex, &outputindex_to_txindex_mmap) + .unwrap() + .unwrap() + .into_inner(); - let input_data = height_to_sent.entry(input_height).or_default(); + // let input_height = *cached_txindex_to_height + // .entry(input_txindex) + // .or_insert_with(|| { + let height = txindex_to_height + .get_or_read(input_txindex, &txindex_to_height_mmap) + .unwrap() + .unwrap() + .into_inner(); + // }); - let (sent_supply, sats_vec) = input_data.get_mut(input_type); - - sent_supply.utxos += 1; - sent_supply.value += value; - sats_vec.push(value); - }); - - height_to_sent + (height, value, input_type) + }) + .fold( + BTreeMap::::default, + |mut tree, (height, value, input_type)| { + tree.entry(height).or_default().iterate(value, input_type); + tree + }, + ) + .reduce(BTreeMap::::default, |first, second| { + let (mut source, to_consume) = if first.len() > second.len() { + (first, second) + } else { + (second, first) + }; + to_consume.into_iter().for_each(|(k, v)| { + *source.entry(k).or_default() += v; + }); + source + }) }); let received_handle = s.spawn(|| { - let mut by_type: OutputsByType<(SupplyState, Vec)> = - OutputsByType::default(); - (first_outputindex..first_outputindex + *output_count) + .into_par_iter() .map(OutputIndex::from) - .for_each(|outputindex| { - let value = - outputindex_to_value_iter_2.unwrap_get_inner(outputindex); + .map(|outputindex| { + let value = outputindex_to_value + .get_or_read(outputindex, &outputindex_to_value_mmap) + .unwrap() + .unwrap() + .into_inner(); - let output_type = - outputindex_to_outputtype_iter_2.unwrap_get_inner(outputindex); + let output_type = outputindex_to_outputtype + .get_or_read(outputindex, &outputindex_to_outputtype_mmap) + .unwrap() + .unwrap() + .into_inner(); - let (received_supply, sats_vec) = by_type.get_mut(output_type); - - received_supply.value += value; - received_supply.utxos += 1; - sats_vec.push(value); - }); - - by_type + (value, output_type) + }) + .fold( + Transacted::default, + |mut transacted, (value, output_type)| { + transacted.iterate(value, output_type); + transacted + }, + ) + .reduce(Transacted::default, |acc, transacted| acc + transacted) }); (sent_handle.join().unwrap(), received_handle.join().unwrap()) }); unspendable_supply += received + .by_type .unspendable .as_vec() .into_iter() - .map(|state| state.0.value) + .map(|state| state.value) .sum::() + height_to_unclaimed_rewards_iter.unwrap_get_inner(height); if height == Height::new(0) { - received.spendable.p2pk65.1.remove(0); - received.spendable.p2pk65.0.utxos -= 1; - received.spendable.p2pk65.0.value -= Sats::FIFTY_BTC; + received = Transacted::default(); unspendable_supply += Sats::FIFTY_BTC; } else if height == Height::new(91_842) || height == Height::new(91_880) { // Need to destroy invalid coinbases due to duplicate txids - let entry = if height == Height::new(91_842) { + if height == Height::new(91_842) { height_to_sent.entry(Height::new(91_812)).or_default() } else { height_to_sent.entry(Height::new(91_722)).or_default() - }; - entry.spendable.p2pk65.0.value += Sats::FIFTY_BTC; - entry.spendable.p2pk65.0.utxos += 1; - entry.spendable.p2pk65.1.push(Sats::FIFTY_BTC); + } + .iterate(Sats::FIFTY_BTC, OutputType::P2PK65); }; if chain_state_starting_height <= height { // RECEIVE // Push current block state before processing sends and receives - chain_state.push(BlockState::from(ReceivedBlockStateData { - received: &received, + chain_state.push(BlockState { + supply: received.spendable_supply.clone(), price, timestamp, - })); + }); self.utxos_vecs.receive(received, height, price); @@ -1117,17 +1158,12 @@ impl Vecs { // SEND - height_to_sent - .iter() - .for_each(|(height, sent_data_by_type)| { - let block_state = - chain_state.get_mut(height.unwrap_to_usize()).unwrap(); + let unsafe_chain_state = UnsafeSlice::new(&mut chain_state); - sent_data_by_type - .as_vec() - .into_iter() - .for_each(|(supply, _)| block_state.supply -= supply); - }); + height_to_sent.par_iter().for_each(|(height, sent)| unsafe { + (*unsafe_chain_state.get(height.unwrap_to_usize())).supply -= + &sent.spendable_supply; + }); self.utxos_vecs.send(height_to_sent, chain_state.as_slice()); } else { @@ -1151,6 +1187,8 @@ impl Vecs { exit.block(); + info!("Computing utxo set datasets..."); + let mut flat_vecs_ = self.utxos_vecs.as_mut_vec(); // Flush rest of values diff --git a/crates/brk_core/src/structs/dollars.rs b/crates/brk_core/src/structs/dollars.rs index ef3d25266..2a94ed41f 100644 --- a/crates/brk_core/src/structs/dollars.rs +++ b/crates/brk_core/src/structs/dollars.rs @@ -29,6 +29,7 @@ pub struct Dollars(f64); impl Dollars { pub const ZERO: Self = Self(0.0); + pub const NAN: Self = Self(f64::NAN); pub const fn mint(dollars: f64) -> Self { Self(dollars) diff --git a/crates/brk_core/src/structs/outputtype.rs b/crates/brk_core/src/structs/outputtype.rs index 1716afdf3..4a4c70c4f 100644 --- a/crates/brk_core/src/structs/outputtype.rs +++ b/crates/brk_core/src/structs/outputtype.rs @@ -45,8 +45,8 @@ impl OutputType { Self::P2WSH => true, Self::P2TR => true, Self::P2A => true, - Self::Empty => false, - Self::Unknown => false, + Self::Empty => true, + Self::Unknown => true, } } diff --git a/crates/brk_core/src/structs/sats.rs b/crates/brk_core/src/structs/sats.rs index 32a54d561..d3150e318 100644 --- a/crates/brk_core/src/structs/sats.rs +++ b/crates/brk_core/src/structs/sats.rs @@ -42,6 +42,10 @@ impl Sats { pub fn is_zero(&self) -> bool { *self == Self::ZERO } + + pub fn is_not_zero(&self) -> bool { + *self != Self::ZERO + } } impl Add for Sats { @@ -140,6 +144,12 @@ impl From for f64 { } } +impl From for usize { + fn from(value: Sats) -> Self { + value.0 as usize + } +} + impl From for Sats { fn from(value: Amount) -> Self { Self(value.to_sat()) diff --git a/crates/brk_fetcher/src/lib.rs b/crates/brk_fetcher/src/lib.rs index 42cae2e0d..fcffb6325 100644 --- a/crates/brk_fetcher/src/lib.rs +++ b/crates/brk_fetcher/src/lib.rs @@ -35,7 +35,7 @@ impl Fetcher { pub fn get_date(&mut self, date: Date) -> color_eyre::Result { self.kraken .get_from_1d(&date) - .or_else(|e| { + .or_else(|_| { // eprintln!("{e}"); self.binance.get_from_1d(&date) }) diff --git a/crates/brk_query/src/vec_trees.rs b/crates/brk_query/src/vec_trees.rs index 8e13a6e6c..5e70262b3 100644 --- a/crates/brk_query/src/vec_trees.rs +++ b/crates/brk_query/src/vec_trees.rs @@ -44,7 +44,7 @@ impl<'a> VecTrees<'a> { .id_to_index_to_vec .entry(key.clone()) .or_default() - .insert(index.clone(), vec); + .insert(index, vec); if prev.is_some() { dbg!(&key, str, name); panic!() diff --git a/crates/brk_vec/src/structs/unsafe_slice.rs b/crates/brk_vec/src/structs/unsafe_slice.rs index 8f354e0ca..37bdeb6f4 100644 --- a/crates/brk_vec/src/structs/unsafe_slice.rs +++ b/crates/brk_vec/src/structs/unsafe_slice.rs @@ -19,6 +19,11 @@ impl<'a, T> UnsafeSlice<'a, T> { } } + /// SAFETY: It is UB + pub fn get(&self, i: usize) -> *mut T { + self.0[i].get() + } + pub fn copy_slice(&self, start: usize, slice: &[T]) where T: Copy, diff --git a/crates/brk_vec/src/variants/eager.rs b/crates/brk_vec/src/variants/eager.rs index 165918b87..4b836887b 100644 --- a/crates/brk_vec/src/variants/eager.rs +++ b/crates/brk_vec/src/variants/eager.rs @@ -8,11 +8,13 @@ use std::{ time::Duration, }; +use arc_swap::ArcSwap; use brk_core::{ Bitcoin, CheckedSub, Close, Date, DateIndex, Dollars, Height, Sats, StoredUsize, TxIndex, }; use brk_exit::Exit; use log::info; +use memmap2::Mmap; use crate::{ AnyCollectableVec, AnyIterableVec, AnyVec, BoxedVecIterator, CollectableVec, Compressed, Error, @@ -97,6 +99,14 @@ where self.inner.path() } + pub fn get_or_read(&self, index: I, mmap: &Mmap) -> Result>> { + self.inner.get_or_read(index, mmap) + } + + pub fn mmap(&self) -> &ArcSwap { + self.inner.mmap() + } + pub fn inner_version(&self) -> Version { self.inner.version() } diff --git a/websites/kibo.money/scripts/options.js b/websites/kibo.money/scripts/options.js index ff776b4ab..a5092febb 100644 --- a/websites/kibo.money/scripts/options.js +++ b/websites/kibo.money/scripts/options.js @@ -352,18 +352,19 @@ function createPartialOptions(colors) { * * @param {Object} args * @param {string} args.name + * @param {string} args.legend * @param {string} args.title * @param {VecIdRatioCapBase} args.key * @param {Color} [args.color] */ - function createPriceWithRatio({ name, title, key, color }) { + function createPriceWithRatio({ name, title, legend, key, color }) { return { name, title, top: [ createBaseSeries({ key, - name: "Average", + name: legend, color, }), createBaseSeries({ @@ -633,6 +634,7 @@ function createPartialOptions(colors) { createPriceWithRatio({ key: `${key}realized-price`, name: "realized price", + legend: "realized", title: `${title} Realized Price`, }), ], @@ -747,6 +749,7 @@ function createPartialOptions(colors) { key: `${key}-sma`, name, title: `${name} Market Price Moving Average`, + legend: "average", color: colors[`_${key}`], }), ), @@ -785,6 +788,11 @@ function createPartialOptions(colors) { ], })), }, + ], + }, + { + name: "Investing", + tree: [ { name: "DCA vs Lump sum", tree: [ @@ -1581,6 +1589,71 @@ function createPartialOptions(colors) { }), ], }, + { + name: "Range", + tree: [ + createUTXOGroupFolder({ + key: "from-1d-to-1w", + name: "1d..1w", + title: "Between 1 Day and 1 Week", + }), + createUTXOGroupFolder({ + key: "from-1w-to-1m", + name: "1w..1m", + title: "Between 1 Week and 1 Month", + }), + createUTXOGroupFolder({ + key: "from-1m-to-3m", + name: "1m..3m", + title: "Between 1 Month and 3 Months", + }), + createUTXOGroupFolder({ + key: "from-3m-to-6m", + name: "3m..6m", + title: "Between 3 Month and 6 Months", + }), + createUTXOGroupFolder({ + key: "from-6m-to-1y", + name: "6m..1y", + title: "Between 6 Months and 1 Year", + }), + createUTXOGroupFolder({ + key: "from-1y-to-2y", + name: "1y..2y", + title: "Between 1 Year and 2 Years", + }), + createUTXOGroupFolder({ + key: "from-2y-to-3y", + name: "2y..3y", + title: "Between 2 Years and 3 Years", + }), + createUTXOGroupFolder({ + key: "from-3y-to-4y", + name: "3y..4y", + title: "Between 3 Years and 4 Years", + }), + createUTXOGroupFolder({ + key: "from-4y-to-5y", + name: "4y..5y", + title: "Between 4 Years and 5 Years", + }), + createUTXOGroupFolder({ + key: "from-5y-to-7y", + name: "5y..7y", + title: "Between 5 Years and 7 Years", + }), + createUTXOGroupFolder({ + key: "from-7y-to-10y", + name: "7y..10y", + title: "Between 7 Years and 10 Years", + }), + createUTXOGroupFolder({ + key: "from-10y-to-15y", + name: "10y..15y", + title: "Between 10 Years and 15 Years", + }), + ], + }, { name: "Epoch", tree: [ @@ -1615,74 +1688,79 @@ function createPartialOptions(colors) { name: "size", tree: [ createUTXOGroupFolder({ - key: "from-1sat-10sats", + key: "0sat", + name: "0sat", + title: "0 sat", + }), + createUTXOGroupFolder({ + key: "from-1sat-to-10sats", name: "1sat..10sats", - title: "UTXOs from 1 sat to 10 sats", + title: "From 1 sat to 10 sats", }), createUTXOGroupFolder({ - key: "from-10sats-100sats", + key: "from-10sats-to-100sats", name: "10sat..100sats", - title: "UTXOs from 10 sats to 100 sats", + title: "From 10 sats to 100 sats", }), createUTXOGroupFolder({ - key: "from-100sats-1-000sats", + key: "from-100sats-to-1-000sats", name: "100sat..1_000sats", - title: "UTXOs from 100 sats to 1,000 sats", + title: "From 100 sats to 1,000 sats", }), createUTXOGroupFolder({ - key: "from-1-000sats-10-000sats", + key: "from-1-000sats-to-10-000sats", name: "1_000sat..10_000sats", - title: "UTXOs from 1,000 sats to 10,000 sats", + title: "From 1,000 sats to 10,000 sats", }), createUTXOGroupFolder({ - key: "from-10-000sats-100-000sats", + key: "from-10-000sats-to-100-000sats", name: "10_000sat..100_000sats", - title: "UTXOs from 10,000 sats to 100,000 sats", + title: "From 10,000 sats to 100,000 sats", }), createUTXOGroupFolder({ - key: "from-100-000sats-1-000-000sats", + key: "from-100-000sats-to-1-000-000sats", name: "100_000sat..1_000_000sats", - title: "UTXOs from 100,000 sats to 1,000,000 sats", + title: "From 100,000 sats to 1,000,000 sats", }), createUTXOGroupFolder({ - key: "from-1-000-000sats-10-000-000sats", + key: "from-1-000-000sats-to-10-000-000sats", name: "1_000_000sat..10_000_000sats", - title: "UTXOs from 1,000,000 sats to 10,000,000 sats", + title: "From 1,000,000 sats to 10,000,000 sats", }), createUTXOGroupFolder({ - key: "from-10-000-000sats-1btc", + key: "from-10-000-000sats-to-1btc", name: "10_000_000sat..1btc", - title: "UTXOs from 10,000,000 sats to 1 BTC", + title: "From 10,000,000 sats to 1 BTC", }), createUTXOGroupFolder({ - key: "from-1btc-10btc", + key: "from-1btc-to-10btc", name: "1btc..10btc", - title: "UTXOs from 1 BTC to 10 BTC", + title: "From 1 BTC to 10 BTC", }), createUTXOGroupFolder({ - key: "from-10btc-100btc", + key: "from-10btc-to-100btc", name: "10btc..100btc", - title: "UTXOs from 10 BTC to 100 BTC", + title: "From 10 BTC to 100 BTC", }), createUTXOGroupFolder({ - key: "from-100btc-1-000btc", + key: "from-100btc-to-1-000btc", name: "100btc..1_000btc", - title: "UTXOs from 100 BTC to 1,000 BTC", + title: "From 100 BTC to 1,000 BTC", }), createUTXOGroupFolder({ - key: "from-1-000btc-10-000btc", + key: "from-1-000btc-to-10-000btc", name: "1_000btc..10_000btc", - title: "UTXOs from 1,000 BTC to 10,000 BTC", + title: "From 1,000 BTC to 10,000 BTC", }), createUTXOGroupFolder({ - key: "from-10-000btc-100-000btc", + key: "from-10-000btc-to-100-000btc", name: "10_000btc..100_000btc", - title: "UTXOs from 10,000 BTC to 100,000 BTC", + title: "From 10,000 BTC to 100,000 BTC", }), createUTXOGroupFolder({ key: "from-100-000btc", - name: "100_000btc..inf", - title: "UTXOs from 100,000 BTC", + name: "100_000btc+", + title: "From 100,000 BTC", }), ], }, @@ -1739,6 +1817,11 @@ function createPartialOptions(colors) { name: "unknown", title: "Pay To Unknown", }), + createUTXOGroupFolder({ + key: "empty", + name: "empty", + title: "Pay To Empty", + }), ], }, { diff --git a/websites/kibo.money/scripts/vecid-to-indexes.js b/websites/kibo.money/scripts/vecid-to-indexes.js index 9fef3e889..64eef9bd7 100644 --- a/websites/kibo.money/scripts/vecid-to-indexes.js +++ b/websites/kibo.money/scripts/vecid-to-indexes.js @@ -30,2899 +30,3408 @@ /** @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 */ export function createVecIdToIndexes() { - const DateIndex = /** @satisfies {DateIndex} */ (0); - const DecadeIndex = /** @satisfies {DecadeIndex} */ (1); - const DifficultyEpoch = /** @satisfies {DifficultyEpoch} */ (2); - const EmptyOutputIndex = /** @satisfies {EmptyOutputIndex} */ (3); - const HalvingEpoch = /** @satisfies {HalvingEpoch} */ (4); - const Height = /** @satisfies {Height} */ (5); - const InputIndex = /** @satisfies {InputIndex} */ (6); - const MonthIndex = /** @satisfies {MonthIndex} */ (7); - const OpReturnIndex = /** @satisfies {OpReturnIndex} */ (8); - const OutputIndex = /** @satisfies {OutputIndex} */ (9); - const P2AIndex = /** @satisfies {P2AIndex} */ (10); - const P2MSIndex = /** @satisfies {P2MSIndex} */ (11); - const P2PK33Index = /** @satisfies {P2PK33Index} */ (12); - const P2PK65Index = /** @satisfies {P2PK65Index} */ (13); - const P2PKHIndex = /** @satisfies {P2PKHIndex} */ (14); - const P2SHIndex = /** @satisfies {P2SHIndex} */ (15); - const P2TRIndex = /** @satisfies {P2TRIndex} */ (16); - const P2WPKHIndex = /** @satisfies {P2WPKHIndex} */ (17); - const P2WSHIndex = /** @satisfies {P2WSHIndex} */ (18); - const QuarterIndex = /** @satisfies {QuarterIndex} */ (19); - const TxIndex = /** @satisfies {TxIndex} */ (20); - const UnknownOutputIndex = /** @satisfies {UnknownOutputIndex} */ (21); - const WeekIndex = /** @satisfies {WeekIndex} */ (22); - const YearIndex = /** @satisfies {YearIndex} */ (23); + return /** @type {const} */ ({ - "0": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "100": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "10y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "13d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "144d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1d-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1m-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1w-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "1y-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "200w-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "21d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "2y-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "34d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3m-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3m-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3m-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3m-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "3y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "4y-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "50": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "55d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "5y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6m-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6m-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6m-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6m-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "6y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "89d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8d-sma-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-dca-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-dca-cagr": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-dca-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-dca-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "8y-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "ath": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "base-size": [TxIndex], - "block-count": [Height], - "block-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-interval-10p": [DateIndex], - "block-interval-25p": [DateIndex], - "block-interval-75p": [DateIndex], - "block-interval-90p": [DateIndex], - "block-interval-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-interval-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-interval-median": [DateIndex], - "block-interval-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-size-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-vbytes-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "block-weight-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "blockhash": [Height], - "close": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "close-in-cents": [DateIndex, Height], - "close-in-sats": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase": [Height], - "coinbase-10p": [DateIndex], - "coinbase-25p": [DateIndex], - "coinbase-75p": [DateIndex], - "coinbase-90p": [DateIndex], - "coinbase-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-btc": [Height], - "coinbase-in-btc-10p": [DateIndex], - "coinbase-in-btc-25p": [DateIndex], - "coinbase-in-btc-75p": [DateIndex], - "coinbase-in-btc-90p": [DateIndex], - "coinbase-in-btc-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-btc-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-btc-median": [DateIndex], - "coinbase-in-btc-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-btc-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-usd": [Height], - "coinbase-in-usd-10p": [DateIndex], - "coinbase-in-usd-25p": [DateIndex], - "coinbase-in-usd-75p": [DateIndex], - "coinbase-in-usd-90p": [DateIndex], - "coinbase-in-usd-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-usd-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-usd-median": [DateIndex], - "coinbase-in-usd-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-in-usd-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-median": [DateIndex], - "coinbase-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "coinbase-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "date": [DateIndex, Height], - "date-fixed": [Height], - "dateindex": [DateIndex, Height], - "dateindex-count": [MonthIndex, WeekIndex], - "days-since-ath": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2015-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2015-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2015-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2016-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2016-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2016-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2017-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2017-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2017-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2018-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2018-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2018-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2019-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2019-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2019-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2020-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2020-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2020-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2021-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2021-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2021-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2022-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2022-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2022-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2023-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2023-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2023-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2024-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2024-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2024-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2025-avg-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2025-returns": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "dca-class-2025-stack": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "decadeindex": [DecadeIndex, YearIndex], - "difficulty": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "difficultyepoch": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "drawdown": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "emptyoutput-count": [Height], - "emptyoutput-count-10p": [DateIndex], - "emptyoutput-count-25p": [DateIndex], - "emptyoutput-count-75p": [DateIndex], - "emptyoutput-count-90p": [DateIndex], - "emptyoutput-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "emptyoutput-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "emptyoutput-count-median": [DateIndex], - "emptyoutput-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "emptyoutput-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "emptyoutputindex": [EmptyOutputIndex], - "epoch-0-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-0-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-1-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-2-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-3-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "epoch-4-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "exact-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee": [TxIndex], - "fee-10p": [Height], - "fee-25p": [Height], - "fee-75p": [Height], - "fee-90p": [Height], - "fee-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-btc-10p": [Height], - "fee-in-btc-25p": [Height], - "fee-in-btc-75p": [Height], - "fee-in-btc-90p": [Height], - "fee-in-btc-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-btc-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-btc-median": [Height], - "fee-in-btc-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-btc-sum": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-usd-10p": [Height], - "fee-in-usd-25p": [Height], - "fee-in-usd-75p": [Height], - "fee-in-usd-90p": [Height], - "fee-in-usd-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-usd-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-usd-median": [Height], - "fee-in-usd-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-in-usd-sum": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-median": [Height], - "fee-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "fee-sum": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "feerate": [TxIndex], - "feerate-10p": [Height], - "feerate-25p": [Height], - "feerate-75p": [Height], - "feerate-90p": [Height], - "feerate-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "feerate-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "feerate-median": [Height], - "feerate-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "first-dateindex": [MonthIndex, WeekIndex], - "first-emptyoutputindex": [Height], - "first-height": [DateIndex, DifficultyEpoch, HalvingEpoch], - "first-inputindex": [Height, TxIndex], - "first-monthindex": [QuarterIndex, YearIndex], - "first-opreturnindex": [Height], - "first-outputindex": [Height, TxIndex], - "first-p2aindex": [Height], - "first-p2msindex": [Height], - "first-p2pk33index": [Height], - "first-p2pk65index": [Height], - "first-p2pkhindex": [Height], - "first-p2shindex": [Height], - "first-p2trindex": [Height], - "first-p2wpkhindex": [Height], - "first-p2wshindex": [Height], - "first-txindex": [Height], - "first-unknownoutputindex": [Height], - "first-yearindex": [DecadeIndex], - "from-1-000-000sats-10-000-000sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000-000sats-10-000-000sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000btc-10-000btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1-000sats-10-000sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000-000sats-1btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000btc-100-000btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10-000sats-100-000sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100-000sats-1-000-000sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100btc-1-000btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-100sats-1-000sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10btc-100btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10sats-100sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-10y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-15y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1btc-10btc-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1d-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1sat-10sats-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1w-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-1y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-2y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-3y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-4y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-5y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6m-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-6y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-7y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "from-8y-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "halvingepoch": [DateIndex, DecadeIndex, HalvingEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "height": [Height, TxIndex], - "height-count": [DateIndex, DifficultyEpoch], - "high": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "high-in-cents": [DateIndex, Height], - "high-in-sats": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "input-count": [TxIndex], - "input-count-10p": [Height], - "input-count-25p": [Height], - "input-count-75p": [Height], - "input-count-90p": [Height], - "input-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "input-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "input-count-median": [Height], - "input-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "input-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "input-value": [TxIndex], - "inputindex": [InputIndex], - "interval": [Height], - "is-coinbase": [TxIndex], - "is-explicitly-rbf": [TxIndex], - "low": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "low-in-cents": [DateIndex, Height], - "low-in-sats": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "lth-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "marketcap": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "max-days-between-ath": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "max-years-between-ath": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "monthindex": [DateIndex, MonthIndex], - "monthindex-count": [QuarterIndex, YearIndex], - "ohlc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "ohlc-in-cents": [DateIndex, Height], - "ohlc-in-sats": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "open": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "open-in-cents": [DateIndex, Height], - "open-in-sats": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "opreturn-count": [Height], - "opreturn-count-10p": [DateIndex], - "opreturn-count-25p": [DateIndex], - "opreturn-count-75p": [DateIndex], - "opreturn-count-90p": [DateIndex], - "opreturn-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "opreturn-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "opreturn-count-median": [DateIndex], - "opreturn-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "opreturn-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "opreturnindex": [OpReturnIndex], - "output-count": [TxIndex], - "output-count-10p": [Height], - "output-count-25p": [Height], - "output-count-75p": [Height], - "output-count-90p": [Height], - "output-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "output-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "output-count-median": [Height], - "output-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "output-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "output-value": [TxIndex], - "outputindex": [InputIndex, OutputIndex], - "outputtype": [OutputIndex], - "outputtypeindex": [OutputIndex], - "p2a-count": [Height], - "p2a-count-10p": [DateIndex], - "p2a-count-25p": [DateIndex], - "p2a-count-75p": [DateIndex], - "p2a-count-90p": [DateIndex], - "p2a-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-count-median": [DateIndex], - "p2a-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2a-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2abytes": [P2AIndex], - "p2aindex": [P2AIndex], - "p2ms-count": [Height], - "p2ms-count-10p": [DateIndex], - "p2ms-count-25p": [DateIndex], - "p2ms-count-75p": [DateIndex], - "p2ms-count-90p": [DateIndex], - "p2ms-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-count-median": [DateIndex], - "p2ms-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2ms-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2msindex": [P2MSIndex], - "p2pk33-count": [Height], - "p2pk33-count-10p": [DateIndex], - "p2pk33-count-25p": [DateIndex], - "p2pk33-count-75p": [DateIndex], - "p2pk33-count-90p": [DateIndex], - "p2pk33-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-count-median": [DateIndex], - "p2pk33-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk33bytes": [P2PK33Index], - "p2pk33index": [P2PK33Index], - "p2pk65-count": [Height], - "p2pk65-count-10p": [DateIndex], - "p2pk65-count-25p": [DateIndex], - "p2pk65-count-75p": [DateIndex], - "p2pk65-count-90p": [DateIndex], - "p2pk65-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-count-median": [DateIndex], - "p2pk65-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pk65bytes": [P2PK65Index], - "p2pk65index": [P2PK65Index], - "p2pkh-count": [Height], - "p2pkh-count-10p": [DateIndex], - "p2pkh-count-25p": [DateIndex], - "p2pkh-count-75p": [DateIndex], - "p2pkh-count-90p": [DateIndex], - "p2pkh-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-count-median": [DateIndex], - "p2pkh-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkh-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2pkhbytes": [P2PKHIndex], - "p2pkhindex": [P2PKHIndex], - "p2sh-count": [Height], - "p2sh-count-10p": [DateIndex], - "p2sh-count-25p": [DateIndex], - "p2sh-count-75p": [DateIndex], - "p2sh-count-90p": [DateIndex], - "p2sh-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-count-median": [DateIndex], - "p2sh-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2sh-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2shbytes": [P2SHIndex], - "p2shindex": [P2SHIndex], - "p2tr-count": [Height], - "p2tr-count-10p": [DateIndex], - "p2tr-count-25p": [DateIndex], - "p2tr-count-75p": [DateIndex], - "p2tr-count-90p": [DateIndex], - "p2tr-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-count-median": [DateIndex], - "p2tr-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2tr-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2trbytes": [P2TRIndex], - "p2trindex": [P2TRIndex], - "p2wpkh-count": [Height], - "p2wpkh-count-10p": [DateIndex], - "p2wpkh-count-25p": [DateIndex], - "p2wpkh-count-75p": [DateIndex], - "p2wpkh-count-90p": [DateIndex], - "p2wpkh-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-count-median": [DateIndex], - "p2wpkh-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkh-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wpkhbytes": [P2WPKHIndex], - "p2wpkhindex": [P2WPKHIndex], - "p2wsh-count": [Height], - "p2wsh-count-10p": [DateIndex], - "p2wsh-count-25p": [DateIndex], - "p2wsh-count-75p": [DateIndex], - "p2wsh-count-90p": [DateIndex], - "p2wsh-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-count-median": [DateIndex], - "p2wsh-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wsh-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "p2wshbytes": [P2WSHIndex], - "p2wshindex": [P2WSHIndex], - "price-10y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-1d-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-1m-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-1w-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-1y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-2y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-3m-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-3y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-4y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-5y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-6m-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-6y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "price-8y-ago": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "quarterindex": [MonthIndex, QuarterIndex], - "rawlocktime": [TxIndex], - "realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "sth-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy": [Height], - "subsidy-10p": [DateIndex], - "subsidy-25p": [DateIndex], - "subsidy-75p": [DateIndex], - "subsidy-90p": [DateIndex], - "subsidy-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-btc": [Height], - "subsidy-in-btc-10p": [DateIndex], - "subsidy-in-btc-25p": [DateIndex], - "subsidy-in-btc-75p": [DateIndex], - "subsidy-in-btc-90p": [DateIndex], - "subsidy-in-btc-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-btc-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-btc-median": [DateIndex], - "subsidy-in-btc-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-btc-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-usd": [Height], - "subsidy-in-usd-10p": [DateIndex], - "subsidy-in-usd-25p": [DateIndex], - "subsidy-in-usd-75p": [DateIndex], - "subsidy-in-usd-90p": [DateIndex], - "subsidy-in-usd-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-usd-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-usd-median": [DateIndex], - "subsidy-in-usd-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-in-usd-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-median": [DateIndex], - "subsidy-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "subsidy-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "timestamp": [DateIndex, DecadeIndex, DifficultyEpoch, HalvingEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "timestamp-fixed": [Height], - "total-block-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-block-size": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-block-vbytes": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-block-weight": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-coinbase": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-coinbase-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-coinbase-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-emptyoutput-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-fee": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-fee-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-fee-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-input-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-opreturn-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-output-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2a-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2ms-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2pk33-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2pk65-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2pkh-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2sh-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2tr-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2wpkh-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-p2wsh-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-size": [Height, TxIndex], - "total-subsidy": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-subsidy-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-subsidy-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-tx-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-tx-v1": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-tx-v2": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-tx-v3": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-unclaimed-rewards": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-unclaimed-rewards-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-unclaimed-rewards-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "total-unknownoutput-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-count": [Height], - "tx-count-10p": [DateIndex], - "tx-count-25p": [DateIndex], - "tx-count-75p": [DateIndex], - "tx-count-90p": [DateIndex], - "tx-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-count-median": [DateIndex], - "tx-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-v1": [Height], - "tx-v1-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-v2": [Height], - "tx-v2-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-v3": [Height], - "tx-v3-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-vsize-10p": [Height], - "tx-vsize-25p": [Height], - "tx-vsize-75p": [Height], - "tx-vsize-90p": [Height], - "tx-vsize-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-vsize-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-vsize-median": [Height], - "tx-vsize-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-weight-10p": [Height], - "tx-weight-25p": [Height], - "tx-weight-75p": [Height], - "tx-weight-90p": [Height], - "tx-weight-average": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-weight-max": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "tx-weight-median": [Height], - "tx-weight-min": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "txid": [TxIndex], - "txindex": [EmptyOutputIndex, OpReturnIndex, OutputIndex, P2MSIndex, TxIndex, UnknownOutputIndex], - "txindex-count": [Height], - "txversion": [TxIndex], - "unclaimed-rewards": [Height], - "unclaimed-rewards-in-btc": [Height], - "unclaimed-rewards-in-btc-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unclaimed-rewards-in-usd": [Height], - "unclaimed-rewards-in-usd-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unclaimed-rewards-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-cap": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-1m-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-1w-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-1y-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-1y-sma-momentum-oscillator": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-m3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p0-1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p0-1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p0-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p0-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p1": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p1-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p1sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p1sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p2sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p2sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p3sd": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p3sd-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99-5": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99-5-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99-9": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99-9-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-p99-as-price": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-sma": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-standard-deviation": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-realized-price-ratio-zscore": [DateIndex, DecadeIndex, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknown-utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknownoutput-count": [Height], - "unknownoutput-count-10p": [DateIndex], - "unknownoutput-count-25p": [DateIndex], - "unknownoutput-count-75p": [DateIndex], - "unknownoutput-count-90p": [DateIndex], - "unknownoutput-count-average": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknownoutput-count-max": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknownoutput-count-median": [DateIndex], - "unknownoutput-count-min": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknownoutput-count-sum": [DateIndex, DecadeIndex, DifficultyEpoch, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unknownoutputindex": [UnknownOutputIndex], - "unspendable-supply": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unspendable-supply-in-btc": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "unspendable-supply-in-usd": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "utxo-count": [DateIndex, DecadeIndex, DifficultyEpoch, Height, MonthIndex, QuarterIndex, WeekIndex, YearIndex], - "value": [InputIndex, OutputIndex], - "vbytes": [Height], - "vsize": [TxIndex], - "weekindex": [DateIndex, WeekIndex], - "weight": [Height, TxIndex], - "yearindex": [MonthIndex, YearIndex], - "yearindex-count": [DecadeIndex], + "0": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "0sat-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "0sat-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "0sat-utxo-count": [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-sma": [0, 1, 7, 19, 22, 23], + "13d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "13d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "144d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "144d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "1m-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "1m-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "1w-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "1w-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "1y-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "1y-sma-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "1y-sma-ratio-zscore": [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-sma": [0, 1, 7, 19, 22, 23], + "200w-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "200w-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "21d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "21d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "2y-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "2y-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "34d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "34d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "4y-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "4y-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "55d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "55d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "89d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "89d-sma-ratio-standard-deviation": [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-sma": [0, 1, 7, 19, 22, 23], + "8d-sma-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "8d-sma-ratio-standard-deviation": [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], + "ath": [0, 1, 7, 19, 22, 23], + "base-size": [20], + "block-count": [5], + "block-count-sum": [0, 1, 2, 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-sum": [0, 1, 2, 7, 19, 22, 23], + "block-vbytes-sum": [0, 1, 2, 7, 19, 22, 23], + "block-weight-sum": [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": [5], + "coinbase-10p": [0], + "coinbase-25p": [0], + "coinbase-75p": [0], + "coinbase-90p": [0], + "coinbase-average": [0, 1, 2, 7, 19, 22, 23], + "coinbase-in-btc": [5], + "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-btc-sum": [0, 1, 2, 7, 19, 22, 23], + "coinbase-in-usd": [5], + "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-in-usd-sum": [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], + "coinbase-sum": [0, 1, 2, 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, 7, 19, 22, 23], + "empty-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "empty-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "empty-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "empty-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "emptyoutput-count": [5], + "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], + "emptyoutput-count-sum": [0, 1, 2, 7, 19, 22, 23], + "emptyoutputindex": [3], + "epoch-0-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "epoch-0-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "epoch-0-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "epoch-0-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "epoch-1-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "epoch-1-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "epoch-1-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "epoch-2-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "epoch-2-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "epoch-2-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "epoch-3-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "epoch-3-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "epoch-3-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "epoch-4-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "epoch-4-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "epoch-4-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "exact-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "fee": [20], + "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-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-btc-sum": [0, 1, 2, 5, 7, 19, 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-in-usd-sum": [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], + "fee-sum": [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-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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-supply-in-usd": [0, 1, 2, 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-000btc-to-10-000btc-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-100-000btc-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-100-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-100-000btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-100btc-to-1-000btc-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-utxo-count": [0, 1, 2, 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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-100sats-to-1-000sats-realized-price-ratio-standard-deviation": [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-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10btc-to-100btc-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-10btc-to-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-10btc-to-100btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10sats-to-100sats-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-10sats-to-100sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-10sats-to-100sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-10y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-10y-to-15y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-10y-to-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-10y-to-15y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-15y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-15y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1btc-to-10btc-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1btc-to-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1btc-to-10btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1d-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1d-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1d-to-1w-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1d-to-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1d-to-1w-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1m-to-3m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1sat-to-10sats-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1sat-to-10sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1sat-to-10sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1w-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1w-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1w-to-1m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1w-to-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1w-to-1m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-1y-to-2y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1y-to-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1y-to-2y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-2m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-2m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-2y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-2y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-2y-to-3y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-2y-to-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-2y-to-3y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-3m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-3m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-3m-to-6m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-3y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-3y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-3y-to-4y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-3y-to-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-3y-to-4y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-4m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-4m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-4y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-4y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-4y-to-5y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-4y-to-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-4y-to-5y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-5m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-5m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-5y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-5y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-5y-to-7y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-6m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-6m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-6m-to-1y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-6m-to-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-6m-to-1y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-6y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-6y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-7y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-7y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-7y-to-10y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "from-8y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-8y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-utxo-count": [0, 1, 2, 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": [20], + "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-count-sum": [0, 1, 2, 5, 7, 19, 22, 23], + "input-value": [20], + "inputindex": [6], + "interval": [5], + "is-coinbase": [20], + "is-explicitly-rbf": [20], + "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-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "lth-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "lth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "lth-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "marketcap": [0, 1, 7, 19, 22, 23], + "max-days-between-ath": [0, 1, 7, 19, 22, 23], + "max-years-between-ath": [0, 1, 7, 19, 22, 23], + "monthindex": [0, 7], + "monthindex-count": [19, 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": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "opreturnindex": [8], + "output-count": [20], + "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-count-sum": [0, 1, 2, 5, 7, 19, 22, 23], + "output-value": [20], + "outputindex": [6, 9], + "outputtype": [9], + "outputtypeindex": [9], + "p2a-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2a-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2a-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2a-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2a-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2abytes": [10], + "p2aindex": [10], + "p2ms-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2ms-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2ms-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2ms-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2ms-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2msindex": [11], + "p2pk33-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pk33-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2pk33-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2pk33-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2pk33-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33bytes": [12], + "p2pk33index": [12], + "p2pk65-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pk65-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2pk65-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2pk65-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2pk65-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65bytes": [13], + "p2pk65index": [13], + "p2pkh-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pkh-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2pkh-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2pkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2pkh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkhbytes": [14], + "p2pkhindex": [14], + "p2sh-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2sh-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2sh-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2sh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2sh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2shbytes": [15], + "p2shindex": [15], + "p2tr-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2tr-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2tr-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2tr-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2tr-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2trbytes": [16], + "p2trindex": [16], + "p2wpkh-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2wpkh-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2wpkh-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2wpkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2wpkh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkhbytes": [17], + "p2wpkhindex": [17], + "p2wsh-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "p2wsh-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "p2wsh-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "p2wsh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "p2wsh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-utxo-count": [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-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-sma": [0, 1, 7, 19, 22, 23], + "realized-price-ratio-1y-sma-momentum-oscillator": [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-sma": [0, 1, 7, 19, 22, 23], + "realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "sth-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "sth-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "sth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "sth-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "subsidy": [5], + "subsidy-10p": [0], + "subsidy-25p": [0], + "subsidy-75p": [0], + "subsidy-90p": [0], + "subsidy-average": [0, 1, 2, 7, 19, 22, 23], + "subsidy-in-btc": [5], + "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-btc-sum": [0, 1, 2, 7, 19, 22, 23], + "subsidy-in-usd": [5], + "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-in-usd-sum": [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], + "subsidy-sum": [0, 1, 2, 7, 19, 22, 23], + "supply": [0, 1, 2, 5, 7, 19, 22, 23], + "supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "timestamp": [0, 1, 2, 4, 5, 7, 19, 22, 23], + "timestamp-fixed": [5], + "total-block-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-block-size": [0, 1, 2, 5, 7, 19, 22, 23], + "total-block-vbytes": [0, 1, 2, 5, 7, 19, 22, 23], + "total-block-weight": [0, 1, 2, 5, 7, 19, 22, 23], + "total-coinbase": [0, 1, 2, 5, 7, 19, 22, 23], + "total-coinbase-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "total-coinbase-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "total-emptyoutput-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-fee": [0, 1, 2, 5, 7, 19, 22, 23], + "total-fee-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "total-fee-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "total-input-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-opreturn-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-output-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2a-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2ms-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2pk33-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2pk65-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2pkh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2sh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2tr-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2wpkh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-p2wsh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-size": [5, 20], + "total-subsidy": [0, 1, 2, 5, 7, 19, 22, 23], + "total-subsidy-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "total-subsidy-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "total-tx-count": [0, 1, 2, 5, 7, 19, 22, 23], + "total-tx-v1": [0, 1, 2, 5, 7, 19, 22, 23], + "total-tx-v2": [0, 1, 2, 5, 7, 19, 22, 23], + "total-tx-v3": [0, 1, 2, 5, 7, 19, 22, 23], + "total-unclaimed-rewards": [0, 1, 2, 5, 7, 19, 22, 23], + "total-unclaimed-rewards-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "total-unclaimed-rewards-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "total-unknownoutput-count": [0, 1, 2, 5, 7, 19, 22, 23], + "tx-count": [5], + "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-count-sum": [0, 1, 2, 7, 19, 22, 23], + "tx-v1": [5], + "tx-v1-sum": [0, 1, 2, 7, 19, 22, 23], + "tx-v2": [5], + "tx-v2-sum": [0, 1, 2, 7, 19, 22, 23], + "tx-v3": [5], + "tx-v3-sum": [0, 1, 2, 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": [5], + "unclaimed-rewards-in-btc": [5], + "unclaimed-rewards-in-btc-sum": [0, 1, 2, 7, 19, 22, 23], + "unclaimed-rewards-in-usd": [5], + "unclaimed-rewards-in-usd-sum": [0, 1, 2, 7, 19, 22, 23], + "unclaimed-rewards-sum": [0, 1, 2, 7, 19, 22, 23], + "unknown-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-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-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-sma": [0, 1, 7, 19, 22, 23], + "unknown-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "unknown-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "unknown-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "unknownoutput-count": [5], + "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], + "unknownoutput-count-sum": [0, 1, 2, 7, 19, 22, 23], + "unknownoutputindex": [21], + "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], + "utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "value": [6, 9], + "vbytes": [5], + "vsize": [20], + "weekindex": [0, 22], + "weight": [5, 20], + "yearindex": [7, 23], + "yearindex-count": [1], }); } /** @typedef {ReturnType} VecIdToIndexes */