diff --git a/.gitignore b/.gitignore index 5fd6c12b3..fc8f8ea43 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,6 @@ _outputs # Logs .log + +# Cloudflare +cloudflared diff --git a/crates/brk_computer/src/vecs/grouped/value_from_dateindex.rs b/crates/brk_computer/src/vecs/grouped/value_from_dateindex.rs index 503d528b5..87195f2f1 100644 --- a/crates/brk_computer/src/vecs/grouped/value_from_dateindex.rs +++ b/crates/brk_computer/src/vecs/grouped/value_from_dateindex.rs @@ -1,9 +1,9 @@ use std::path::Path; -use brk_core::{Bitcoin, DateIndex, Dollars, Sats, Version}; +use brk_core::{Bitcoin, DateIndex, Dollars, Result, Sats, Version}; use brk_exit::Exit; use brk_indexer::Indexer; -use brk_vec::{AnyCollectableVec, CollectableVec, Format, StoredVec}; +use brk_vec::{AnyCollectableVec, CollectableVec, EagerVec, Format, StoredVec}; use crate::vecs::{Indexes, fetched, grouped::ComputedVecsFromDateIndex, indexes}; @@ -59,37 +59,37 @@ impl ComputedValueVecsFromDateIndex { }) } - // pub fn compute_all( - // &mut self, - // indexer: &Indexer, - // indexes: &indexes::Vecs, - // fetched: Option<&fetched::Vecs>, - // starting_indexes: &Indexes, - // exit: &Exit, - // mut compute: F, - // ) -> color_eyre::Result<()> - // where - // F: FnMut( - // &mut EagerVec, - // &Indexer, - // &indexes::Vecs, - // &Indexes, - // &Exit, - // ) -> Result<()>, - // { - // compute( - // self.sats.dateindex.as_mut().unwrap(), - // indexer, - // indexes, - // starting_indexes, - // exit, - // )?; + pub fn compute_all( + &mut self, + indexer: &Indexer, + indexes: &indexes::Vecs, + fetched: Option<&fetched::Vecs>, + starting_indexes: &Indexes, + exit: &Exit, + mut compute: F, + ) -> color_eyre::Result<()> + where + F: FnMut( + &mut EagerVec, + &Indexer, + &indexes::Vecs, + &Indexes, + &Exit, + ) -> Result<()>, + { + compute( + self.sats.dateindex.as_mut().unwrap(), + indexer, + indexes, + starting_indexes, + exit, + )?; - // let dateindex: Option<&StoredVec> = None; - // self.compute_rest(indexer, indexes, fetched, starting_indexes, exit, dateindex)?; + let dateindex: Option<&StoredVec> = None; + self.compute_rest(indexer, indexes, fetched, starting_indexes, exit, dateindex)?; - // Ok(()) - // } + Ok(()) + } pub fn compute_rest( &mut self, diff --git a/crates/brk_computer/src/vecs/grouped/value_height.rs b/crates/brk_computer/src/vecs/grouped/value_height.rs index 1e678acfd..b5ed7eaaa 100644 --- a/crates/brk_computer/src/vecs/grouped/value_height.rs +++ b/crates/brk_computer/src/vecs/grouped/value_height.rs @@ -1,10 +1,11 @@ use std::path::Path; -use brk_core::{Bitcoin, Dollars, Height, Sats, Version}; +use brk_core::{Bitcoin, Dollars, Height, Result, Sats, Version}; use brk_exit::Exit; -use brk_vec::{AnyCollectableVec, CollectableVec, EagerVec, Format}; +use brk_indexer::Indexer; +use brk_vec::{AnyCollectableVec, CollectableVec, EagerVec, Format, StoredVec}; -use crate::vecs::{Indexes, fetched}; +use crate::vecs::{Indexes, fetched, indexes}; #[derive(Clone)] pub struct ComputedHeightValueVecs { @@ -47,37 +48,37 @@ impl ComputedHeightValueVecs { }) } - // pub fn compute_all( - // &mut self, - // indexer: &Indexer, - // indexes: &indexes::Vecs, - // fetched: Option<&fetched::Vecs>, - // starting_indexes: &Indexes, - // exit: &Exit, - // mut compute: F, - // ) -> color_eyre::Result<()> - // where - // F: FnMut( - // &mut EagerVec, - // &Indexer, - // &indexes::Vecs, - // &Indexes, - // &Exit, - // ) -> Result<()>, - // { - // compute( - // self.sats.as_mut().unwrap(), - // indexer, - // indexes, - // starting_indexes, - // exit, - // )?; + pub fn compute_all( + &mut self, + indexer: &Indexer, + indexes: &indexes::Vecs, + fetched: Option<&fetched::Vecs>, + starting_indexes: &Indexes, + exit: &Exit, + mut compute: F, + ) -> color_eyre::Result<()> + where + F: FnMut( + &mut EagerVec, + &Indexer, + &indexes::Vecs, + &Indexes, + &Exit, + ) -> Result<()>, + { + compute( + self.sats.as_mut().unwrap(), + indexer, + indexes, + starting_indexes, + exit, + )?; - // let height: Option<&StoredVec> = None; - // self.compute_rest(fetched, starting_indexes, exit, height)?; + let height: Option<&StoredVec> = None; + self.compute_rest(fetched, starting_indexes, exit, height)?; - // Ok(()) - // } + Ok(()) + } pub fn compute_rest( &mut self, diff --git a/crates/brk_computer/src/vecs/stateful/cohort.rs b/crates/brk_computer/src/vecs/stateful/cohort.rs index d89f9bcea..50cf72fe6 100644 --- a/crates/brk_computer/src/vecs/stateful/cohort.rs +++ b/crates/brk_computer/src/vecs/stateful/cohort.rs @@ -1,7 +1,8 @@ +use core::panic; use std::{fs, path::Path}; use brk_core::{ - DateIndex, Dollars, Height, Result, Sats, StoredF32, StoredF64, StoredUsize, Version, + Bitcoin, DateIndex, Dollars, Height, Result, Sats, StoredF32, StoredF64, StoredUsize, Version, }; use brk_exit::Exit; use brk_indexer::Indexer; @@ -16,8 +17,7 @@ use crate::vecs::{ Indexes, fetched, grouped::{ ComputedHeightValueVecs, ComputedRatioVecsFromDateIndex, ComputedValueVecsFromDateIndex, - ComputedValueVecsFromHeight, ComputedVecsFromDateIndex, ComputedVecsFromHeight, - StorableVecGeneatorOptions, + ComputedVecsFromDateIndex, ComputedVecsFromHeight, StorableVecGeneatorOptions, }, indexes, market, }; @@ -52,7 +52,11 @@ pub struct Vecs { pub height_to_unrealized_profit: Option>, pub height_to_value_created: Option>, pub height_to_value_destroyed: Option>, + pub height_to_satblocks_destroyed: EagerVec, + pub height_to_satdays_destroyed: EagerVec, + pub indexes_to_coinblocks_destroyed: ComputedVecsFromHeight, + pub indexes_to_coindays_destroyed: ComputedVecsFromHeight, pub dateindex_to_adjusted_spent_output_profit_ratio: Option>, pub dateindex_to_realized_cap_30d_change: Option>, pub dateindex_to_sell_side_risk_ratio: Option>, @@ -67,7 +71,8 @@ pub struct Vecs { pub indexes_to_realized_price_extra: Option, pub indexes_to_realized_profit: Option>, pub indexes_to_realized_value: Option>, - pub indexes_to_supply: ComputedValueVecsFromHeight, + pub height_to_supply_value: ComputedHeightValueVecs, + pub indexes_to_supply: ComputedValueVecsFromDateIndex, pub indexes_to_utxo_count: ComputedVecsFromHeight, pub indexes_to_value_created: Option>, pub indexes_to_value_destroyed: Option>, @@ -75,7 +80,8 @@ pub struct Vecs { pub indexes_to_unrealized_loss: Option>, pub indexes_to_min_price_paid: Option>, pub indexes_to_max_price_paid: Option>, - pub indexes_to_halved_supply: ComputedValueVecsFromHeight, + pub height_to_halved_supply_value: ComputedHeightValueVecs, + pub indexes_to_halved_supply: ComputedValueVecsFromDateIndex, pub height_to_negative_unrealized_loss: Option>, pub indexes_to_negative_unrealized_loss: Option>, pub height_to_net_unrealized_profit_and_loss: Option>, @@ -139,7 +145,7 @@ impl Vecs { keyspace, stores_path, cohort_name.unwrap_or_default(), - version, + version + VERSION + Version::ZERO, compute_dollars, )?; @@ -361,12 +367,20 @@ impl Vecs { version + VERSION + Version::ZERO, format, )?, - indexes_to_supply: ComputedValueVecsFromHeight::forced_import( + height_to_supply_value: ComputedHeightValueVecs::forced_import( path, &suffix("supply"), false, version + VERSION + Version::ZERO, format, + compute_dollars, + )?, + indexes_to_supply: ComputedValueVecsFromDateIndex::forced_import( + path, + &suffix("supply"), + true, + version + VERSION + Version::ONE, + format, StorableVecGeneatorOptions::default().add_last(), compute_dollars, )?, @@ -595,7 +609,15 @@ impl Vecs { ) .unwrap() }), - indexes_to_halved_supply: ComputedValueVecsFromHeight::forced_import( + height_to_halved_supply_value: ComputedHeightValueVecs::forced_import( + path, + &suffix("halved_supply"), + true, + version + VERSION + Version::ZERO, + format, + compute_dollars, + )?, + indexes_to_halved_supply: ComputedValueVecsFromDateIndex::forced_import( path, &suffix("halved_supply"), true, @@ -604,7 +626,6 @@ impl Vecs { StorableVecGeneatorOptions::default().add_last(), compute_dollars, )?, - height_to_negative_unrealized_loss: compute_dollars.then(|| { EagerVec::forced_import( path, @@ -687,7 +708,7 @@ impl Vecs { path, &suffix("supply_even"), false, - version, + version + VERSION + Version::ZERO, format, compute_dollars, ) @@ -698,7 +719,7 @@ impl Vecs { path, &suffix("supply_in_loss"), false, - version, + version + VERSION + Version::ZERO, format, compute_dollars, ) @@ -709,7 +730,7 @@ impl Vecs { path, &suffix("supply_in_profit"), false, - version, + version + VERSION + Version::ZERO, format, compute_dollars, ) @@ -719,7 +740,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_even_relative_to_own_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -728,7 +749,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_in_loss_relative_to_own_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -737,7 +758,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_in_profit_relative_to_own_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -747,7 +768,7 @@ impl Vecs { path, &suffix("supply_even_relative_to_own_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -758,7 +779,7 @@ impl Vecs { path, &suffix("supply_in_loss_relative_to_own_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -769,7 +790,7 @@ impl Vecs { path, &suffix("supply_in_profit_relative_to_own_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -780,7 +801,7 @@ impl Vecs { path, &suffix("supply_relative_to_circulating_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -792,7 +813,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_even_relative_to_circulating_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -803,7 +824,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_in_loss_relative_to_circulating_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -814,7 +835,7 @@ impl Vecs { EagerVec::forced_import( path, &suffix("supply_in_profit_relative_to_circulating_supply"), - version, + version + VERSION + Version::ZERO, format, ) .unwrap() @@ -826,7 +847,7 @@ impl Vecs { path, &suffix("supply_even_relative_to_circulating_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -839,7 +860,7 @@ impl Vecs { path, &suffix("supply_in_loss_relative_to_circulating_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) @@ -852,12 +873,44 @@ impl Vecs { path, &suffix("supply_in_profit_relative_to_circulating_supply"), true, - version, + version + VERSION + Version::ZERO, format, StorableVecGeneatorOptions::default().add_last(), ) .unwrap() }), + height_to_satblocks_destroyed: EagerVec::forced_import( + path, + &suffix("satblocks_destroyed"), + version + VERSION + Version::ZERO, + format, + )?, + height_to_satdays_destroyed: EagerVec::forced_import( + path, + &suffix("satdays_destroyed"), + version + VERSION + Version::ZERO, + format, + )?, + indexes_to_coinblocks_destroyed: ComputedVecsFromHeight::forced_import( + path, + &suffix("coinblocks_destroyed"), + true, + version + VERSION + Version::ZERO, + format, + StorableVecGeneatorOptions::default() + .add_sum() + .add_cumulative(), + )?, + indexes_to_coindays_destroyed: ComputedVecsFromHeight::forced_import( + path, + &suffix("coindays_destroyed"), + true, + version + VERSION + Version::ZERO, + format, + StorableVecGeneatorOptions::default() + .add_sum() + .add_cumulative(), + )?, }) } @@ -911,6 +964,8 @@ impl Vecs { self.height_to_max_price_paid .as_ref() .map_or(usize::MAX, |v| v.len()), + self.height_to_satdays_destroyed.len(), + self.height_to_satblocks_destroyed.len(), ] .into_iter() .map(Height::from) @@ -956,6 +1011,16 @@ impl Vecs { base_version + self.height_to_utxo_count.inner_version(), )?; + self.height_to_satblocks_destroyed + .validate_computed_version_or_reset_file( + base_version + self.height_to_satblocks_destroyed.inner_version(), + )?; + + self.height_to_satdays_destroyed + .validate_computed_version_or_reset_file( + base_version + self.height_to_satdays_destroyed.inner_version(), + )?; + if let Some(height_to_realized_cap) = self.height_to_realized_cap.as_mut().as_mut() { height_to_realized_cap.validate_computed_version_or_reset_file( base_version + height_to_realized_cap.inner_version(), @@ -1175,6 +1240,18 @@ impl Vecs { exit, )?; + self.height_to_satblocks_destroyed.forced_push_at( + height, + self.state.satblocks_destroyed, + exit, + )?; + + self.height_to_satdays_destroyed.forced_push_at( + height, + self.state.satdays_destroyed, + exit, + )?; + if let Some(height_to_realized_cap) = self.height_to_realized_cap.as_mut() { let realized = self.state.realized.as_ref().unwrap_or_else(|| { dbg!((&self.state.realized, &self.state.supply)); @@ -1301,8 +1378,9 @@ impl Vecs { pub fn safe_flush_stateful_vecs(&mut self, height: Height, exit: &Exit) -> Result<()> { self.height_to_supply.safe_flush(exit)?; - self.height_to_utxo_count.safe_flush(exit)?; + self.height_to_satdays_destroyed.safe_flush(exit)?; + self.height_to_satblocks_destroyed.safe_flush(exit)?; if let Some(height_to_realized_cap) = self.height_to_realized_cap.as_mut() { height_to_realized_cap.safe_flush(exit)?; @@ -1409,6 +1487,24 @@ impl Vecs { .as_slice(), exit, )?; + self.height_to_satblocks_destroyed.compute_sum_of_others( + starting_indexes.height, + others + .iter() + .map(|v| &v.height_to_satblocks_destroyed) + .collect::>() + .as_slice(), + exit, + )?; + self.height_to_satdays_destroyed.compute_sum_of_others( + starting_indexes.height, + others + .iter() + .map(|v| &v.height_to_satdays_destroyed) + .collect::>() + .as_slice(), + exit, + )?; if let Some(height_to_realized_cap) = &mut self.height_to_realized_cap { height_to_realized_cap.compute_sum_of_others( @@ -1675,13 +1771,37 @@ impl Vecs { starting_indexes: &Indexes, exit: &Exit, ) -> color_eyre::Result<()> { - self.indexes_to_supply.compute_rest( + self.height_to_supply_value.compute_rest( + fetched, + starting_indexes, + exit, + Some(&self.height_to_supply), + )?; + + self.indexes_to_supply.compute_all( indexer, indexes, fetched, starting_indexes, exit, - Some(&self.height_to_supply), + |v, _, indexes, starting_indexes, exit| { + let mut dateindex_to_height_count_iter = + indexes.dateindex_to_height_count.into_iter(); + let mut height_to_supply_iter = self.height_to_supply.into_iter(); + v.compute_transform( + starting_indexes.dateindex, + &indexes.dateindex_to_first_height, + |(i, height, ..)| { + let count = dateindex_to_height_count_iter.unwrap_get_inner(i); + if count == StoredUsize::default() { + unreachable!() + } + let supply = height_to_supply_iter.unwrap_get_inner(height + (*count - 1)); + (i, supply) + }, + exit, + ) + }, )?; self.indexes_to_utxo_count.compute_rest( @@ -1691,6 +1811,22 @@ impl Vecs { Some(&self.height_to_utxo_count), )?; + self.height_to_halved_supply_value.compute_all( + indexer, + indexes, + fetched, + starting_indexes, + exit, + |v, _, _, starting_indexes, exit| { + v.compute_transform( + starting_indexes.height, + &self.height_to_supply, + |(h, v, ..)| (h, v / 2), + exit, + ) + }, + )?; + self.indexes_to_halved_supply.compute_all( indexer, indexes, @@ -1699,9 +1835,37 @@ impl Vecs { exit, |v, _, _, starting_indexes, exit| { v.compute_transform( + starting_indexes.dateindex, + self.indexes_to_supply.sats.dateindex.as_ref().unwrap(), + |(i, sats, ..)| (i, sats / 2), + exit, + ) + }, + )?; + + self.indexes_to_coinblocks_destroyed.compute_all( + indexer, + indexes, + starting_indexes, + exit, + |v, _, _, starting_indexes, exit| { + v.compute_from_sats( starting_indexes.height, - &self.height_to_supply, - |(h, sats, ..)| (h, sats / 2), + &self.height_to_satblocks_destroyed, + exit, + ) + }, + )?; + + self.indexes_to_coindays_destroyed.compute_all( + indexer, + indexes, + starting_indexes, + exit, + |v, _, _, starting_indexes, exit| { + v.compute_from_sats( + starting_indexes.height, + &self.height_to_satdays_destroyed, exit, ) }, @@ -1718,8 +1882,8 @@ impl Vecs { fetched: Option<&fetched::Vecs>, starting_indexes: &Indexes, market: &market::Vecs, - height_to_supply: &impl AnyIterableVec, - dateindex_to_supply: &impl AnyIterableVec, + height_to_supply: &impl AnyIterableVec, + dateindex_to_supply: &impl AnyIterableVec, height_to_realized_cap: Option<&impl AnyIterableVec>, exit: &Exit, ) -> color_eyre::Result<()> { @@ -1735,7 +1899,7 @@ impl Vecs { |v, _, _, starting_indexes, exit| { v.compute_percentage( starting_indexes.height, - &self.height_to_supply, + &self.height_to_supply_value.bitcoin, height_to_supply, exit, ) @@ -1763,7 +1927,7 @@ impl Vecs { vec.compute_divide( starting_indexes.height, self.height_to_realized_cap.as_ref().unwrap(), - self.indexes_to_supply.bitcoin.height.as_ref().unwrap(), + &self.height_to_supply_value.bitcoin, exit, ) }, @@ -2213,7 +2377,7 @@ impl Vecs { v.compute_percentage( starting_indexes.dateindex, self.dateindex_to_supply_even.as_ref().unwrap(), - self.indexes_to_supply.sats.dateindex.unwrap_last(), + self.indexes_to_supply.sats.dateindex.as_ref().unwrap(), exit, ) }, @@ -2230,7 +2394,7 @@ impl Vecs { v.compute_percentage( starting_indexes.dateindex, self.dateindex_to_supply_even.as_ref().unwrap(), - self.indexes_to_supply.sats.dateindex.unwrap_last(), + self.indexes_to_supply.sats.dateindex.as_ref().unwrap(), exit, ) }, @@ -2247,7 +2411,7 @@ impl Vecs { v.compute_percentage( starting_indexes.dateindex, self.dateindex_to_supply_even.as_ref().unwrap(), - self.indexes_to_supply.sats.dateindex.unwrap_last(), + self.indexes_to_supply.sats.dateindex.as_ref().unwrap(), exit, ) }, @@ -2259,7 +2423,7 @@ impl Vecs { { height_to_supply_even_relative_to_circulating_supply.compute_percentage( starting_indexes.height, - self.height_to_supply_even.as_ref().unwrap(), + &self.height_to_supply_even_value.as_ref().unwrap().bitcoin, height_to_supply, exit, )?; @@ -2268,7 +2432,11 @@ impl Vecs { .unwrap() .compute_percentage( starting_indexes.height, - self.height_to_supply_in_loss.as_ref().unwrap(), + &self + .height_to_supply_in_loss_value + .as_ref() + .unwrap() + .bitcoin, height_to_supply, exit, )?; @@ -2277,7 +2445,11 @@ impl Vecs { .unwrap() .compute_percentage( starting_indexes.height, - self.height_to_supply_in_profit.as_ref().unwrap(), + &self + .height_to_supply_in_profit_value + .as_ref() + .unwrap() + .bitcoin, height_to_supply, exit, )?; @@ -2292,7 +2464,13 @@ impl Vecs { |v, _, _, starting_indexes, exit| { v.compute_percentage( starting_indexes.dateindex, - self.dateindex_to_supply_even.as_ref().unwrap(), + self.indexes_to_supply_even + .as_ref() + .unwrap() + .bitcoin + .dateindex + .as_ref() + .unwrap(), dateindex_to_supply, exit, ) @@ -2309,7 +2487,13 @@ impl Vecs { |v, _, _, starting_indexes, exit| { v.compute_percentage( starting_indexes.dateindex, - self.dateindex_to_supply_in_loss.as_ref().unwrap(), + self.indexes_to_supply_in_loss + .as_ref() + .unwrap() + .bitcoin + .dateindex + .as_ref() + .unwrap(), dateindex_to_supply, exit, ) @@ -2326,7 +2510,13 @@ impl Vecs { |v, _, _, starting_indexes, exit| { v.compute_percentage( starting_indexes.dateindex, - self.dateindex_to_supply_in_profit.as_ref().unwrap(), + self.indexes_to_supply_in_profit + .as_ref() + .unwrap() + .bitcoin + .dateindex + .as_ref() + .unwrap(), dateindex_to_supply, exit, ) @@ -2343,10 +2533,14 @@ impl Vecs { vec![ &self.height_to_supply as &dyn AnyCollectableVec, &self.height_to_utxo_count, + &self.height_to_satblocks_destroyed, + &self.height_to_satdays_destroyed, ], self.height_to_realized_cap .as_ref() .map_or(vec![], |v| vec![v as &dyn AnyCollectableVec]), + self.height_to_supply_value.vecs(), + self.height_to_halved_supply_value.vecs(), self.indexes_to_supply.vecs(), self.indexes_to_utxo_count.vecs(), self.indexes_to_realized_cap @@ -2542,6 +2736,8 @@ impl Vecs { self.indexes_to_supply_in_profit_relative_to_circulating_supply .as_ref() .map_or(vec![], |v| v.vecs()), + self.indexes_to_coinblocks_destroyed.vecs(), + self.indexes_to_coindays_destroyed.vecs(), ] .into_iter() .flatten() diff --git a/crates/brk_computer/src/vecs/stateful/mod.rs b/crates/brk_computer/src/vecs/stateful/mod.rs index 2bd4dc1d7..2ce6581d5 100644 --- a/crates/brk_computer/src/vecs/stateful/mod.rs +++ b/crates/brk_computer/src/vecs/stateful/mod.rs @@ -29,7 +29,7 @@ use super::{ pub mod cohort; mod outputs; -const VERSION: Version = Version::new(9); +const VERSION: Version = Version::new(5); #[derive(Clone)] pub struct Vecs { @@ -40,10 +40,6 @@ pub struct Vecs { pub indexes_to_unspendable_supply: ComputedValueVecsFromHeight, pub height_to_opreturn_supply: EagerVec, pub indexes_to_opreturn_supply: ComputedValueVecsFromHeight, - // pub height_to_satdays_destroyed: EagerVec, - // pub indexes_to_satdays_destroyed: ComputedValueVecsFromHeight, - // pub height_to_satblocks_destroyed: EagerVec, - // pub indexes_to_satblocks_destroyed: ComputedValueVecsFromHeight, utxos_vecs: Outputs<(OutputFilter, cohort::Vecs)>, } @@ -102,36 +98,6 @@ impl Vecs { StorableVecGeneatorOptions::default().add_last(), compute_dollars, )?, - // height_to_satdays_destroyed: EagerVec::forced_import( - // path, - // "satdays_destroyed", - // version, - // format, - // )?, - // indexes_to_satdays_destroyed: ComputedValueVecsFromHeight::forced_import( - // path, - // "satdays_destroyed", - // false, - // version + VERSION + Version::ZERO, - // format, - // StorableVecGeneatorOptions::default().add_last(), - // compute_dollars, - // )?, - // height_to_satblocks_destroyed: EagerVec::forced_import( - // path, - // "satblocks_destroyed", - // version, - // format, - // )?, - // indexes_to_satblocks_destroyed: ComputedValueVecsFromHeight::forced_import( - // path, - // "satblocks_destroyed", - // false, - // version + VERSION + Version::ZERO, - // format, - // StorableVecGeneatorOptions::default().add_last(), - // compute_dollars, - // )?, utxos_vecs: { Outputs::<(OutputFilter, cohort::Vecs)>::from(Outputs { all: cohort::Vecs::forced_import( @@ -603,9 +569,9 @@ impl Vecs { &stores_path, true, )?, - _1m_to_3m: cohort::Vecs::forced_import( + _1m_to_2m: cohort::Vecs::forced_import( path, - Some("from_1m_to_3m"), + Some("from_1m_to_2m"), _computation, format, version + VERSION + Version::ZERO, @@ -614,9 +580,42 @@ impl Vecs { &stores_path, true, )?, - _3m_to_6m: cohort::Vecs::forced_import( + _2m_to_3m: cohort::Vecs::forced_import( path, - Some("from_3m_to_6m"), + Some("from_2m_to_3m"), + _computation, + format, + version + VERSION + Version::ZERO, + fetched, + keyspace, + &stores_path, + true, + )?, + _3m_to_4m: cohort::Vecs::forced_import( + path, + Some("from_3m_to_4m"), + _computation, + format, + version + VERSION + Version::ZERO, + fetched, + keyspace, + &stores_path, + true, + )?, + _4m_to_5m: cohort::Vecs::forced_import( + path, + Some("from_4m_to_5m"), + _computation, + format, + version + VERSION + Version::ZERO, + fetched, + keyspace, + &stores_path, + true, + )?, + _5m_to_6m: cohort::Vecs::forced_import( + path, + Some("from_5m_to_6m"), _computation, format, version + VERSION + Version::ZERO, @@ -680,9 +679,9 @@ impl Vecs { &stores_path, true, )?, - _5y_to_7y: cohort::Vecs::forced_import( + _5y_to_6y: cohort::Vecs::forced_import( path, - Some("from_5y_to_7y"), + Some("from_5y_to_6y"), _computation, format, version + VERSION + Version::ZERO, @@ -691,9 +690,31 @@ impl Vecs { &stores_path, true, )?, - _7y_to_10y: cohort::Vecs::forced_import( + _6y_to_7y: cohort::Vecs::forced_import( path, - Some("from_7y_to_10y"), + Some("from_6y_to_7y"), + _computation, + format, + version + VERSION + Version::ZERO, + fetched, + keyspace, + &stores_path, + true, + )?, + _7y_to_8y: cohort::Vecs::forced_import( + path, + Some("from_7y_to_8y"), + _computation, + format, + version + VERSION + Version::ZERO, + fetched, + keyspace, + &stores_path, + true, + )?, + _8y_to_10y: cohort::Vecs::forced_import( + path, + Some("from_8y_to_10y"), _computation, format, version + VERSION + Version::ZERO, @@ -1377,14 +1398,6 @@ impl Vecs { .validate_computed_version_or_reset_file( base_version + self.height_to_opreturn_supply.inner_version(), )?; - // self.height_to_satblocks_destroyed - // .validate_computed_version_or_reset_file( - // base_version + self.height_to_satblocks_destroyed.inner_version(), - // )?; - // self.height_to_satdays_destroyed - // .validate_computed_version_or_reset_file( - // base_version + self.height_to_satdays_destroyed.inner_version(), - // )?; let mut chain_state: Vec; let mut chain_state_starting_height = Height::from(self.chain_state.len()); @@ -1437,8 +1450,6 @@ impl Vecs { .min(stateful_starting_height) .min(Height::from(self.height_to_unspendable_supply.len())) .min(Height::from(self.height_to_opreturn_supply.len())); - // .min(Height::from(self.height_to_satblocks_destroyed.len())); - // .min(Height::from(self.height_to_satdays_destroyed.len())); // --- // INIT @@ -1462,20 +1473,6 @@ impl Vecs { } else { Sats::ZERO }; - // let mut satblocks_destroyed = if let Some(prev_height) = starting_height.decremented() { - // self.height_to_satblocks_destroyed - // .into_iter() - // .unwrap_get_inner(prev_height) - // } else { - // Sats::ZERO - // }; - // let mut satdays_destroyed = if let Some(prev_height) = starting_height.decremented() { - // self.height_to_satdays_destroyed - // .into_iter() - // .unwrap_get_inner(prev_height) - // } else { - // Sats::ZERO - // }; let mut height = starting_height; starting_indexes.update_from_height(height, indexes); @@ -1717,18 +1714,16 @@ impl Vecs { .try_for_each(|(_, v)| { v.compute_rest_part1(indexer, indexes, fetched, &starting_indexes, exit) })?; - let height_to_supply = self.utxos_vecs.all.1.height_to_supply.clone(); + let height_to_supply = self.utxos_vecs.all.1.height_to_supply_value.bitcoin.clone(); let dateindex_to_supply = self .utxos_vecs .all .1 .indexes_to_supply - .sats + .bitcoin .dateindex - .unwrap_last() .clone(); let height_to_realized_cap = self.utxos_vecs.all.1.height_to_realized_cap.clone(); - let height_to_realized_cap = height_to_realized_cap.as_ref(); self.utxos_vecs .as_mut_vecs() .par_iter_mut() @@ -1740,8 +1735,8 @@ impl Vecs { &starting_indexes, market, &height_to_supply, - &dateindex_to_supply, - height_to_realized_cap, + dateindex_to_supply.as_ref().unwrap(), + height_to_realized_cap.as_ref(), exit, ) })?; @@ -1761,22 +1756,6 @@ impl Vecs { exit, Some(&self.height_to_opreturn_supply), )?; - // self.indexes_to_satblocks_destroyed.compute_rest( - // indexer, - // indexes, - // fetched, - // &starting_indexes, - // exit, - // Some(&self.height_to_satblocks_destroyed), - // )?; - // self.indexes_to_satdays_destroyed.compute_rest( - // indexer, - // indexes, - // fetched, - // &starting_indexes, - // exit, - // Some(&self.height_to_satdays_destroyed), - // )?; exit.release(); @@ -1795,8 +1774,6 @@ impl Vecs { .try_for_each(|(_, v)| v.safe_flush_stateful_vecs(height, exit))?; self.height_to_unspendable_supply.safe_flush(exit)?; self.height_to_opreturn_supply.safe_flush(exit)?; - // self.height_to_satblocks_destroyed.safe_flush(exit)?; - // self.height_to_satdays_destroyed.safe_flush(exit)?; self.chain_state.truncate_if_needed(Height::ZERO)?; chain_state.iter().for_each(|block_state| { @@ -1820,16 +1797,6 @@ impl Vecs { &self.height_to_unspendable_supply, &self.height_to_opreturn_supply, ], - // self.indexes_to_satblocks_destroyed.vecs(), - // vec![ - // &self.height_to_unspendable_supply, - // &self.height_to_satblocks_destroyed, - // ], - // self.indexes_to_satdays_destroyed.vecs(), - // vec![ - // &self.height_to_unspendable_supply, - // &self.height_to_satdays_destroyed, - // ], ] .into_iter() .flatten() diff --git a/crates/brk_computer/src/vecs/stateful/outputs.rs b/crates/brk_computer/src/vecs/stateful/outputs.rs index 47fa7fcab..e72185d6e 100644 --- a/crates/brk_computer/src/vecs/stateful/outputs.rs +++ b/crates/brk_computer/src/vecs/stateful/outputs.rs @@ -72,10 +72,16 @@ impl OutputCohorts for Outputs<(OutputFilter, cohort::Vecs)> { let block_state = chain_state.get(height.unwrap_to_usize()).unwrap(); let prev_price = block_state.price; + let blocks_old = chain_state.len() - 1 - height.unwrap_to_usize(); + let days_old = block_state .timestamp .difference_in_days_between(last_timestamp); + let days_old_foat = block_state + .timestamp + .difference_in_days_between_float(last_timestamp); + let older_than_hour = jiff::Timestamp::from(last_timestamp.checked_sub(block_state.timestamp).unwrap()) .as_second() @@ -95,6 +101,8 @@ impl OutputCohorts for Outputs<(OutputFilter, cohort::Vecs)> { &sent.spendable_supply, current_price, prev_price, + blocks_old, + days_old_foat, older_than_hour, ); }); @@ -105,6 +113,8 @@ impl OutputCohorts for Outputs<(OutputFilter, cohort::Vecs)> { supply_state, current_price, prev_price, + blocks_old, + days_old_foat, older_than_hour, ) }, @@ -117,6 +127,8 @@ impl OutputCohorts for Outputs<(OutputFilter, cohort::Vecs)> { &supply_state, current_price, prev_price, + blocks_old, + days_old_foat, older_than_hour, ); }); @@ -159,93 +171,86 @@ impl OutputCohorts for Outputs<(OutputFilter, cohort::Vecs)> { } fn compute_overlaping_vecs(&mut self, starting_indexes: &Indexes, exit: &Exit) -> Result<()> { - self.all - .1 - .compute_from_stateful(starting_indexes, &self.by_epoch.vecs(), exit)?; + let by_date_range = self.by_date_range.as_vec(); + let by_size_range = self.by_size_range.as_vec(); - self.by_from_date - .as_mut_vec() - .into_iter() - .try_for_each(|(filter, vecs)| { - vecs.compute_from_stateful( - starting_indexes, - self.by_date_range - .as_vec() - .into_iter() - .filter(|(other, _)| filter.includes(other)) - .map(|(_, v)| v) - .collect::>() - .as_slice(), - exit, - ) - })?; - - self.by_up_to_date - .as_mut_vec() - .into_iter() - .try_for_each(|(filter, vecs)| { - vecs.compute_from_stateful( - starting_indexes, - self.by_date_range - .as_vec() - .into_iter() - .filter(|(other, _)| filter.includes(other)) - .map(|(_, v)| v) - .collect::>() - .as_slice(), - exit, - ) - })?; - - self.by_term - .as_mut_vec() - .into_iter() - .try_for_each(|(filter, vecs)| { - vecs.compute_from_stateful( - starting_indexes, - self.by_date_range - .as_vec() - .into_iter() - .filter(|(other, _)| filter.includes(other)) - .map(|(_, v)| v) - .collect::>() - .as_slice(), - exit, - ) - })?; - - self.by_up_to_size - .as_mut_vec() - .into_iter() - .try_for_each(|(filter, vecs)| { - vecs.compute_from_stateful( - starting_indexes, - self.by_date_range - .as_vec() - .into_iter() - .filter(|(other, _)| filter.includes(other)) - .map(|(_, v)| v) - .collect::>() - .as_slice(), - exit, - ) - })?; - - self.by_from_size - .as_mut_vec() - .into_iter() - .try_for_each(|(filter, vecs)| { - vecs.compute_from_stateful( - starting_indexes, - self.by_size_range - .as_vec() - .into_iter() - .filter(|(other, _)| filter.includes(other)) - .map(|(_, v)| v) - .collect::>() - .as_slice(), - exit, - ) - }) + [ + vec![(&mut self.all.1, self.by_epoch.vecs().to_vec())], + self.by_from_date + .as_mut_vec() + .into_iter() + .map(|(filter, vecs)| { + ( + vecs, + by_date_range + .into_iter() + .filter(|(other, _)| filter.includes(other)) + .map(|(_, v)| v) + .collect::>(), + ) + }) + .collect::>(), + self.by_up_to_date + .as_mut_vec() + .into_iter() + .map(|(filter, vecs)| { + ( + vecs, + by_date_range + .into_iter() + .filter(|(other, _)| filter.includes(other)) + .map(|(_, v)| v) + .collect::>(), + ) + }) + .collect::>(), + self.by_term + .as_mut_vec() + .into_iter() + .map(|(filter, vecs)| { + ( + vecs, + by_date_range + .into_iter() + .filter(|(other, _)| filter.includes(other)) + .map(|(_, v)| v) + .collect::>(), + ) + }) + .collect::>(), + self.by_from_size + .as_mut_vec() + .into_iter() + .map(|(filter, vecs)| { + ( + vecs, + by_size_range + .into_iter() + .filter(|(other, _)| filter.includes(other)) + .map(|(_, v)| v) + .collect::>(), + ) + }) + .collect::>(), + self.by_up_to_size + .as_mut_vec() + .into_iter() + .map(|(filter, vecs)| { + ( + vecs, + by_size_range + .into_iter() + .filter(|(other, _)| filter.includes(other)) + .map(|(_, v)| v) + .collect::>(), + ) + }) + .collect::>(), + ] + .into_par_iter() + .flatten() + .try_for_each(|(vecs, stateful)| { + vecs.compute_from_stateful(starting_indexes, &stateful, exit) + }) } } diff --git a/crates/brk_core/src/structs/bitcoin.rs b/crates/brk_core/src/structs/bitcoin.rs index 045c0e112..03583a054 100644 --- a/crates/brk_core/src/structs/bitcoin.rs +++ b/crates/brk_core/src/structs/bitcoin.rs @@ -6,6 +6,8 @@ use std::{ use serde::Serialize; use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; +use crate::CheckedSub; + use super::{Sats, StoredF64}; #[derive(Debug, Default, Clone, Copy, FromBytes, Immutable, IntoBytes, KnownLayout, Serialize)] @@ -25,6 +27,20 @@ impl Mul for Bitcoin { } } +impl Mul for Bitcoin { + type Output = Self; + fn mul(self, rhs: usize) -> Self::Output { + Self::from(Sats::from(self) * rhs) + } +} + +impl Div for Bitcoin { + type Output = Self; + fn div(self, rhs: Bitcoin) -> Self::Output { + Self::from(Sats::from(self) / Sats::from(rhs)) + } +} + impl Div for Bitcoin { type Output = Self; fn div(self, rhs: usize) -> Self::Output { @@ -93,3 +109,9 @@ impl Ord for Bitcoin { } } } + +impl CheckedSub for Bitcoin { + fn checked_sub(self, rhs: usize) -> Option { + Some(Self(self.0 - rhs as f64)) + } +} diff --git a/crates/brk_core/src/structs/stored_f64.rs b/crates/brk_core/src/structs/stored_f64.rs index 01515eb9c..df564df99 100644 --- a/crates/brk_core/src/structs/stored_f64.rs +++ b/crates/brk_core/src/structs/stored_f64.rs @@ -7,7 +7,7 @@ use derive_deref::Deref; use serde::Serialize; use zerocopy_derive::{FromBytes, Immutable, IntoBytes, KnownLayout}; -use crate::{CheckedSub, Sats}; +use crate::{Bitcoin, CheckedSub, Sats}; #[derive( Debug, Deref, Default, Clone, Copy, FromBytes, Immutable, IntoBytes, KnownLayout, Serialize, @@ -102,3 +102,9 @@ impl From for StoredF64 { Self(u64::from(value) as f64) } } + +impl From for StoredF64 { + fn from(value: Bitcoin) -> Self { + Self(f64::from(value)) + } +} diff --git a/crates/brk_core/src/structs/timestamp.rs b/crates/brk_core/src/structs/timestamp.rs index 5d1bc400a..b5b733eea 100644 --- a/crates/brk_core/src/structs/timestamp.rs +++ b/crates/brk_core/src/structs/timestamp.rs @@ -62,6 +62,19 @@ impl Timestamp { } } } + + pub fn difference_in_days_between_float(&self, other: Self) -> f64 { + match self.cmp(&other) { + Ordering::Equal => 0.0, + Ordering::Greater => other.difference_in_days_between_float(*self), + Ordering::Less => { + jiff::Timestamp::from(*self) + .duration_until(jiff::Timestamp::from(other)) + .as_secs() as f64 + / ONE_DAY_IN_SEC as f64 + } + } + } } impl From for Timestamp { diff --git a/crates/brk_fetcher/examples/main.rs b/crates/brk_fetcher/examples/main.rs index c06e21ed5..27fa33cf6 100644 --- a/crates/brk_fetcher/examples/main.rs +++ b/crates/brk_fetcher/examples/main.rs @@ -8,11 +8,11 @@ fn main() -> color_eyre::Result<()> { let mut fetcher = Fetcher::import(None)?; - dbg!(fetcher.get_date(Date::new(2025, 1, 1))?); + dbg!(fetcher.get_date(Date::new(2025, 6, 5))?); dbg!(fetcher.get_height( - 881_000_u32.into(), - 1740683986_u32.into(), - Some(1740683000_u32.into()) + 899911_u32.into(), + 1749133056_u32.into(), + Some(1749132055_u32.into()) )?); Ok(()) diff --git a/crates/brk_fetcher/src/fetchers/binance.rs b/crates/brk_fetcher/src/fetchers/binance.rs index 37dbf7078..fd7b1a34a 100644 --- a/crates/brk_fetcher/src/fetchers/binance.rs +++ b/crates/brk_fetcher/src/fetchers/binance.rs @@ -95,7 +95,7 @@ impl Binance { } pub fn fetch_1d() -> color_eyre::Result> { - info!("Fetching daily prices from Kraken..."); + info!("Fetching daily prices from Binance..."); retry( |_| Self::json_to_date_to_ohlc(&minreq::get(Self::url("interval=1d")).send()?.json()?), diff --git a/crates/brk_fetcher/src/fetchers/mod.rs b/crates/brk_fetcher/src/fetchers/mod.rs index c6704727b..42f7707fb 100644 --- a/crates/brk_fetcher/src/fetchers/mod.rs +++ b/crates/brk_fetcher/src/fetchers/mod.rs @@ -1,9 +1,9 @@ mod binance; mod kibo; -mod kraken; +// mod kraken; mod retry; pub use binance::*; pub use kibo::*; -pub use kraken::*; +// pub use kraken::*; use retry::*; diff --git a/crates/brk_fetcher/src/lib.rs b/crates/brk_fetcher/src/lib.rs index fbce75a97..b935c6144 100644 --- a/crates/brk_fetcher/src/lib.rs +++ b/crates/brk_fetcher/src/lib.rs @@ -18,7 +18,7 @@ const TRIES: usize = 12 * 60 * 2; #[derive(Clone)] pub struct Fetcher { binance: Binance, - kraken: Kraken, + // kraken: Kraken, kibo: Kibo, } @@ -30,7 +30,7 @@ impl Fetcher { Ok(Self { binance: Binance::init(hars_path), - kraken: Kraken::default(), + // kraken: Kraken::default(), kibo: Kibo::default(), }) } @@ -40,12 +40,8 @@ impl Fetcher { } fn get_date_(&mut self, date: Date, tries: usize) -> color_eyre::Result { - self.kraken + self.binance .get_from_1d(&date) - .or_else(|_| { - // eprintln!("{e}"); - self.binance.get_from_1d(&date) - }) .or_else(|_| { // eprintln!("{e}"); self.kibo.get_from_date(&date) @@ -89,33 +85,36 @@ impl Fetcher { let previous_timestamp = previous_timestamp.map(|t| t.floor_seconds()); let ohlc = self - .kraken + .binance .get_from_1mn(timestamp, previous_timestamp) - .unwrap_or_else(|_| { - // eprintln!("{e}"); - self.binance - .get_from_1mn(timestamp, previous_timestamp) - .unwrap_or_else(|_| { - // eprintln!("{e}"); - self.kibo.get_from_height(height).unwrap_or_else(|_| { - sleep(Duration::from_secs(30)); + .unwrap_or_else(|_report| { + // eprintln!("{_report}"); + // self.kraken + // .get_from_1mn(timestamp, previous_timestamp) + // .unwrap_or_else(|_report| { + // // eprintln!("{_report}"); + self.kibo.get_from_height(height).unwrap_or_else(|_report| { + // eprintln!("{_report}"); - if tries < TRIES { - self.clear(); + sleep(Duration::from_secs(30)); - info!("Retrying to fetch height prices..."); + if tries < TRIES { + self.clear(); - return self - .get_height_(height, timestamp, previous_timestamp, tries + 1) - .unwrap(); - } + info!("Retrying to fetch height prices..."); + // dbg!((height, timestamp, previous_timestamp)); - info!("Failed to fetch height prices"); + return self + .get_height_(height, timestamp, previous_timestamp, tries + 1) + .unwrap(); + } - let date = Date::from(timestamp); - // eprintln!("{e}"); - panic!( - " + info!("Failed to fetch height prices"); + + let date = Date::from(timestamp); + // eprintln!("{e}"); + panic!( + " Can't find the price for: height: {height} - date: {date} 1mn APIs are limited to the last 16 hours for Binance's and the last 10 hours for Kraken's How to fix this: @@ -130,9 +129,9 @@ How to fix this: 8. Export to a har file (if there is no explicit button, click on the cog button) 9. Move the file to 'parser/imports/binance.har' " - ) - }) - }) + ) + }) + // }) }); Ok(ohlc) @@ -183,6 +182,6 @@ How to fix this: pub fn clear(&mut self) { self.binance.clear(); self.kibo.clear(); - self.kraken.clear(); + // self.kraken.clear(); } } diff --git a/crates/brk_query/src/vec_trees.rs b/crates/brk_query/src/vec_trees.rs index 38c2ce1eb..c7bcd98b1 100644 --- a/crates/brk_query/src/vec_trees.rs +++ b/crates/brk_query/src/vec_trees.rs @@ -24,6 +24,7 @@ impl<'a> VecTrees<'a> { || s.ends_with("relative") || s.starts_with("from") || s == &"cumulative_up" + || s.starts_with("cumulative_start") || s.starts_with("cumulative_from") })) && !(split.len() == 4 diff --git a/crates/brk_state/src/cohort.rs b/crates/brk_state/src/cohort.rs index 8e6e4f10b..51723add3 100644 --- a/crates/brk_state/src/cohort.rs +++ b/crates/brk_state/src/cohort.rs @@ -12,6 +12,8 @@ use super::{RealizedState, SupplyState}; pub struct CohortState { pub supply: SupplyState, pub realized: Option, + pub satblocks_destroyed: Sats, + pub satdays_destroyed: Sats, pub price_to_amount: Store, } @@ -26,6 +28,8 @@ impl CohortState { Ok(Self { supply: SupplyState::default(), realized: compute_dollars.then_some(RealizedState::NAN), + satblocks_destroyed: Sats::ZERO, + satdays_destroyed: Sats::ZERO, price_to_amount: Store::import( keyspace, path, @@ -37,6 +41,8 @@ impl CohortState { } pub fn reset_single_iteration_values(&mut self) { + self.satdays_destroyed = Sats::ZERO; + self.satblocks_destroyed = Sats::ZERO; if let Some(realized) = self.realized.as_mut() { realized.reset_single_iteration_values(); } @@ -74,9 +80,17 @@ impl CohortState { supply_state: &SupplyState, current_price: Option, prev_price: Option, + blocks_old: usize, + days_old: f64, older_than_hour: bool, ) { self.supply -= supply_state; + + self.satblocks_destroyed += supply_state.value * blocks_old; + + self.satdays_destroyed += + Sats::from((u64::from(supply_state.value) as f64 * days_old).floor() as u64); + if let Some(realized) = self.realized.as_mut() { let current_price = current_price.unwrap(); let prev_price = prev_price.unwrap(); diff --git a/crates/brk_state/src/outputs/by_date_range.rs b/crates/brk_state/src/outputs/by_date_range.rs index fb75164d1..04f2dfa85 100644 --- a/crates/brk_state/src/outputs/by_date_range.rs +++ b/crates/brk_state/src/outputs/by_date_range.rs @@ -5,15 +5,20 @@ pub struct OutputsByDateRange { pub start_to_1d: T, pub _1d_to_1w: T, pub _1w_to_1m: T, - pub _1m_to_3m: T, - pub _3m_to_6m: T, + pub _1m_to_2m: T, + pub _2m_to_3m: T, + pub _3m_to_4m: T, + pub _4m_to_5m: T, + pub _5m_to_6m: T, pub _6m_to_1y: T, pub _1y_to_2y: T, pub _2y_to_3y: T, pub _3y_to_4y: T, pub _4y_to_5y: T, - pub _5y_to_7y: T, - pub _7y_to_10y: T, + pub _5y_to_6y: T, + pub _6y_to_7y: T, + pub _7y_to_8y: T, + pub _8y_to_10y: T, pub _10y_to_15y: T, pub _15y_to_end: T, } @@ -24,15 +29,20 @@ impl From> for OutputsByDateRange<(OutputFilter, T)> { start_to_1d: (OutputFilter::To(1), value.start_to_1d), _1d_to_1w: (OutputFilter::Range(1..7), value._1d_to_1w), _1w_to_1m: (OutputFilter::Range(7..30), value._1w_to_1m), - _1m_to_3m: (OutputFilter::Range(30..3 * 30), value._1m_to_3m), - _3m_to_6m: (OutputFilter::Range(3 * 30..6 * 30), value._3m_to_6m), + _1m_to_2m: (OutputFilter::Range(30..2 * 30), value._1m_to_2m), + _2m_to_3m: (OutputFilter::Range(2 * 30..3 * 30), value._2m_to_3m), + _3m_to_4m: (OutputFilter::Range(3 * 30..4 * 30), value._3m_to_4m), + _4m_to_5m: (OutputFilter::Range(4 * 30..5 * 30), value._4m_to_5m), + _5m_to_6m: (OutputFilter::Range(5 * 30..6 * 30), value._5m_to_6m), _6m_to_1y: (OutputFilter::Range(6 * 30..365), value._6m_to_1y), _1y_to_2y: (OutputFilter::Range(365..2 * 365), value._1y_to_2y), _2y_to_3y: (OutputFilter::Range(2 * 365..3 * 365), value._2y_to_3y), _3y_to_4y: (OutputFilter::Range(3 * 365..4 * 365), value._3y_to_4y), _4y_to_5y: (OutputFilter::Range(4 * 365..5 * 365), value._4y_to_5y), - _5y_to_7y: (OutputFilter::Range(5 * 365..7 * 365), value._5y_to_7y), - _7y_to_10y: (OutputFilter::Range(7 * 365..10 * 365), value._7y_to_10y), + _5y_to_6y: (OutputFilter::Range(5 * 365..6 * 365), value._5y_to_6y), + _6y_to_7y: (OutputFilter::Range(6 * 365..7 * 365), value._6y_to_7y), + _7y_to_8y: (OutputFilter::Range(7 * 365..8 * 365), value._7y_to_8y), + _8y_to_10y: (OutputFilter::Range(7 * 365..10 * 365), value._8y_to_10y), _10y_to_15y: (OutputFilter::Range(10 * 365..15 * 365), value._10y_to_15y), _15y_to_end: (OutputFilter::From(15 * 365), value._15y_to_end), } @@ -40,39 +50,49 @@ impl From> for OutputsByDateRange<(OutputFilter, T)> { } impl OutputsByDateRange { - pub fn as_vec(&mut self) -> [&T; 14] { + pub fn as_vec(&mut self) -> [&T; 19] { [ &self.start_to_1d, &self._1d_to_1w, &self._1w_to_1m, - &self._1m_to_3m, - &self._3m_to_6m, + &self._1m_to_2m, + &self._2m_to_3m, + &self._3m_to_4m, + &self._4m_to_5m, + &self._5m_to_6m, &self._6m_to_1y, &self._1y_to_2y, &self._2y_to_3y, &self._3y_to_4y, &self._4y_to_5y, - &self._5y_to_7y, - &self._7y_to_10y, + &self._5y_to_6y, + &self._6y_to_7y, + &self._7y_to_8y, + &self._8y_to_10y, &self._10y_to_15y, &self._15y_to_end, ] } - pub fn as_mut_vec(&mut self) -> [&mut T; 14] { + pub fn as_mut_vec(&mut self) -> [&mut T; 19] { [ &mut self.start_to_1d, &mut self._1d_to_1w, &mut self._1w_to_1m, - &mut self._1m_to_3m, - &mut self._3m_to_6m, + &mut self._1m_to_2m, + &mut self._2m_to_3m, + &mut self._3m_to_4m, + &mut self._4m_to_5m, + &mut self._5m_to_6m, &mut self._6m_to_1y, &mut self._1y_to_2y, &mut self._2y_to_3y, &mut self._3y_to_4y, &mut self._4y_to_5y, - &mut self._5y_to_7y, - &mut self._7y_to_10y, + &mut self._5y_to_6y, + &mut self._6y_to_7y, + &mut self._7y_to_8y, + &mut self._8y_to_10y, &mut self._10y_to_15y, &mut self._15y_to_end, ] @@ -80,20 +100,25 @@ impl OutputsByDateRange { } impl OutputsByDateRange<(OutputFilter, T)> { - pub fn vecs(&self) -> [&T; 14] { + pub fn vecs(&self) -> [&T; 19] { [ &self.start_to_1d.1, &self._1d_to_1w.1, &self._1w_to_1m.1, - &self._1m_to_3m.1, - &self._3m_to_6m.1, + &self._1m_to_2m.1, + &self._2m_to_3m.1, + &self._3m_to_4m.1, + &self._4m_to_5m.1, + &self._5m_to_6m.1, &self._6m_to_1y.1, &self._1y_to_2y.1, &self._2y_to_3y.1, &self._3y_to_4y.1, &self._4y_to_5y.1, - &self._5y_to_7y.1, - &self._7y_to_10y.1, + &self._5y_to_6y.1, + &self._6y_to_7y.1, + &self._7y_to_8y.1, + &self._8y_to_10y.1, &self._10y_to_15y.1, &self._15y_to_end.1, ] diff --git a/crates/brk_vec/src/variants/eager.rs b/crates/brk_vec/src/variants/eager.rs index b9c5467f7..45d19895a 100644 --- a/crates/brk_vec/src/variants/eager.rs +++ b/crates/brk_vec/src/variants/eager.rs @@ -408,20 +408,23 @@ where T: From, { self.validate_computed_version_or_reset_file( - Version::ZERO + self.inner.version() + divided.version() + divider.version(), + Version::ONE + self.inner.version() + divided.version() + divider.version(), )?; let index = max_from.min(I::from(self.len())); let multiplier = if as_percentage { 100 } else { 1 }; - let subtract = if as_difference { multiplier } else { 0 }; let mut divider_iter = divider.iter(); divided.iter_at(index).try_for_each(|(i, divided)| { let divided = divided.into_inner(); let divider = divider_iter.unwrap_get_inner(i); - let v = (divided / divider * multiplier) - .checked_sub(subtract) - .unwrap(); + let mut v = divided / divider; + if as_percentage { + v = v * multiplier; + } + if as_difference { + v = v.checked_sub(multiplier).unwrap(); + } self.forced_push_at(i, T::from(v), exit) })?; diff --git a/websites/kibo.money/index.html b/websites/kibo.money/index.html index dd33d9a2b..334ae6d5c 100644 --- a/websites/kibo.money/index.html +++ b/websites/kibo.money/index.html @@ -441,14 +441,14 @@ h1, h2 { text-transform: uppercase; - font-size: var(--font-size-xl); - line-height: var(--line-height-xl); - font-weight: 350; + font-size: var(--font-size-lg); + line-height: var(--line-height-lg); + font-weight: 375; } h3 { - font-size: var(--font-size-xl); - line-height: var(--line-height-xl); + font-size: var(--font-size-lg); + line-height: var(--line-height-lg); } h4 { @@ -978,6 +978,22 @@ } } + .chart > legend, + #charts > fieldset { + text-transform: lowercase; + flex-shrink: 0; + display: flex; + align-items: center; + gap: 1.5rem; + margin: -0.75rem var(--negative-main-padding); + padding: 0.75rem var(--main-padding); + overflow-x: auto; + min-width: 0; + font-size: var(--font-size-sm); + line-height: var(--line-height-sm); + scrollbar-width: thin; + } + .chart { display: flex; flex-direction: column; @@ -987,19 +1003,6 @@ margin-bottom: 1rem; > legend { - text-transform: lowercase; - flex-shrink: 0; - display: flex; - align-items: center; - gap: 1.5rem; - margin: -0.5rem var(--negative-main-padding); - padding: 1rem var(--main-padding); - overflow-x: auto; - min-width: 0; - font-size: var(--font-size-sm); - line-height: var(--line-height-sm); - scrollbar-width: thin; - &:empty { display: none; } @@ -1052,6 +1055,8 @@ height: 100%; margin-right: var(--negative-main-padding); margin-left: var(--negative-main-padding); + margin-top: 0.25rem; + margin-bottom: 0.25rem; fieldset { padding: 0.5rem; diff --git a/websites/kibo.money/packages/lightweight-charts/wrapper.js b/websites/kibo.money/packages/lightweight-charts/wrapper.js index a48c0a72a..62edd7eb7 100644 --- a/websites/kibo.money/packages/lightweight-charts/wrapper.js +++ b/websites/kibo.money/packages/lightweight-charts/wrapper.js @@ -503,8 +503,6 @@ export default import("./v5.0.6-treeshaked/script.js").then((lc) => { const paneIndex = _paneIndex ?? 0; - console.log("OPTIONS", options); - const series = ichart.addSeries( /** @type {SeriesDefinition<'Baseline'>} */ (lc.BaselineSeries), { diff --git a/websites/kibo.money/scripts/chart.js b/websites/kibo.money/scripts/chart.js index 9efc292b4..4e5144f4f 100644 --- a/websites/kibo.money/scripts/chart.js +++ b/websites/kibo.money/scripts/chart.js @@ -238,8 +238,10 @@ export function init({ paneIndex, options: { ...blueprint.options, - topLineColor: blueprint.colors?.[0](), - bottomLineColor: blueprint.colors?.[1](), + topLineColor: + blueprint.color?.() ?? blueprint.colors?.[0](), + bottomLineColor: + blueprint.color?.() ?? blueprint.colors?.[1](), }, }); break; diff --git a/websites/kibo.money/scripts/main.js b/websites/kibo.money/scripts/main.js index f3e6586c6..9755c7394 100644 --- a/websites/kibo.money/scripts/main.js +++ b/websites/kibo.money/scripts/main.js @@ -16,7 +16,10 @@ * @typedef {"" | * "BTC" | * "Cents" | - * "Coinblocks" | + * "coinblocks" | + * "coindays" | + * "satblocks" | + * "satdays" | * "Count" | * "Date" | * "Difficulty" | @@ -874,6 +877,22 @@ function createUtils() { if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); unit = "Timestamp"; } + if ((!unit || thoroughUnitCheck) && id.includes("coinblocks")) { + if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); + unit = "coinblocks"; + } + if ((!unit || thoroughUnitCheck) && id.includes("coindays")) { + if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); + unit = "coindays"; + } + if ((!unit || thoroughUnitCheck) && id.includes("satblocks")) { + if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); + unit = "satblocks"; + } + if ((!unit || thoroughUnitCheck) && id.includes("satdays")) { + if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); + unit = "satdays"; + } if ((!unit || thoroughUnitCheck) && id.endsWith("height")) { if (unit) throw Error(`Unit "${unit}" already assigned "${id}"`); unit = "Height"; diff --git a/websites/kibo.money/scripts/options.js b/websites/kibo.money/scripts/options.js index e33ff2b54..6efebc104 100644 --- a/websites/kibo.money/scripts/options.js +++ b/websites/kibo.money/scripts/options.js @@ -465,15 +465,33 @@ function createPartialOptions(colors) { color: colors.orange, }, { - key: "from-1m-to-3m", - name: "1m..3m", - title: "From 1 Month ago to 3 Months ago", + key: "from-1m-to-2m", + name: "1m..2m", + title: "From 1 Month ago to 2 Months ago", color: colors.yellow, }, { - key: "from-3m-to-6m", - name: "3m..6m", - title: "From 3 Month ago to 6 Months ago", + key: "from-2m-to-3m", + name: "2m..3m", + title: "From 2 Month ago to 3 Months ago", + color: colors.yellow, + }, + { + key: "from-3m-to-4m", + name: "3m..4m", + title: "From 3 Month ago to 4 Months ago", + color: colors.lime, + }, + { + key: "from-4m-to-5m", + name: "4m..5m", + title: "From 4 Month ago to 5 Months ago", + color: colors.lime, + }, + { + key: "from-5m-to-6m", + name: "5m..6m", + title: "From 5 Month ago to 6 Months ago", color: colors.lime, }, { @@ -507,15 +525,27 @@ function createPartialOptions(colors) { color: colors.violet, }, { - key: "from-5y-to-7y", - name: "5y..7y", - title: "From 5 Years ago to 7 Years ago", + key: "from-5y-to-6y", + name: "5y..6y", + title: "From 5 Years ago to 6 Years ago", color: colors.purple, }, { - key: "from-7y-to-10y", - name: "7y..10y", - title: "From 7 Years ago to 10 Years ago", + key: "from-6y-to-7y", + name: "6y..7y", + title: "From 6 Years ago to 7 Years ago", + color: colors.purple, + }, + { + key: "from-7y-to-8y", + name: "7y..8y", + title: "From 7 Years ago to 8 Years ago", + color: colors.fuchsia, + }, + { + key: "from-8y-to-10y", + name: "8y..10y", + title: "From 8 Years ago to 10 Years ago", color: colors.fuchsia, }, { @@ -1489,34 +1519,78 @@ function createPartialOptions(colors) { }), ]), }, - { - name: "sopr", - title: `${args.title} Spent Output Profit Ratio`, - bottom: list.flatMap(({ color, name, key }) => [ - /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ - type: "Baseline", - key: `${fixKey(key)}spent-output-profit-ratio`, - title: useGroupName ? name : "sopr", - color: useGroupName ? color : undefined, - options: { - createPriceLine: { - value: 1, - }, + ...(!("list" in args) + ? [ + { + name: "sopr", + title: `${args.title} Spent Output Profit Ratio`, + bottom: list.flatMap(({ color, name, key }) => [ + /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ + type: "Baseline", + key: `${fixKey(key)}spent-output-profit-ratio`, + title: useGroupName ? name : "sopr", + color: useGroupName ? color : undefined, + options: { + createPriceLine: { + value: 1, + }, + }, + }), + /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ + type: "Baseline", + key: `${fixKey(key)}adjusted-spent-output-profit-ratio`, + title: useGroupName ? name : "asopr", + color: useGroupName ? color : undefined, + options: { + createPriceLine: { + value: 1, + }, + }, + }), + ]), }, - }), - /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ - type: "Baseline", - key: `${fixKey(key)}adjusted-spent-output-profit-ratio`, - title: useGroupName ? name : "asopr", - color: useGroupName ? color : undefined, - options: { - createPriceLine: { - value: 1, - }, + ] + : [ + { + name: "sopr", + tree: [ + { + name: "Normal", + title: `${args.title} Spent Output Profit Ratio`, + bottom: list.flatMap(({ color, name, key }) => [ + /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ + type: "Baseline", + key: `${fixKey(key)}spent-output-profit-ratio`, + title: useGroupName ? name : "sopr", + color: useGroupName ? color : undefined, + options: { + createPriceLine: { + value: 1, + }, + }, + }), + ]), + }, + { + name: "Adjusted", + title: `${args.title} Adjusted Spent Output Profit Ratio`, + bottom: list.flatMap(({ color, name, key }) => [ + /** @satisfies {FetchedBaselineSeriesBlueprint} */ ({ + type: "Baseline", + key: `${fixKey(key)}adjusted-spent-output-profit-ratio`, + title: useGroupName ? name : "asopr", + color: useGroupName ? color : undefined, + options: { + createPriceLine: { + value: 1, + }, + }, + }), + ]), + }, + ], }, - }), - ]), - }, + ]), { name: "Sell Side Risk Ratio", title: `${args.title} Sell Side Risk Ratio`, @@ -1634,7 +1708,7 @@ function createPartialOptions(colors) { { name: "Average", title: `${args.title} Average Price Paid`, - bottom: list.flatMap(({ color, name, key: _key }) => { + top: list.flatMap(({ color, name, key: _key }) => { const key = fixKey(_key); return /** @type {const} */ ([ createBaseSeries({ @@ -1648,7 +1722,7 @@ function createPartialOptions(colors) { { name: "Min", title: `${args.title} Min Price Paid`, - bottom: list.flatMap(({ color, name, key: _key }) => { + top: list.flatMap(({ color, name, key: _key }) => { const key = fixKey(_key); return /** @type {const} */ ([ createBaseSeries({ @@ -1662,7 +1736,7 @@ function createPartialOptions(colors) { { name: "Max", title: `${args.title} Max Price Paid`, - bottom: list.flatMap(({ color, name, key: _key }) => { + top: list.flatMap(({ color, name, key: _key }) => { const key = fixKey(_key); return /** @type {const} */ ([ createBaseSeries({ @@ -1701,6 +1775,35 @@ function createPartialOptions(colors) { ], }, ]), + { + name: "Coins Destroyed", + title: `${args.title} Coins Destroyed`, + bottom: list.flatMap(({ color, name, key: _key }) => { + const key = fixKey(_key); + return /** @type {const} */ ([ + createBaseSeries({ + key: `${key}coinblocks-destroyed`, + name: useGroupName ? name : "destroyed", + color, + }), + createBaseSeries({ + key: `${key}coindays-destroyed`, + name: useGroupName ? name : "destroyed", + color, + }), + createBaseSeries({ + key: `${key}coinblocks-destroyed-sum`, + name: useGroupName ? name : "destroyed", + color, + }), + createBaseSeries({ + key: `${key}coindays-destroyed-sum`, + name: useGroupName ? name : "destroyed", + color, + }), + ]); + }), + }, ], }); } @@ -2722,14 +2825,14 @@ function createPartialOptions(colors) { ], }, { - name: "Services", + name: "Hosting", tree: [ { - name: "Self-host", + name: "Self", url: () => "https://crates.io/crates/brk_cli", }, { - name: "Hosting as a service", + name: "As a service", url: () => "https://github.com/bitcoinresearchkit/brk?tab=readme-ov-file#hosting-as-a-service", }, diff --git a/websites/kibo.money/scripts/vecid-to-indexes.js b/websites/kibo.money/scripts/vecid-to-indexes.js index 52a6b8e6e..504ccac68 100644 --- a/websites/kibo.money/scripts/vecid-to-indexes.js +++ b/websites/kibo.money/scripts/vecid-to-indexes.js @@ -37,9 +37,13 @@ export function createVecIdToIndexes() { "0sats-adjusted-spent-output-profit-ratio": [0], "0sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "0sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "0sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "0sats-coinblocks-destroyed": [5], + "0sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "0sats-coindays-destroyed": [5], + "0sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "0sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "0sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "0sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "0sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "0sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "0sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -86,15 +90,17 @@ export function createVecIdToIndexes() { "0sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "0sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "0sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "0sats-satblocks-destroyed": [5], + "0sats-satdays-destroyed": [5], "0sats-sell-side-risk-ratio": [0], "0sats-spent-output-profit-ratio": [0], - "0sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "0sats-supply": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "0sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "0sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -105,7 +111,7 @@ export function createVecIdToIndexes() { "0sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "0sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "0sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "0sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "0sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "0sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -659,6 +665,12 @@ export function createVecIdToIndexes() { "coinbase-median": [0], "coinbase-min": [0, 1, 2, 7, 19, 22, 23], "coinbase-sum": [0, 1, 2, 7, 19, 22, 23], + "coinblocks-destroyed": [5], + "coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "coindays-destroyed": [5], + "coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "cumulative-0sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-0sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-block-count": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-block-size": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-block-vbytes": [0, 1, 2, 5, 7, 19, 22, 23], @@ -666,22 +678,168 @@ export function createVecIdToIndexes() { "cumulative-coinbase": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-coinbase-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-coinbase-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-empty-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-empty-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-emptyoutput-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-0-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-0-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-1-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-1-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-2-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-2-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-3-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-3-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-4-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-epoch-4-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-fee": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-fee-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-fee-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000btc-to-10-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000btc-to-10-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000sats-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1-000sats-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000-000sats-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000-000sats-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000btc-to-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000btc-to-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000sats-to-100-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10-000sats-to-100-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100-000sats-to-1-000-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100-000sats-to-1-000-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100btc-to-1-000btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100btc-to-1-000btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100sats-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-100sats-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10btc-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10btc-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10sats-to-100sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10sats-to-100sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10y-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-10y-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-15y-to-end-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-15y-to-end-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1btc-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1btc-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1d-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1d-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1m-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1m-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1sat-to-10sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1sat-to-10sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1w-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1w-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1y-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-1y-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2m-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2m-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2y-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-2y-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3m-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3m-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3y-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-3y-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4m-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4m-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4y-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-4y-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5m-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5m-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5y-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-5y-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6m-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6m-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6y-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-6y-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-7y-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-7y-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-8y-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-from-8y-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-input-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-lth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-lth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-opreturn-count": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-output-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2a-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2a-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2a-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2ms-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2ms-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2ms-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pk33-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pk33-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2pk33-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pk65-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pk65-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2pk65-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2pkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2pkh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2sh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2sh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2sh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2tr-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2tr-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2tr-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2wpkh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2wpkh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2wpkh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2wsh-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-p2wsh-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-p2wsh-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-start-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-start-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-sth-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-sth-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-subsidy": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-subsidy-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-subsidy-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], @@ -692,7 +850,55 @@ export function createVecIdToIndexes() { "cumulative-unclaimed-rewards": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-unclaimed-rewards-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-unclaimed-rewards-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-unknown-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-unknown-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "cumulative-unknownoutput-count": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10-000sats-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10-000sats-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-100btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-100btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-10y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-15y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-15y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1btc-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1btc-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1d-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1d-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1w-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1w-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-1y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-2m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-2m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-2y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-2y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-3m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-3m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-3y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-3y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-4m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-4m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-4y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-4y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-5m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-5m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-5y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-5y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-6m-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-6m-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-6y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-6y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-7y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-7y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-8y-coinblocks-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "cumulative-up-to-8y-coindays-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "date": [0, 5], "date-fixed": [5], "dateindex": [0, 5], @@ -738,9 +944,13 @@ export function createVecIdToIndexes() { "empty-adjusted-spent-output-profit-ratio": [0], "empty-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "empty-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "empty-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "empty-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "empty-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-coinblocks-destroyed": [5], + "empty-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "empty-coindays-destroyed": [5], + "empty-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "empty-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "empty-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "empty-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "empty-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "empty-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "empty-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -787,15 +997,17 @@ export function createVecIdToIndexes() { "empty-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "empty-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "empty-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-satblocks-destroyed": [5], + "empty-satdays-destroyed": [5], "empty-sell-side-risk-ratio": [0], "empty-spent-output-profit-ratio": [0], - "empty-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-supply": [0, 1, 5, 7, 19, 22, 23], "empty-supply-even": [0, 1, 5, 7, 19, 22, 23], "empty-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "empty-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "empty-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "empty-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "empty-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "empty-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "empty-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "empty-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -806,7 +1018,7 @@ export function createVecIdToIndexes() { "empty-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "empty-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "empty-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "empty-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "empty-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "empty-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "empty-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "empty-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -827,9 +1039,13 @@ export function createVecIdToIndexes() { "epoch-0-adjusted-spent-output-profit-ratio": [0], "epoch-0-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-0-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-0-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-0-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-0-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-coinblocks-destroyed": [5], + "epoch-0-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-0-coindays-destroyed": [5], + "epoch-0-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-0-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "epoch-0-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "epoch-0-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-0-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-0-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-0-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -876,15 +1092,17 @@ export function createVecIdToIndexes() { "epoch-0-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "epoch-0-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-0-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-satblocks-destroyed": [5], + "epoch-0-satdays-destroyed": [5], "epoch-0-sell-side-risk-ratio": [0], "epoch-0-spent-output-profit-ratio": [0], - "epoch-0-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-even": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-0-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -895,7 +1113,7 @@ export function createVecIdToIndexes() { "epoch-0-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-0-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-0-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-0-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-0-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-0-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -905,9 +1123,13 @@ export function createVecIdToIndexes() { "epoch-1-adjusted-spent-output-profit-ratio": [0], "epoch-1-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-1-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-1-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-1-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-1-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-coinblocks-destroyed": [5], + "epoch-1-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-1-coindays-destroyed": [5], + "epoch-1-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-1-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "epoch-1-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "epoch-1-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-1-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-1-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-1-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -954,15 +1176,17 @@ export function createVecIdToIndexes() { "epoch-1-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "epoch-1-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-1-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-satblocks-destroyed": [5], + "epoch-1-satdays-destroyed": [5], "epoch-1-sell-side-risk-ratio": [0], "epoch-1-spent-output-profit-ratio": [0], - "epoch-1-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-even": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-1-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -973,7 +1197,7 @@ export function createVecIdToIndexes() { "epoch-1-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-1-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-1-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-1-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-1-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-1-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -983,9 +1207,13 @@ export function createVecIdToIndexes() { "epoch-2-adjusted-spent-output-profit-ratio": [0], "epoch-2-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-2-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-2-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-2-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-2-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-coinblocks-destroyed": [5], + "epoch-2-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-2-coindays-destroyed": [5], + "epoch-2-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-2-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "epoch-2-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "epoch-2-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-2-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-2-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-2-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1032,15 +1260,17 @@ export function createVecIdToIndexes() { "epoch-2-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "epoch-2-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-2-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-satblocks-destroyed": [5], + "epoch-2-satdays-destroyed": [5], "epoch-2-sell-side-risk-ratio": [0], "epoch-2-spent-output-profit-ratio": [0], - "epoch-2-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-even": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-2-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1051,7 +1281,7 @@ export function createVecIdToIndexes() { "epoch-2-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-2-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-2-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-2-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-2-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-2-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1061,9 +1291,13 @@ export function createVecIdToIndexes() { "epoch-3-adjusted-spent-output-profit-ratio": [0], "epoch-3-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-3-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-3-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-3-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-3-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-coinblocks-destroyed": [5], + "epoch-3-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-3-coindays-destroyed": [5], + "epoch-3-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-3-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "epoch-3-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "epoch-3-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-3-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-3-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-3-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1110,15 +1344,17 @@ export function createVecIdToIndexes() { "epoch-3-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "epoch-3-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-3-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-satblocks-destroyed": [5], + "epoch-3-satdays-destroyed": [5], "epoch-3-sell-side-risk-ratio": [0], "epoch-3-spent-output-profit-ratio": [0], - "epoch-3-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-even": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-3-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1129,7 +1365,7 @@ export function createVecIdToIndexes() { "epoch-3-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-3-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-3-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-3-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-3-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-3-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1139,9 +1375,13 @@ export function createVecIdToIndexes() { "epoch-4-adjusted-spent-output-profit-ratio": [0], "epoch-4-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-4-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-4-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-4-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "epoch-4-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-coinblocks-destroyed": [5], + "epoch-4-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-4-coindays-destroyed": [5], + "epoch-4-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "epoch-4-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "epoch-4-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "epoch-4-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-4-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-4-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-4-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1188,15 +1428,17 @@ export function createVecIdToIndexes() { "epoch-4-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "epoch-4-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-4-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-satblocks-destroyed": [5], + "epoch-4-satdays-destroyed": [5], "epoch-4-sell-side-risk-ratio": [0], "epoch-4-spent-output-profit-ratio": [0], - "epoch-4-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-even": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-4-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1207,7 +1449,7 @@ export function createVecIdToIndexes() { "epoch-4-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "epoch-4-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "epoch-4-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "epoch-4-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "epoch-4-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "epoch-4-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1274,9 +1516,13 @@ export function createVecIdToIndexes() { "from-1-000-000sats-to-10-000-000sats-adjusted-spent-output-profit-ratio": [0], "from-1-000-000sats-to-10-000-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000-000sats-to-10-000-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000-000sats-to-10-000-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000-000sats-to-10-000-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed": [5], + "from-1-000-000sats-to-10-000-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-coindays-destroyed": [5], + "from-1-000-000sats-to-10-000-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1323,15 +1569,17 @@ export function createVecIdToIndexes() { "from-1-000-000sats-to-10-000-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-satblocks-destroyed": [5], + "from-1-000-000sats-to-10-000-000sats-satdays-destroyed": [5], "from-1-000-000sats-to-10-000-000sats-sell-side-risk-ratio": [0], "from-1-000-000sats-to-10-000-000sats-spent-output-profit-ratio": [0], - "from-1-000-000sats-to-10-000-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000-000sats-to-10-000-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1342,7 +1590,7 @@ export function createVecIdToIndexes() { "from-1-000-000sats-to-10-000-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000-000sats-to-10-000-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000-000sats-to-10-000-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000-000sats-to-10-000-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1352,9 +1600,13 @@ export function createVecIdToIndexes() { "from-1-000btc-to-10-000btc-adjusted-spent-output-profit-ratio": [0], "from-1-000btc-to-10-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000btc-to-10-000btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000btc-to-10-000btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000btc-to-10-000btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-coinblocks-destroyed": [5], + "from-1-000btc-to-10-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-coindays-destroyed": [5], + "from-1-000btc-to-10-000btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1401,15 +1653,17 @@ export function createVecIdToIndexes() { "from-1-000btc-to-10-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-satblocks-destroyed": [5], + "from-1-000btc-to-10-000btc-satdays-destroyed": [5], "from-1-000btc-to-10-000btc-sell-side-risk-ratio": [0], "from-1-000btc-to-10-000btc-spent-output-profit-ratio": [0], - "from-1-000btc-to-10-000btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000btc-to-10-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1420,7 +1674,7 @@ export function createVecIdToIndexes() { "from-1-000btc-to-10-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000btc-to-10-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000btc-to-10-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000btc-to-10-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1430,9 +1684,13 @@ export function createVecIdToIndexes() { "from-1-000sats-adjusted-spent-output-profit-ratio": [0], "from-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-coinblocks-destroyed": [5], + "from-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000sats-coindays-destroyed": [5], + "from-1-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1479,15 +1737,17 @@ export function createVecIdToIndexes() { "from-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-satblocks-destroyed": [5], + "from-1-000sats-satdays-destroyed": [5], "from-1-000sats-sell-side-risk-ratio": [0], "from-1-000sats-spent-output-profit-ratio": [0], - "from-1-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1498,14 +1758,18 @@ export function createVecIdToIndexes() { "from-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-adjusted-spent-output-profit-ratio": [0], "from-1-000sats-to-10-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-to-10-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-to-10-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1-000sats-to-10-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-coinblocks-destroyed": [5], + "from-1-000sats-to-10-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-coindays-destroyed": [5], + "from-1-000sats-to-10-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1552,15 +1816,17 @@ export function createVecIdToIndexes() { "from-1-000sats-to-10-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-satblocks-destroyed": [5], + "from-1-000sats-to-10-000sats-satdays-destroyed": [5], "from-1-000sats-to-10-000sats-sell-side-risk-ratio": [0], "from-1-000sats-to-10-000sats-spent-output-profit-ratio": [0], - "from-1-000sats-to-10-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000sats-to-10-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1571,7 +1837,7 @@ export function createVecIdToIndexes() { "from-1-000sats-to-10-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1-000sats-to-10-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1-000sats-to-10-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1-000sats-to-10-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1586,9 +1852,13 @@ export function createVecIdToIndexes() { "from-10-000-000sats-to-1btc-adjusted-spent-output-profit-ratio": [0], "from-10-000-000sats-to-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000-000sats-to-1btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000-000sats-to-1btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000-000sats-to-1btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-coinblocks-destroyed": [5], + "from-10-000-000sats-to-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-coindays-destroyed": [5], + "from-10-000-000sats-to-1btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1635,15 +1905,17 @@ export function createVecIdToIndexes() { "from-10-000-000sats-to-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-satblocks-destroyed": [5], + "from-10-000-000sats-to-1btc-satdays-destroyed": [5], "from-10-000-000sats-to-1btc-sell-side-risk-ratio": [0], "from-10-000-000sats-to-1btc-spent-output-profit-ratio": [0], - "from-10-000-000sats-to-1btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000-000sats-to-1btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1654,7 +1926,7 @@ export function createVecIdToIndexes() { "from-10-000-000sats-to-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000-000sats-to-1btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000-000sats-to-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000-000sats-to-1btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1664,9 +1936,13 @@ export function createVecIdToIndexes() { "from-10-000btc-to-100-000btc-adjusted-spent-output-profit-ratio": [0], "from-10-000btc-to-100-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000btc-to-100-000btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000btc-to-100-000btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000btc-to-100-000btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-coinblocks-destroyed": [5], + "from-10-000btc-to-100-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-coindays-destroyed": [5], + "from-10-000btc-to-100-000btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1713,15 +1989,17 @@ export function createVecIdToIndexes() { "from-10-000btc-to-100-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-satblocks-destroyed": [5], + "from-10-000btc-to-100-000btc-satdays-destroyed": [5], "from-10-000btc-to-100-000btc-sell-side-risk-ratio": [0], "from-10-000btc-to-100-000btc-spent-output-profit-ratio": [0], - "from-10-000btc-to-100-000btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000btc-to-100-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1732,7 +2010,7 @@ export function createVecIdToIndexes() { "from-10-000btc-to-100-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000btc-to-100-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000btc-to-100-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000btc-to-100-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1742,9 +2020,13 @@ export function createVecIdToIndexes() { "from-10-000sats-to-100-000sats-adjusted-spent-output-profit-ratio": [0], "from-10-000sats-to-100-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000sats-to-100-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000sats-to-100-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10-000sats-to-100-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-coinblocks-destroyed": [5], + "from-10-000sats-to-100-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-coindays-destroyed": [5], + "from-10-000sats-to-100-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1791,15 +2073,17 @@ export function createVecIdToIndexes() { "from-10-000sats-to-100-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-satblocks-destroyed": [5], + "from-10-000sats-to-100-000sats-satdays-destroyed": [5], "from-10-000sats-to-100-000sats-sell-side-risk-ratio": [0], "from-10-000sats-to-100-000sats-spent-output-profit-ratio": [0], - "from-10-000sats-to-100-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000sats-to-100-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1810,7 +2094,7 @@ export function createVecIdToIndexes() { "from-10-000sats-to-100-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10-000sats-to-100-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10-000sats-to-100-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10-000sats-to-100-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1820,9 +2104,13 @@ export function createVecIdToIndexes() { "from-100-000btc-adjusted-spent-output-profit-ratio": [0], "from-100-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-coinblocks-destroyed": [5], + "from-100-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100-000btc-coindays-destroyed": [5], + "from-100-000btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-100-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-100-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1869,15 +2157,17 @@ export function createVecIdToIndexes() { "from-100-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-100-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-satblocks-destroyed": [5], + "from-100-000btc-satdays-destroyed": [5], "from-100-000btc-sell-side-risk-ratio": [0], "from-100-000btc-spent-output-profit-ratio": [0], - "from-100-000btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1888,7 +2178,7 @@ export function createVecIdToIndexes() { "from-100-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-100-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1898,9 +2188,13 @@ export function createVecIdToIndexes() { "from-100-000sats-to-1-000-000sats-adjusted-spent-output-profit-ratio": [0], "from-100-000sats-to-1-000-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000sats-to-1-000-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000sats-to-1-000-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100-000sats-to-1-000-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-coinblocks-destroyed": [5], + "from-100-000sats-to-1-000-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-coindays-destroyed": [5], + "from-100-000sats-to-1-000-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -1947,15 +2241,17 @@ export function createVecIdToIndexes() { "from-100-000sats-to-1-000-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-satblocks-destroyed": [5], + "from-100-000sats-to-1-000-000sats-satdays-destroyed": [5], "from-100-000sats-to-1-000-000sats-sell-side-risk-ratio": [0], "from-100-000sats-to-1-000-000sats-spent-output-profit-ratio": [0], - "from-100-000sats-to-1-000-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100-000sats-to-1-000-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -1966,7 +2262,7 @@ export function createVecIdToIndexes() { "from-100-000sats-to-1-000-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100-000sats-to-1-000-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100-000sats-to-1-000-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-100-000sats-to-1-000-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -1976,9 +2272,13 @@ export function createVecIdToIndexes() { "from-100btc-adjusted-spent-output-profit-ratio": [0], "from-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-coinblocks-destroyed": [5], + "from-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100btc-coindays-destroyed": [5], + "from-100btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2025,15 +2325,17 @@ export function createVecIdToIndexes() { "from-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-satblocks-destroyed": [5], + "from-100btc-satdays-destroyed": [5], "from-100btc-sell-side-risk-ratio": [0], "from-100btc-spent-output-profit-ratio": [0], - "from-100btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2044,14 +2346,18 @@ export function createVecIdToIndexes() { "from-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-adjusted-spent-output-profit-ratio": [0], "from-100btc-to-1-000btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-to-1-000btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-to-1-000btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100btc-to-1-000btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-coinblocks-destroyed": [5], + "from-100btc-to-1-000btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100btc-to-1-000btc-coindays-destroyed": [5], + "from-100btc-to-1-000btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100btc-to-1-000btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2098,15 +2404,17 @@ export function createVecIdToIndexes() { "from-100btc-to-1-000btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-100btc-to-1-000btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-satblocks-destroyed": [5], + "from-100btc-to-1-000btc-satdays-destroyed": [5], "from-100btc-to-1-000btc-sell-side-risk-ratio": [0], "from-100btc-to-1-000btc-spent-output-profit-ratio": [0], - "from-100btc-to-1-000btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100btc-to-1-000btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2117,7 +2425,7 @@ export function createVecIdToIndexes() { "from-100btc-to-1-000btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100btc-to-1-000btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100btc-to-1-000btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-100btc-to-1-000btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2132,9 +2440,13 @@ export function createVecIdToIndexes() { "from-100sats-to-1-000sats-adjusted-spent-output-profit-ratio": [0], "from-100sats-to-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100sats-to-1-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100sats-to-1-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-100sats-to-1-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-coinblocks-destroyed": [5], + "from-100sats-to-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100sats-to-1-000sats-coindays-destroyed": [5], + "from-100sats-to-1-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-100sats-to-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2181,15 +2493,17 @@ export function createVecIdToIndexes() { "from-100sats-to-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-100sats-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-satblocks-destroyed": [5], + "from-100sats-to-1-000sats-satdays-destroyed": [5], "from-100sats-to-1-000sats-sell-side-risk-ratio": [0], "from-100sats-to-1-000sats-spent-output-profit-ratio": [0], - "from-100sats-to-1-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100sats-to-1-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2200,7 +2514,7 @@ export function createVecIdToIndexes() { "from-100sats-to-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-100sats-to-1-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-100sats-to-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-100sats-to-1-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2210,9 +2524,13 @@ export function createVecIdToIndexes() { "from-10btc-adjusted-spent-output-profit-ratio": [0], "from-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-coinblocks-destroyed": [5], + "from-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10btc-coindays-destroyed": [5], + "from-10btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2259,15 +2577,17 @@ export function createVecIdToIndexes() { "from-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-satblocks-destroyed": [5], + "from-10btc-satdays-destroyed": [5], "from-10btc-sell-side-risk-ratio": [0], "from-10btc-spent-output-profit-ratio": [0], - "from-10btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2278,14 +2598,18 @@ export function createVecIdToIndexes() { "from-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-adjusted-spent-output-profit-ratio": [0], "from-10btc-to-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-to-100btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-to-100btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10btc-to-100btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-coinblocks-destroyed": [5], + "from-10btc-to-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10btc-to-100btc-coindays-destroyed": [5], + "from-10btc-to-100btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10btc-to-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2332,15 +2656,17 @@ export function createVecIdToIndexes() { "from-10btc-to-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10btc-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-satblocks-destroyed": [5], + "from-10btc-to-100btc-satdays-destroyed": [5], "from-10btc-to-100btc-sell-side-risk-ratio": [0], "from-10btc-to-100btc-spent-output-profit-ratio": [0], - "from-10btc-to-100btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10btc-to-100btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2351,7 +2677,7 @@ export function createVecIdToIndexes() { "from-10btc-to-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10btc-to-100btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10btc-to-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10btc-to-100btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10btc-to-100btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2366,9 +2692,13 @@ export function createVecIdToIndexes() { "from-10sats-to-100sats-adjusted-spent-output-profit-ratio": [0], "from-10sats-to-100sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10sats-to-100sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10sats-to-100sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10sats-to-100sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10sats-to-100sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-coinblocks-destroyed": [5], + "from-10sats-to-100sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10sats-to-100sats-coindays-destroyed": [5], + "from-10sats-to-100sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10sats-to-100sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10sats-to-100sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10sats-to-100sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2415,15 +2745,17 @@ export function createVecIdToIndexes() { "from-10sats-to-100sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10sats-to-100sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10sats-to-100sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-satblocks-destroyed": [5], + "from-10sats-to-100sats-satdays-destroyed": [5], "from-10sats-to-100sats-sell-side-risk-ratio": [0], "from-10sats-to-100sats-spent-output-profit-ratio": [0], - "from-10sats-to-100sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10sats-to-100sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2434,7 +2766,7 @@ export function createVecIdToIndexes() { "from-10sats-to-100sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10sats-to-100sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10sats-to-100sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10sats-to-100sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10sats-to-100sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2444,9 +2776,13 @@ export function createVecIdToIndexes() { "from-10y-adjusted-spent-output-profit-ratio": [0], "from-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-coinblocks-destroyed": [5], + "from-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10y-coindays-destroyed": [5], + "from-10y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2493,15 +2829,17 @@ export function createVecIdToIndexes() { "from-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-satblocks-destroyed": [5], + "from-10y-satdays-destroyed": [5], "from-10y-sell-side-risk-ratio": [0], "from-10y-spent-output-profit-ratio": [0], - "from-10y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2512,14 +2850,18 @@ export function createVecIdToIndexes() { "from-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-adjusted-spent-output-profit-ratio": [0], "from-10y-to-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-to-15y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-to-15y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-10y-to-15y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-coinblocks-destroyed": [5], + "from-10y-to-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10y-to-15y-coindays-destroyed": [5], + "from-10y-to-15y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-10y-to-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-10y-to-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-10y-to-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2566,15 +2908,17 @@ export function createVecIdToIndexes() { "from-10y-to-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-10y-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-satblocks-destroyed": [5], + "from-10y-to-15y-satdays-destroyed": [5], "from-10y-to-15y-sell-side-risk-ratio": [0], "from-10y-to-15y-spent-output-profit-ratio": [0], - "from-10y-to-15y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10y-to-15y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2585,7 +2929,7 @@ export function createVecIdToIndexes() { "from-10y-to-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-10y-to-15y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-10y-to-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-10y-to-15y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-10y-to-15y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2600,9 +2944,13 @@ export function createVecIdToIndexes() { "from-15y-adjusted-spent-output-profit-ratio": [0], "from-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-coinblocks-destroyed": [5], + "from-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-15y-coindays-destroyed": [5], + "from-15y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2649,15 +2997,17 @@ export function createVecIdToIndexes() { "from-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-satblocks-destroyed": [5], + "from-15y-satdays-destroyed": [5], "from-15y-sell-side-risk-ratio": [0], "from-15y-spent-output-profit-ratio": [0], - "from-15y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-15y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2668,14 +3018,18 @@ export function createVecIdToIndexes() { "from-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-15y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-adjusted-spent-output-profit-ratio": [0], "from-15y-to-end-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-to-end-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-to-end-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-15y-to-end-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-to-end-coinblocks-destroyed": [5], + "from-15y-to-end-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-15y-to-end-coindays-destroyed": [5], + "from-15y-to-end-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-15y-to-end-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-15y-to-end-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-15y-to-end-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2722,15 +3076,17 @@ export function createVecIdToIndexes() { "from-15y-to-end-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-15y-to-end-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-to-end-satblocks-destroyed": [5], + "from-15y-to-end-satdays-destroyed": [5], "from-15y-to-end-sell-side-risk-ratio": [0], "from-15y-to-end-spent-output-profit-ratio": [0], - "from-15y-to-end-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-to-end-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-15y-to-end-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-to-end-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2741,7 +3097,7 @@ export function createVecIdToIndexes() { "from-15y-to-end-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-15y-to-end-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-15y-to-end-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-15y-to-end-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-15y-to-end-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2756,9 +3112,13 @@ export function createVecIdToIndexes() { "from-1btc-adjusted-spent-output-profit-ratio": [0], "from-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-coinblocks-destroyed": [5], + "from-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1btc-coindays-destroyed": [5], + "from-1btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2805,15 +3165,17 @@ export function createVecIdToIndexes() { "from-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-satblocks-destroyed": [5], + "from-1btc-satdays-destroyed": [5], "from-1btc-sell-side-risk-ratio": [0], "from-1btc-spent-output-profit-ratio": [0], - "from-1btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2824,14 +3186,18 @@ export function createVecIdToIndexes() { "from-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-adjusted-spent-output-profit-ratio": [0], "from-1btc-to-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-to-10btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-to-10btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1btc-to-10btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-coinblocks-destroyed": [5], + "from-1btc-to-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1btc-to-10btc-coindays-destroyed": [5], + "from-1btc-to-10btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1btc-to-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2878,15 +3244,17 @@ export function createVecIdToIndexes() { "from-1btc-to-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1btc-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-satblocks-destroyed": [5], + "from-1btc-to-10btc-satdays-destroyed": [5], "from-1btc-to-10btc-sell-side-risk-ratio": [0], "from-1btc-to-10btc-spent-output-profit-ratio": [0], - "from-1btc-to-10btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1btc-to-10btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2897,7 +3265,7 @@ export function createVecIdToIndexes() { "from-1btc-to-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1btc-to-10btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1btc-to-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1btc-to-10btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1btc-to-10btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -2912,9 +3280,13 @@ export function createVecIdToIndexes() { "from-1d-adjusted-spent-output-profit-ratio": [0], "from-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-coinblocks-destroyed": [5], + "from-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1d-coindays-destroyed": [5], + "from-1d-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -2961,15 +3333,17 @@ export function createVecIdToIndexes() { "from-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-satblocks-destroyed": [5], + "from-1d-satdays-destroyed": [5], "from-1d-sell-side-risk-ratio": [0], "from-1d-spent-output-profit-ratio": [0], - "from-1d-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1d-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -2980,14 +3354,18 @@ export function createVecIdToIndexes() { "from-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1d-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-adjusted-spent-output-profit-ratio": [0], "from-1d-to-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-to-1w-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-to-1w-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1d-to-1w-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-coinblocks-destroyed": [5], + "from-1d-to-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1d-to-1w-coindays-destroyed": [5], + "from-1d-to-1w-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1d-to-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1d-to-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1d-to-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3034,15 +3412,17 @@ export function createVecIdToIndexes() { "from-1d-to-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1d-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-satblocks-destroyed": [5], + "from-1d-to-1w-satdays-destroyed": [5], "from-1d-to-1w-sell-side-risk-ratio": [0], "from-1d-to-1w-spent-output-profit-ratio": [0], - "from-1d-to-1w-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1d-to-1w-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3053,7 +3433,7 @@ export function createVecIdToIndexes() { "from-1d-to-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1d-to-1w-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1d-to-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1d-to-1w-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1d-to-1w-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -3068,9 +3448,13 @@ export function createVecIdToIndexes() { "from-1m-adjusted-spent-output-profit-ratio": [0], "from-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-coinblocks-destroyed": [5], + "from-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1m-coindays-destroyed": [5], + "from-1m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3117,15 +3501,17 @@ export function createVecIdToIndexes() { "from-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-satblocks-destroyed": [5], + "from-1m-satdays-destroyed": [5], "from-1m-sell-side-risk-ratio": [0], "from-1m-spent-output-profit-ratio": [0], - "from-1m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-supply": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3136,86 +3522,92 @@ export function createVecIdToIndexes() { "from-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-adjusted-spent-output-profit-ratio": [0], - "from-1m-to-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-realized-cap-30d-change": [0], - "from-1m-to-3m-realized-loss": [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-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-sell-side-risk-ratio": [0], - "from-1m-to-3m-spent-output-profit-ratio": [0], - "from-1m-to-3m-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-even": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-even-relative-to-own-supply": [0, 1, 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-loss": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], - "from-1m-to-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1m-to-3m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-adjusted-spent-output-profit-ratio": [0], + "from-1m-to-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-coinblocks-destroyed": [5], + "from-1m-to-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1m-to-2m-coindays-destroyed": [5], + "from-1m-to-2m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1m-to-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-realized-cap-30d-change": [0], + "from-1m-to-2m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-1m-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-satblocks-destroyed": [5], + "from-1m-to-2m-satdays-destroyed": [5], + "from-1m-to-2m-sell-side-risk-ratio": [0], + "from-1m-to-2m-spent-output-profit-ratio": [0], + "from-1m-to-2m-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-1m-to-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1m-to-2m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-1m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3224,9 +3616,13 @@ export function createVecIdToIndexes() { "from-1sat-to-10sats-adjusted-spent-output-profit-ratio": [0], "from-1sat-to-10sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1sat-to-10sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1sat-to-10sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1sat-to-10sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1sat-to-10sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-coinblocks-destroyed": [5], + "from-1sat-to-10sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1sat-to-10sats-coindays-destroyed": [5], + "from-1sat-to-10sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1sat-to-10sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1sat-to-10sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1sat-to-10sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3273,15 +3669,17 @@ export function createVecIdToIndexes() { "from-1sat-to-10sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1sat-to-10sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1sat-to-10sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-satblocks-destroyed": [5], + "from-1sat-to-10sats-satdays-destroyed": [5], "from-1sat-to-10sats-sell-side-risk-ratio": [0], "from-1sat-to-10sats-spent-output-profit-ratio": [0], - "from-1sat-to-10sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-supply": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1sat-to-10sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3292,7 +3690,7 @@ export function createVecIdToIndexes() { "from-1sat-to-10sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1sat-to-10sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1sat-to-10sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1sat-to-10sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1sat-to-10sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -3302,9 +3700,13 @@ export function createVecIdToIndexes() { "from-1w-adjusted-spent-output-profit-ratio": [0], "from-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-coinblocks-destroyed": [5], + "from-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1w-coindays-destroyed": [5], + "from-1w-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3351,15 +3753,17 @@ export function createVecIdToIndexes() { "from-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-satblocks-destroyed": [5], + "from-1w-satdays-destroyed": [5], "from-1w-sell-side-risk-ratio": [0], "from-1w-spent-output-profit-ratio": [0], - "from-1w-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1w-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3370,14 +3774,18 @@ export function createVecIdToIndexes() { "from-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1w-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-adjusted-spent-output-profit-ratio": [0], "from-1w-to-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-to-1m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-to-1m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1w-to-1m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-coinblocks-destroyed": [5], + "from-1w-to-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1w-to-1m-coindays-destroyed": [5], + "from-1w-to-1m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1w-to-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1w-to-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1w-to-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3424,15 +3832,17 @@ export function createVecIdToIndexes() { "from-1w-to-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1w-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-satblocks-destroyed": [5], + "from-1w-to-1m-satdays-destroyed": [5], "from-1w-to-1m-sell-side-risk-ratio": [0], "from-1w-to-1m-spent-output-profit-ratio": [0], - "from-1w-to-1m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1w-to-1m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3443,7 +3853,7 @@ export function createVecIdToIndexes() { "from-1w-to-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1w-to-1m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1w-to-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1w-to-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1w-to-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -3458,9 +3868,13 @@ export function createVecIdToIndexes() { "from-1y-adjusted-spent-output-profit-ratio": [0], "from-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-coinblocks-destroyed": [5], + "from-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1y-coindays-destroyed": [5], + "from-1y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3507,15 +3921,17 @@ export function createVecIdToIndexes() { "from-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-satblocks-destroyed": [5], + "from-1y-satdays-destroyed": [5], "from-1y-sell-side-risk-ratio": [0], "from-1y-spent-output-profit-ratio": [0], - "from-1y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3526,14 +3942,18 @@ export function createVecIdToIndexes() { "from-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-adjusted-spent-output-profit-ratio": [0], "from-1y-to-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-to-2y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-to-2y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-1y-to-2y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-coinblocks-destroyed": [5], + "from-1y-to-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1y-to-2y-coindays-destroyed": [5], + "from-1y-to-2y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-1y-to-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-1y-to-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-1y-to-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3580,15 +4000,17 @@ export function createVecIdToIndexes() { "from-1y-to-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-1y-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-satblocks-destroyed": [5], + "from-1y-to-2y-satdays-destroyed": [5], "from-1y-to-2y-sell-side-risk-ratio": [0], "from-1y-to-2y-spent-output-profit-ratio": [0], - "from-1y-to-2y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1y-to-2y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3599,7 +4021,7 @@ export function createVecIdToIndexes() { "from-1y-to-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-1y-to-2y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-1y-to-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-1y-to-2y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-1y-to-2y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -3614,9 +4036,13 @@ export function createVecIdToIndexes() { "from-2m-adjusted-spent-output-profit-ratio": [0], "from-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-coinblocks-destroyed": [5], + "from-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2m-coindays-destroyed": [5], + "from-2m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3663,15 +4089,17 @@ export function createVecIdToIndexes() { "from-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-satblocks-destroyed": [5], + "from-2m-satdays-destroyed": [5], "from-2m-sell-side-risk-ratio": [0], "from-2m-spent-output-profit-ratio": [0], - "from-2m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-supply": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3682,8 +4110,92 @@ export function createVecIdToIndexes() { "from-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-adjusted-spent-output-profit-ratio": [0], + "from-2m-to-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-coinblocks-destroyed": [5], + "from-2m-to-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2m-to-3m-coindays-destroyed": [5], + "from-2m-to-3m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2m-to-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-realized-cap-30d-change": [0], + "from-2m-to-3m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-2m-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-satblocks-destroyed": [5], + "from-2m-to-3m-satdays-destroyed": [5], + "from-2m-to-3m-sell-side-risk-ratio": [0], + "from-2m-to-3m-spent-output-profit-ratio": [0], + "from-2m-to-3m-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-2m-to-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2m-to-3m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-2m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3692,9 +4204,13 @@ export function createVecIdToIndexes() { "from-2y-adjusted-spent-output-profit-ratio": [0], "from-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-coinblocks-destroyed": [5], + "from-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2y-coindays-destroyed": [5], + "from-2y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3741,15 +4257,17 @@ export function createVecIdToIndexes() { "from-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-satblocks-destroyed": [5], + "from-2y-satdays-destroyed": [5], "from-2y-sell-side-risk-ratio": [0], "from-2y-spent-output-profit-ratio": [0], - "from-2y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3760,14 +4278,18 @@ export function createVecIdToIndexes() { "from-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-adjusted-spent-output-profit-ratio": [0], "from-2y-to-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-to-3y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-to-3y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-2y-to-3y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-coinblocks-destroyed": [5], + "from-2y-to-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2y-to-3y-coindays-destroyed": [5], + "from-2y-to-3y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-2y-to-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-2y-to-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-2y-to-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3814,15 +4336,17 @@ export function createVecIdToIndexes() { "from-2y-to-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-2y-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-satblocks-destroyed": [5], + "from-2y-to-3y-satdays-destroyed": [5], "from-2y-to-3y-sell-side-risk-ratio": [0], "from-2y-to-3y-spent-output-profit-ratio": [0], - "from-2y-to-3y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2y-to-3y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3833,7 +4357,7 @@ export function createVecIdToIndexes() { "from-2y-to-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-2y-to-3y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-2y-to-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-2y-to-3y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-2y-to-3y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -3848,9 +4372,13 @@ export function createVecIdToIndexes() { "from-3m-adjusted-spent-output-profit-ratio": [0], "from-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-coinblocks-destroyed": [5], + "from-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3m-coindays-destroyed": [5], + "from-3m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -3897,15 +4425,17 @@ export function createVecIdToIndexes() { "from-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-satblocks-destroyed": [5], + "from-3m-satdays-destroyed": [5], "from-3m-sell-side-risk-ratio": [0], "from-3m-spent-output-profit-ratio": [0], - "from-3m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-supply": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -3916,86 +4446,92 @@ export function createVecIdToIndexes() { "from-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-adjusted-spent-output-profit-ratio": [0], - "from-3m-to-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-realized-cap-30d-change": [0], - "from-3m-to-6m-realized-loss": [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-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-sell-side-risk-ratio": [0], - "from-3m-to-6m-spent-output-profit-ratio": [0], - "from-3m-to-6m-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-even": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-even-relative-to-own-supply": [0, 1, 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-loss": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], - "from-3m-to-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3m-to-6m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-adjusted-spent-output-profit-ratio": [0], + "from-3m-to-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-coinblocks-destroyed": [5], + "from-3m-to-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3m-to-4m-coindays-destroyed": [5], + "from-3m-to-4m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3m-to-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-realized-cap-30d-change": [0], + "from-3m-to-4m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-3m-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-satblocks-destroyed": [5], + "from-3m-to-4m-satdays-destroyed": [5], + "from-3m-to-4m-sell-side-risk-ratio": [0], + "from-3m-to-4m-spent-output-profit-ratio": [0], + "from-3m-to-4m-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-3m-to-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3m-to-4m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-3m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4004,9 +4540,13 @@ export function createVecIdToIndexes() { "from-3y-adjusted-spent-output-profit-ratio": [0], "from-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-coinblocks-destroyed": [5], + "from-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3y-coindays-destroyed": [5], + "from-3y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4053,15 +4593,17 @@ export function createVecIdToIndexes() { "from-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-satblocks-destroyed": [5], + "from-3y-satdays-destroyed": [5], "from-3y-sell-side-risk-ratio": [0], "from-3y-spent-output-profit-ratio": [0], - "from-3y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4072,14 +4614,18 @@ export function createVecIdToIndexes() { "from-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-adjusted-spent-output-profit-ratio": [0], "from-3y-to-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-to-4y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-to-4y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-3y-to-4y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-coinblocks-destroyed": [5], + "from-3y-to-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3y-to-4y-coindays-destroyed": [5], + "from-3y-to-4y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-3y-to-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-3y-to-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-3y-to-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4126,15 +4672,17 @@ export function createVecIdToIndexes() { "from-3y-to-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-3y-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-satblocks-destroyed": [5], + "from-3y-to-4y-satdays-destroyed": [5], "from-3y-to-4y-sell-side-risk-ratio": [0], "from-3y-to-4y-spent-output-profit-ratio": [0], - "from-3y-to-4y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3y-to-4y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4145,7 +4693,7 @@ export function createVecIdToIndexes() { "from-3y-to-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-3y-to-4y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-3y-to-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-3y-to-4y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-3y-to-4y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -4160,9 +4708,13 @@ export function createVecIdToIndexes() { "from-4m-adjusted-spent-output-profit-ratio": [0], "from-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-coinblocks-destroyed": [5], + "from-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4m-coindays-destroyed": [5], + "from-4m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4209,15 +4761,17 @@ export function createVecIdToIndexes() { "from-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-satblocks-destroyed": [5], + "from-4m-satdays-destroyed": [5], "from-4m-sell-side-risk-ratio": [0], "from-4m-spent-output-profit-ratio": [0], - "from-4m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-supply": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4228,8 +4782,92 @@ export function createVecIdToIndexes() { "from-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-adjusted-spent-output-profit-ratio": [0], + "from-4m-to-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-coinblocks-destroyed": [5], + "from-4m-to-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4m-to-5m-coindays-destroyed": [5], + "from-4m-to-5m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4m-to-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-realized-cap-30d-change": [0], + "from-4m-to-5m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-4m-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-satblocks-destroyed": [5], + "from-4m-to-5m-satdays-destroyed": [5], + "from-4m-to-5m-sell-side-risk-ratio": [0], + "from-4m-to-5m-spent-output-profit-ratio": [0], + "from-4m-to-5m-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-4m-to-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4m-to-5m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-4m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4238,9 +4876,13 @@ export function createVecIdToIndexes() { "from-4y-adjusted-spent-output-profit-ratio": [0], "from-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-coinblocks-destroyed": [5], + "from-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4y-coindays-destroyed": [5], + "from-4y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4287,15 +4929,17 @@ export function createVecIdToIndexes() { "from-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-satblocks-destroyed": [5], + "from-4y-satdays-destroyed": [5], "from-4y-sell-side-risk-ratio": [0], "from-4y-spent-output-profit-ratio": [0], - "from-4y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4306,14 +4950,18 @@ export function createVecIdToIndexes() { "from-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-adjusted-spent-output-profit-ratio": [0], "from-4y-to-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-to-5y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-to-5y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-4y-to-5y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-coinblocks-destroyed": [5], + "from-4y-to-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4y-to-5y-coindays-destroyed": [5], + "from-4y-to-5y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-4y-to-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-4y-to-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-4y-to-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4360,15 +5008,17 @@ export function createVecIdToIndexes() { "from-4y-to-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-4y-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-satblocks-destroyed": [5], + "from-4y-to-5y-satdays-destroyed": [5], "from-4y-to-5y-sell-side-risk-ratio": [0], "from-4y-to-5y-spent-output-profit-ratio": [0], - "from-4y-to-5y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4y-to-5y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4379,7 +5029,7 @@ export function createVecIdToIndexes() { "from-4y-to-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-4y-to-5y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-4y-to-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-4y-to-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-4y-to-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -4394,9 +5044,13 @@ export function createVecIdToIndexes() { "from-5m-adjusted-spent-output-profit-ratio": [0], "from-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-coinblocks-destroyed": [5], + "from-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5m-coindays-destroyed": [5], + "from-5m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4443,15 +5097,17 @@ export function createVecIdToIndexes() { "from-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-satblocks-destroyed": [5], + "from-5m-satdays-destroyed": [5], "from-5m-sell-side-risk-ratio": [0], "from-5m-spent-output-profit-ratio": [0], - "from-5m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-supply": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4462,8 +5118,92 @@ export function createVecIdToIndexes() { "from-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-adjusted-spent-output-profit-ratio": [0], + "from-5m-to-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-coinblocks-destroyed": [5], + "from-5m-to-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5m-to-6m-coindays-destroyed": [5], + "from-5m-to-6m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5m-to-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-realized-cap-30d-change": [0], + "from-5m-to-6m-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-5m-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-satblocks-destroyed": [5], + "from-5m-to-6m-satdays-destroyed": [5], + "from-5m-to-6m-sell-side-risk-ratio": [0], + "from-5m-to-6m-spent-output-profit-ratio": [0], + "from-5m-to-6m-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-5m-to-6m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5m-to-6m-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-5m-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4472,9 +5212,13 @@ export function createVecIdToIndexes() { "from-5y-adjusted-spent-output-profit-ratio": [0], "from-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-coinblocks-destroyed": [5], + "from-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5y-coindays-destroyed": [5], + "from-5y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4521,15 +5265,17 @@ export function createVecIdToIndexes() { "from-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-satblocks-destroyed": [5], + "from-5y-satdays-destroyed": [5], "from-5y-sell-side-risk-ratio": [0], "from-5y-spent-output-profit-ratio": [0], - "from-5y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-supply": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4540,86 +5286,92 @@ export function createVecIdToIndexes() { "from-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-adjusted-spent-output-profit-ratio": [0], - "from-5y-to-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-realized-cap-30d-change": [0], - "from-5y-to-7y-realized-loss": [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-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-sell-side-risk-ratio": [0], - "from-5y-to-7y-spent-output-profit-ratio": [0], - "from-5y-to-7y-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-even": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-even-relative-to-own-supply": [0, 1, 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-loss": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], - "from-5y-to-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-5y-to-7y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-adjusted-spent-output-profit-ratio": [0], + "from-5y-to-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-coinblocks-destroyed": [5], + "from-5y-to-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5y-to-6y-coindays-destroyed": [5], + "from-5y-to-6y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-5y-to-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-realized-cap-30d-change": [0], + "from-5y-to-6y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-5y-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-satblocks-destroyed": [5], + "from-5y-to-6y-satdays-destroyed": [5], + "from-5y-to-6y-sell-side-risk-ratio": [0], + "from-5y-to-6y-spent-output-profit-ratio": [0], + "from-5y-to-6y-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-5y-to-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-5y-to-6y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-5y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4628,9 +5380,13 @@ export function createVecIdToIndexes() { "from-6m-adjusted-spent-output-profit-ratio": [0], "from-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-coinblocks-destroyed": [5], + "from-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6m-coindays-destroyed": [5], + "from-6m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4677,15 +5433,17 @@ export function createVecIdToIndexes() { "from-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-satblocks-destroyed": [5], + "from-6m-satdays-destroyed": [5], "from-6m-sell-side-risk-ratio": [0], "from-6m-spent-output-profit-ratio": [0], - "from-6m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4696,14 +5454,18 @@ export function createVecIdToIndexes() { "from-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-adjusted-spent-output-profit-ratio": [0], "from-6m-to-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-to-1y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-to-1y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6m-to-1y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-coinblocks-destroyed": [5], + "from-6m-to-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6m-to-1y-coindays-destroyed": [5], + "from-6m-to-1y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6m-to-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6m-to-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6m-to-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4750,15 +5512,17 @@ export function createVecIdToIndexes() { "from-6m-to-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-6m-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-satblocks-destroyed": [5], + "from-6m-to-1y-satdays-destroyed": [5], "from-6m-to-1y-sell-side-risk-ratio": [0], "from-6m-to-1y-spent-output-profit-ratio": [0], - "from-6m-to-1y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6m-to-1y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4769,7 +5533,7 @@ export function createVecIdToIndexes() { "from-6m-to-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6m-to-1y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6m-to-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "from-6m-to-1y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-6m-to-1y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -4784,9 +5548,13 @@ export function createVecIdToIndexes() { "from-6y-adjusted-spent-output-profit-ratio": [0], "from-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-6y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-coinblocks-destroyed": [5], + "from-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6y-coindays-destroyed": [5], + "from-6y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4833,15 +5601,17 @@ export function createVecIdToIndexes() { "from-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-satblocks-destroyed": [5], + "from-6y-satdays-destroyed": [5], "from-6y-sell-side-risk-ratio": [0], "from-6y-spent-output-profit-ratio": [0], - "from-6y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-supply": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4852,8 +5622,92 @@ export function createVecIdToIndexes() { "from-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-6y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-adjusted-spent-output-profit-ratio": [0], + "from-6y-to-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-coinblocks-destroyed": [5], + "from-6y-to-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6y-to-7y-coindays-destroyed": [5], + "from-6y-to-7y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-6y-to-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-realized-cap-30d-change": [0], + "from-6y-to-7y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-6y-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-satblocks-destroyed": [5], + "from-6y-to-7y-satdays-destroyed": [5], + "from-6y-to-7y-sell-side-risk-ratio": [0], + "from-6y-to-7y-spent-output-profit-ratio": [0], + "from-6y-to-7y-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-6y-to-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-6y-to-7y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-6y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4862,9 +5716,13 @@ export function createVecIdToIndexes() { "from-7y-adjusted-spent-output-profit-ratio": [0], "from-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-coinblocks-destroyed": [5], + "from-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-7y-coindays-destroyed": [5], + "from-7y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -4911,15 +5769,17 @@ export function createVecIdToIndexes() { "from-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-satblocks-destroyed": [5], + "from-7y-satdays-destroyed": [5], "from-7y-sell-side-risk-ratio": [0], "from-7y-spent-output-profit-ratio": [0], - "from-7y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-supply": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -4930,86 +5790,92 @@ export function createVecIdToIndexes() { "from-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-adjusted-spent-output-profit-ratio": [0], - "from-7y-to-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-realized-cap-30d-change": [0], - "from-7y-to-10y-realized-loss": [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-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-sell-side-risk-ratio": [0], - "from-7y-to-10y-spent-output-profit-ratio": [0], - "from-7y-to-10y-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-even": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-even-relative-to-own-supply": [0, 1, 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-loss": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], - "from-7y-to-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], - "from-7y-to-10y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-adjusted-spent-output-profit-ratio": [0], + "from-7y-to-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-coinblocks-destroyed": [5], + "from-7y-to-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-7y-to-8y-coindays-destroyed": [5], + "from-7y-to-8y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-7y-to-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-realized-cap-30d-change": [0], + "from-7y-to-8y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-7y-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-satblocks-destroyed": [5], + "from-7y-to-8y-satdays-destroyed": [5], + "from-7y-to-8y-sell-side-risk-ratio": [0], + "from-7y-to-8y-spent-output-profit-ratio": [0], + "from-7y-to-8y-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-7y-to-8y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-7y-to-8y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-7y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5018,9 +5884,13 @@ export function createVecIdToIndexes() { "from-8y-adjusted-spent-output-profit-ratio": [0], "from-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "from-8y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "from-8y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "from-8y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-coinblocks-destroyed": [5], + "from-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-8y-coindays-destroyed": [5], + "from-8y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5067,15 +5937,17 @@ export function createVecIdToIndexes() { "from-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "from-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-satblocks-destroyed": [5], + "from-8y-satdays-destroyed": [5], "from-8y-sell-side-risk-ratio": [0], "from-8y-spent-output-profit-ratio": [0], - "from-8y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-supply": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-even": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-8y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5086,16 +5958,100 @@ export function createVecIdToIndexes() { "from-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "from-8y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "from-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-adjusted-spent-output-profit-ratio": [0], + "from-8y-to-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-coinblocks-destroyed": [5], + "from-8y-to-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-8y-to-10y-coindays-destroyed": [5], + "from-8y-to-10y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "from-8y-to-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-negative-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-net-realized-profit-and-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-net-realized-profit-and-loss-relative-to-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-net-unrealized-profit-and-loss": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-net-unrealized-profit-and-loss-relative-to-market-cap": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-realized-cap": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-realized-cap-30d-change": [0], + "from-8y-to-10y-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-realized-price": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-1m-sma": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-1w-sma": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-1y-sma": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-1y-sma-momentum-oscillator": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m1sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m2sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m3sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-m3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p0-1": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p0-1-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p0-5": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p0-5-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p1": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p1-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p1sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p1sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p2sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p2sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p3sd": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p3sd-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99-5": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99-5-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99-9": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99-9-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-p99-as-price": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-sma": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-standard-deviation": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], + "from-8y-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-satblocks-destroyed": [5], + "from-8y-to-10y-satdays-destroyed": [5], + "from-8y-to-10y-sell-side-risk-ratio": [0], + "from-8y-to-10y-spent-output-profit-ratio": [0], + "from-8y-to-10y-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-even": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-loss-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-loss-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-profit": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], + "from-8y-to-10y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], + "from-8y-to-10y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "from-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], "from-8y-utxo-count": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "from-8y-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "halved-supply": [0, 1, 5, 7, 19, 22, 23], + "halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "halvingepoch": [0, 1, 4, 5, 7, 19, 22, 23], "height": [5, 20], "height-count": [0, 2], @@ -5123,9 +6079,13 @@ export function createVecIdToIndexes() { "lth-adjusted-spent-output-profit-ratio": [0], "lth-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "lth-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "lth-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "lth-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "lth-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-coinblocks-destroyed": [5], + "lth-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "lth-coindays-destroyed": [5], + "lth-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "lth-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "lth-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "lth-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "lth-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "lth-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "lth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5172,15 +6132,17 @@ export function createVecIdToIndexes() { "lth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "lth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "lth-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-satblocks-destroyed": [5], + "lth-satdays-destroyed": [5], "lth-sell-side-risk-ratio": [0], "lth-spent-output-profit-ratio": [0], - "lth-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-supply": [0, 1, 5, 7, 19, 22, 23], "lth-supply-even": [0, 1, 5, 7, 19, 22, 23], "lth-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "lth-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "lth-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "lth-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "lth-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "lth-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "lth-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "lth-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5191,7 +6153,7 @@ export function createVecIdToIndexes() { "lth-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "lth-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "lth-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "lth-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "lth-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "lth-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "lth-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "lth-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5248,6 +6210,10 @@ export function createVecIdToIndexes() { "p2a-adjusted-spent-output-profit-ratio": [0], "p2a-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2a-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-coinblocks-destroyed": [5], + "p2a-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2a-coindays-destroyed": [5], + "p2a-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2a-count": [5], "p2a-count-10p": [0], "p2a-count-25p": [0], @@ -5258,9 +6224,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2a-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2a-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2a-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2a-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2a-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2a-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5307,15 +6273,17 @@ export function createVecIdToIndexes() { "p2a-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2a-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2a-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-satblocks-destroyed": [5], + "p2a-satdays-destroyed": [5], "p2a-sell-side-risk-ratio": [0], "p2a-spent-output-profit-ratio": [0], - "p2a-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-supply": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2a-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5326,7 +6294,7 @@ export function createVecIdToIndexes() { "p2a-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2a-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2a-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2a-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2a-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2a-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5338,6 +6306,10 @@ export function createVecIdToIndexes() { "p2ms-adjusted-spent-output-profit-ratio": [0], "p2ms-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2ms-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-coinblocks-destroyed": [5], + "p2ms-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2ms-coindays-destroyed": [5], + "p2ms-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2ms-count": [5], "p2ms-count-10p": [0], "p2ms-count-25p": [0], @@ -5348,9 +6320,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2ms-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2ms-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2ms-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2ms-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2ms-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2ms-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5397,15 +6369,17 @@ export function createVecIdToIndexes() { "p2ms-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2ms-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2ms-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-satblocks-destroyed": [5], + "p2ms-satdays-destroyed": [5], "p2ms-sell-side-risk-ratio": [0], "p2ms-spent-output-profit-ratio": [0], - "p2ms-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-supply": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5416,7 +6390,7 @@ export function createVecIdToIndexes() { "p2ms-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2ms-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2ms-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2ms-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2ms-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2ms-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5427,6 +6401,10 @@ export function createVecIdToIndexes() { "p2pk33-adjusted-spent-output-profit-ratio": [0], "p2pk33-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk33-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-coinblocks-destroyed": [5], + "p2pk33-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pk33-coindays-destroyed": [5], + "p2pk33-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2pk33-count": [5], "p2pk33-count-10p": [0], "p2pk33-count-25p": [0], @@ -5437,9 +6415,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk33-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2pk33-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2pk33-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk33-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk33-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk33-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5486,15 +6464,17 @@ export function createVecIdToIndexes() { "p2pk33-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2pk33-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk33-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-satblocks-destroyed": [5], + "p2pk33-satdays-destroyed": [5], "p2pk33-sell-side-risk-ratio": [0], "p2pk33-spent-output-profit-ratio": [0], - "p2pk33-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5505,7 +6485,7 @@ export function createVecIdToIndexes() { "p2pk33-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk33-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk33-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk33-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk33-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2pk33-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5517,6 +6497,10 @@ export function createVecIdToIndexes() { "p2pk65-adjusted-spent-output-profit-ratio": [0], "p2pk65-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk65-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-coinblocks-destroyed": [5], + "p2pk65-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pk65-coindays-destroyed": [5], + "p2pk65-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2pk65-count": [5], "p2pk65-count-10p": [0], "p2pk65-count-25p": [0], @@ -5527,9 +6511,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pk65-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2pk65-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2pk65-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk65-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk65-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk65-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5576,15 +6560,17 @@ export function createVecIdToIndexes() { "p2pk65-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2pk65-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk65-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-satblocks-destroyed": [5], + "p2pk65-satdays-destroyed": [5], "p2pk65-sell-side-risk-ratio": [0], "p2pk65-spent-output-profit-ratio": [0], - "p2pk65-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5595,7 +6581,7 @@ export function createVecIdToIndexes() { "p2pk65-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pk65-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pk65-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pk65-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2pk65-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2pk65-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5607,6 +6593,10 @@ export function createVecIdToIndexes() { "p2pkh-adjusted-spent-output-profit-ratio": [0], "p2pkh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2pkh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-coinblocks-destroyed": [5], + "p2pkh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2pkh-coindays-destroyed": [5], + "p2pkh-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2pkh-count": [5], "p2pkh-count-10p": [0], "p2pkh-count-25p": [0], @@ -5617,9 +6607,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2pkh-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2pkh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2pkh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pkh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pkh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2pkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5666,15 +6656,17 @@ export function createVecIdToIndexes() { "p2pkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2pkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2pkh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-satblocks-destroyed": [5], + "p2pkh-satdays-destroyed": [5], "p2pkh-sell-side-risk-ratio": [0], "p2pkh-spent-output-profit-ratio": [0], - "p2pkh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-supply": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5685,7 +6677,7 @@ export function createVecIdToIndexes() { "p2pkh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2pkh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2pkh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2pkh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2pkh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2pkh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5697,6 +6689,10 @@ export function createVecIdToIndexes() { "p2sh-adjusted-spent-output-profit-ratio": [0], "p2sh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2sh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-coinblocks-destroyed": [5], + "p2sh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2sh-coindays-destroyed": [5], + "p2sh-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2sh-count": [5], "p2sh-count-10p": [0], "p2sh-count-25p": [0], @@ -5707,9 +6703,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2sh-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2sh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2sh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2sh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2sh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2sh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5756,15 +6752,17 @@ export function createVecIdToIndexes() { "p2sh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2sh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2sh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-satblocks-destroyed": [5], + "p2sh-satdays-destroyed": [5], "p2sh-sell-side-risk-ratio": [0], "p2sh-spent-output-profit-ratio": [0], - "p2sh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-supply": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5775,7 +6773,7 @@ export function createVecIdToIndexes() { "p2sh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2sh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2sh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2sh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2sh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2sh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5787,6 +6785,10 @@ export function createVecIdToIndexes() { "p2tr-adjusted-spent-output-profit-ratio": [0], "p2tr-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2tr-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-coinblocks-destroyed": [5], + "p2tr-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2tr-coindays-destroyed": [5], + "p2tr-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2tr-count": [5], "p2tr-count-10p": [0], "p2tr-count-25p": [0], @@ -5797,9 +6799,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2tr-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2tr-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2tr-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2tr-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2tr-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2tr-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5846,15 +6848,17 @@ export function createVecIdToIndexes() { "p2tr-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2tr-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2tr-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-satblocks-destroyed": [5], + "p2tr-satdays-destroyed": [5], "p2tr-sell-side-risk-ratio": [0], "p2tr-spent-output-profit-ratio": [0], - "p2tr-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-supply": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5865,7 +6869,7 @@ export function createVecIdToIndexes() { "p2tr-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2tr-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2tr-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2tr-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2tr-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2tr-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5877,6 +6881,10 @@ export function createVecIdToIndexes() { "p2wpkh-adjusted-spent-output-profit-ratio": [0], "p2wpkh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2wpkh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-coinblocks-destroyed": [5], + "p2wpkh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2wpkh-coindays-destroyed": [5], + "p2wpkh-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2wpkh-count": [5], "p2wpkh-count-10p": [0], "p2wpkh-count-25p": [0], @@ -5887,9 +6895,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wpkh-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2wpkh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2wpkh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2wpkh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2wpkh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -5936,15 +6944,17 @@ export function createVecIdToIndexes() { "p2wpkh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2wpkh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2wpkh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-satblocks-destroyed": [5], + "p2wpkh-satdays-destroyed": [5], "p2wpkh-sell-side-risk-ratio": [0], "p2wpkh-spent-output-profit-ratio": [0], - "p2wpkh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-supply": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -5955,7 +6965,7 @@ export function createVecIdToIndexes() { "p2wpkh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2wpkh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wpkh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2wpkh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2wpkh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -5967,6 +6977,10 @@ export function createVecIdToIndexes() { "p2wsh-adjusted-spent-output-profit-ratio": [0], "p2wsh-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "p2wsh-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-coinblocks-destroyed": [5], + "p2wsh-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "p2wsh-coindays-destroyed": [5], + "p2wsh-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], "p2wsh-count": [5], "p2wsh-count-10p": [0], "p2wsh-count-25p": [0], @@ -5977,9 +6991,9 @@ export function createVecIdToIndexes() { "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-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "p2wsh-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "p2wsh-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "p2wsh-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wsh-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2wsh-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "p2wsh-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6026,15 +7040,17 @@ export function createVecIdToIndexes() { "p2wsh-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "p2wsh-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "p2wsh-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-satblocks-destroyed": [5], + "p2wsh-satdays-destroyed": [5], "p2wsh-sell-side-risk-ratio": [0], "p2wsh-spent-output-profit-ratio": [0], - "p2wsh-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-supply": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-even": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6045,7 +7061,7 @@ export function createVecIdToIndexes() { "p2wsh-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "p2wsh-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "p2wsh-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "p2wsh-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "p2wsh-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "p2wsh-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6107,14 +7123,20 @@ export function createVecIdToIndexes() { "realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "satblocks-destroyed": [5], + "satdays-destroyed": [5], "sell-side-risk-ratio": [0], "spent-output-profit-ratio": [0], "start-to-1d-adjusted-spent-output-profit-ratio": [0], "start-to-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "start-to-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "start-to-1d-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "start-to-1d-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "start-to-1d-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "start-to-1d-coinblocks-destroyed": [5], + "start-to-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "start-to-1d-coindays-destroyed": [5], + "start-to-1d-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "start-to-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "start-to-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "start-to-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "start-to-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "start-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6161,15 +7183,17 @@ export function createVecIdToIndexes() { "start-to-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "start-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "start-to-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "start-to-1d-satblocks-destroyed": [5], + "start-to-1d-satdays-destroyed": [5], "start-to-1d-sell-side-risk-ratio": [0], "start-to-1d-spent-output-profit-ratio": [0], - "start-to-1d-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "start-to-1d-supply": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-even": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "start-to-1d-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "start-to-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6180,7 +7204,7 @@ export function createVecIdToIndexes() { "start-to-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "start-to-1d-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "start-to-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "start-to-1d-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "start-to-1d-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6190,9 +7214,13 @@ export function createVecIdToIndexes() { "sth-adjusted-spent-output-profit-ratio": [0], "sth-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "sth-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "sth-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "sth-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "sth-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-coinblocks-destroyed": [5], + "sth-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "sth-coindays-destroyed": [5], + "sth-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "sth-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "sth-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "sth-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "sth-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "sth-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "sth-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6239,15 +7267,17 @@ export function createVecIdToIndexes() { "sth-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "sth-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "sth-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-satblocks-destroyed": [5], + "sth-satdays-destroyed": [5], "sth-sell-side-risk-ratio": [0], "sth-spent-output-profit-ratio": [0], - "sth-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-supply": [0, 1, 5, 7, 19, 22, 23], "sth-supply-even": [0, 1, 5, 7, 19, 22, 23], "sth-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "sth-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "sth-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "sth-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "sth-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "sth-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "sth-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "sth-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6258,7 +7288,7 @@ export function createVecIdToIndexes() { "sth-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "sth-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "sth-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "sth-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "sth-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "sth-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "sth-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "sth-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6295,12 +7325,12 @@ export function createVecIdToIndexes() { "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": [0, 1, 5, 7, 19, 22, 23], "supply-even": [0, 1, 5, 7, 19, 22, 23], "supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6309,7 +7339,7 @@ export function createVecIdToIndexes() { "supply-in-profit-in-btc": [0, 1, 5, 7, 19, 22, 23], "supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "timestamp": [0, 1, 2, 4, 5, 7, 19, 22, 23], "timestamp-fixed": [5], "total-size": [5, 20], @@ -6358,9 +7388,13 @@ export function createVecIdToIndexes() { "unknown-adjusted-spent-output-profit-ratio": [0], "unknown-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "unknown-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "unknown-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-coinblocks-destroyed": [5], + "unknown-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "unknown-coindays-destroyed": [5], + "unknown-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "unknown-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "unknown-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "unknown-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "unknown-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "unknown-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "unknown-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6407,15 +7441,17 @@ export function createVecIdToIndexes() { "unknown-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "unknown-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "unknown-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-satblocks-destroyed": [5], + "unknown-satdays-destroyed": [5], "unknown-sell-side-risk-ratio": [0], "unknown-spent-output-profit-ratio": [0], - "unknown-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-supply": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-even": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "unknown-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6426,7 +7462,7 @@ export function createVecIdToIndexes() { "unknown-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "unknown-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "unknown-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "unknown-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "unknown-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "unknown-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6452,9 +7488,13 @@ export function createVecIdToIndexes() { "up-to-1-000sats-adjusted-spent-output-profit-ratio": [0], "up-to-1-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1-000sats-coinblocks-destroyed": [5], + "up-to-1-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1-000sats-coindays-destroyed": [5], + "up-to-1-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6501,15 +7541,17 @@ export function createVecIdToIndexes() { "up-to-1-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1-000sats-satblocks-destroyed": [5], + "up-to-1-000sats-satdays-destroyed": [5], "up-to-1-000sats-sell-side-risk-ratio": [0], "up-to-1-000sats-spent-output-profit-ratio": [0], - "up-to-1-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6520,7 +7562,7 @@ export function createVecIdToIndexes() { "up-to-1-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6530,9 +7572,13 @@ export function createVecIdToIndexes() { "up-to-10-000sats-adjusted-spent-output-profit-ratio": [0], "up-to-10-000sats-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10-000sats-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10-000sats-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10-000sats-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10-000sats-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10-000sats-coinblocks-destroyed": [5], + "up-to-10-000sats-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10-000sats-coindays-destroyed": [5], + "up-to-10-000sats-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10-000sats-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-10-000sats-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-10-000sats-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10-000sats-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10-000sats-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6579,15 +7625,17 @@ export function createVecIdToIndexes() { "up-to-10-000sats-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-10-000sats-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10-000sats-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10-000sats-satblocks-destroyed": [5], + "up-to-10-000sats-satdays-destroyed": [5], "up-to-10-000sats-sell-side-risk-ratio": [0], "up-to-10-000sats-spent-output-profit-ratio": [0], - "up-to-10-000sats-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10-000sats-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10-000sats-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10-000sats-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6598,7 +7646,7 @@ export function createVecIdToIndexes() { "up-to-10-000sats-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10-000sats-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10-000sats-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10-000sats-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10-000sats-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6608,9 +7656,13 @@ export function createVecIdToIndexes() { "up-to-100btc-adjusted-spent-output-profit-ratio": [0], "up-to-100btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-100btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-100btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-100btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-100btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-100btc-coinblocks-destroyed": [5], + "up-to-100btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-100btc-coindays-destroyed": [5], + "up-to-100btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-100btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-100btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-100btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-100btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-100btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6657,15 +7709,17 @@ export function createVecIdToIndexes() { "up-to-100btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-100btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-100btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-100btc-satblocks-destroyed": [5], + "up-to-100btc-satdays-destroyed": [5], "up-to-100btc-sell-side-risk-ratio": [0], "up-to-100btc-spent-output-profit-ratio": [0], - "up-to-100btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-100btc-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-100btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-100btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6676,7 +7730,7 @@ export function createVecIdToIndexes() { "up-to-100btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-100btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-100btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-100btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-100btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6686,9 +7740,13 @@ export function createVecIdToIndexes() { "up-to-10btc-adjusted-spent-output-profit-ratio": [0], "up-to-10btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10btc-coinblocks-destroyed": [5], + "up-to-10btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10btc-coindays-destroyed": [5], + "up-to-10btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-10btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-10btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6735,15 +7793,17 @@ export function createVecIdToIndexes() { "up-to-10btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-10btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10btc-satblocks-destroyed": [5], + "up-to-10btc-satdays-destroyed": [5], "up-to-10btc-sell-side-risk-ratio": [0], "up-to-10btc-spent-output-profit-ratio": [0], - "up-to-10btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10btc-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6754,7 +7814,7 @@ export function createVecIdToIndexes() { "up-to-10btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6764,9 +7824,13 @@ export function createVecIdToIndexes() { "up-to-10y-adjusted-spent-output-profit-ratio": [0], "up-to-10y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-10y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10y-coinblocks-destroyed": [5], + "up-to-10y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10y-coindays-destroyed": [5], + "up-to-10y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-10y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-10y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-10y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6813,15 +7877,17 @@ export function createVecIdToIndexes() { "up-to-10y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-10y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10y-satblocks-destroyed": [5], + "up-to-10y-satdays-destroyed": [5], "up-to-10y-sell-side-risk-ratio": [0], "up-to-10y-spent-output-profit-ratio": [0], - "up-to-10y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6832,7 +7898,7 @@ export function createVecIdToIndexes() { "up-to-10y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-10y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-10y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-10y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-10y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6842,9 +7908,13 @@ export function createVecIdToIndexes() { "up-to-15y-adjusted-spent-output-profit-ratio": [0], "up-to-15y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-15y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-15y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-15y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-15y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-15y-coinblocks-destroyed": [5], + "up-to-15y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-15y-coindays-destroyed": [5], + "up-to-15y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-15y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-15y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-15y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-15y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-15y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6891,15 +7961,17 @@ export function createVecIdToIndexes() { "up-to-15y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-15y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-15y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-15y-satblocks-destroyed": [5], + "up-to-15y-satdays-destroyed": [5], "up-to-15y-sell-side-risk-ratio": [0], "up-to-15y-spent-output-profit-ratio": [0], - "up-to-15y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-15y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-15y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-15y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6910,7 +7982,7 @@ export function createVecIdToIndexes() { "up-to-15y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-15y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-15y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-15y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-15y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6920,9 +7992,13 @@ export function createVecIdToIndexes() { "up-to-1btc-adjusted-spent-output-profit-ratio": [0], "up-to-1btc-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1btc-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1btc-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1btc-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1btc-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1btc-coinblocks-destroyed": [5], + "up-to-1btc-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1btc-coindays-destroyed": [5], + "up-to-1btc-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1btc-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1btc-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1btc-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1btc-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1btc-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -6969,15 +8045,17 @@ export function createVecIdToIndexes() { "up-to-1btc-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1btc-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1btc-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1btc-satblocks-destroyed": [5], + "up-to-1btc-satdays-destroyed": [5], "up-to-1btc-sell-side-risk-ratio": [0], "up-to-1btc-spent-output-profit-ratio": [0], - "up-to-1btc-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1btc-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1btc-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1btc-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -6988,7 +8066,7 @@ export function createVecIdToIndexes() { "up-to-1btc-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1btc-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1btc-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1btc-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1btc-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -6998,9 +8076,13 @@ export function createVecIdToIndexes() { "up-to-1d-adjusted-spent-output-profit-ratio": [0], "up-to-1d-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1d-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1d-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1d-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1d-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1d-coinblocks-destroyed": [5], + "up-to-1d-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1d-coindays-destroyed": [5], + "up-to-1d-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1d-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1d-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1d-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1d-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1d-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7047,15 +8129,17 @@ export function createVecIdToIndexes() { "up-to-1d-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1d-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1d-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1d-satblocks-destroyed": [5], + "up-to-1d-satdays-destroyed": [5], "up-to-1d-sell-side-risk-ratio": [0], "up-to-1d-spent-output-profit-ratio": [0], - "up-to-1d-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1d-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1d-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1d-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7066,7 +8150,7 @@ export function createVecIdToIndexes() { "up-to-1d-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1d-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1d-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1d-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1d-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7076,9 +8160,13 @@ export function createVecIdToIndexes() { "up-to-1m-adjusted-spent-output-profit-ratio": [0], "up-to-1m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1m-coinblocks-destroyed": [5], + "up-to-1m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1m-coindays-destroyed": [5], + "up-to-1m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7125,15 +8213,17 @@ export function createVecIdToIndexes() { "up-to-1m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1m-satblocks-destroyed": [5], + "up-to-1m-satdays-destroyed": [5], "up-to-1m-sell-side-risk-ratio": [0], "up-to-1m-spent-output-profit-ratio": [0], - "up-to-1m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7144,7 +8234,7 @@ export function createVecIdToIndexes() { "up-to-1m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7154,9 +8244,13 @@ export function createVecIdToIndexes() { "up-to-1w-adjusted-spent-output-profit-ratio": [0], "up-to-1w-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1w-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1w-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1w-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1w-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1w-coinblocks-destroyed": [5], + "up-to-1w-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1w-coindays-destroyed": [5], + "up-to-1w-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1w-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1w-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1w-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1w-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1w-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7203,15 +8297,17 @@ export function createVecIdToIndexes() { "up-to-1w-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1w-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1w-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1w-satblocks-destroyed": [5], + "up-to-1w-satdays-destroyed": [5], "up-to-1w-sell-side-risk-ratio": [0], "up-to-1w-spent-output-profit-ratio": [0], - "up-to-1w-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1w-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1w-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1w-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7222,7 +8318,7 @@ export function createVecIdToIndexes() { "up-to-1w-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1w-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1w-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1w-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1w-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7232,9 +8328,13 @@ export function createVecIdToIndexes() { "up-to-1y-adjusted-spent-output-profit-ratio": [0], "up-to-1y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-1y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1y-coinblocks-destroyed": [5], + "up-to-1y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1y-coindays-destroyed": [5], + "up-to-1y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-1y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-1y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-1y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7281,15 +8381,17 @@ export function createVecIdToIndexes() { "up-to-1y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-1y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1y-satblocks-destroyed": [5], + "up-to-1y-satdays-destroyed": [5], "up-to-1y-sell-side-risk-ratio": [0], "up-to-1y-spent-output-profit-ratio": [0], - "up-to-1y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7300,7 +8402,7 @@ export function createVecIdToIndexes() { "up-to-1y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-1y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-1y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-1y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-1y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7310,9 +8412,13 @@ export function createVecIdToIndexes() { "up-to-2m-adjusted-spent-output-profit-ratio": [0], "up-to-2m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2m-coinblocks-destroyed": [5], + "up-to-2m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-2m-coindays-destroyed": [5], + "up-to-2m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-2m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-2m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-2m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7359,15 +8465,17 @@ export function createVecIdToIndexes() { "up-to-2m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-2m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2m-satblocks-destroyed": [5], + "up-to-2m-satdays-destroyed": [5], "up-to-2m-sell-side-risk-ratio": [0], "up-to-2m-spent-output-profit-ratio": [0], - "up-to-2m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-2m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7378,7 +8486,7 @@ export function createVecIdToIndexes() { "up-to-2m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-2m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-2m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7388,9 +8496,13 @@ export function createVecIdToIndexes() { "up-to-2y-adjusted-spent-output-profit-ratio": [0], "up-to-2y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-2y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2y-coinblocks-destroyed": [5], + "up-to-2y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-2y-coindays-destroyed": [5], + "up-to-2y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-2y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-2y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-2y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7437,15 +8549,17 @@ export function createVecIdToIndexes() { "up-to-2y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-2y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2y-satblocks-destroyed": [5], + "up-to-2y-satdays-destroyed": [5], "up-to-2y-sell-side-risk-ratio": [0], "up-to-2y-spent-output-profit-ratio": [0], - "up-to-2y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-2y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7456,7 +8570,7 @@ export function createVecIdToIndexes() { "up-to-2y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-2y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-2y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-2y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-2y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7466,9 +8580,13 @@ export function createVecIdToIndexes() { "up-to-3m-adjusted-spent-output-profit-ratio": [0], "up-to-3m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3m-coinblocks-destroyed": [5], + "up-to-3m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-3m-coindays-destroyed": [5], + "up-to-3m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-3m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-3m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-3m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7515,15 +8633,17 @@ export function createVecIdToIndexes() { "up-to-3m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-3m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3m-satblocks-destroyed": [5], + "up-to-3m-satdays-destroyed": [5], "up-to-3m-sell-side-risk-ratio": [0], "up-to-3m-spent-output-profit-ratio": [0], - "up-to-3m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-3m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7534,7 +8654,7 @@ export function createVecIdToIndexes() { "up-to-3m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-3m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-3m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7544,9 +8664,13 @@ export function createVecIdToIndexes() { "up-to-3y-adjusted-spent-output-profit-ratio": [0], "up-to-3y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-3y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3y-coinblocks-destroyed": [5], + "up-to-3y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-3y-coindays-destroyed": [5], + "up-to-3y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-3y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-3y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-3y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7593,15 +8717,17 @@ export function createVecIdToIndexes() { "up-to-3y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-3y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3y-satblocks-destroyed": [5], + "up-to-3y-satdays-destroyed": [5], "up-to-3y-sell-side-risk-ratio": [0], "up-to-3y-spent-output-profit-ratio": [0], - "up-to-3y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-3y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7612,7 +8738,7 @@ export function createVecIdToIndexes() { "up-to-3y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-3y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-3y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-3y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-3y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7622,9 +8748,13 @@ export function createVecIdToIndexes() { "up-to-4m-adjusted-spent-output-profit-ratio": [0], "up-to-4m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4m-coinblocks-destroyed": [5], + "up-to-4m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-4m-coindays-destroyed": [5], + "up-to-4m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-4m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-4m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-4m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7671,15 +8801,17 @@ export function createVecIdToIndexes() { "up-to-4m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-4m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4m-satblocks-destroyed": [5], + "up-to-4m-satdays-destroyed": [5], "up-to-4m-sell-side-risk-ratio": [0], "up-to-4m-spent-output-profit-ratio": [0], - "up-to-4m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-4m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7690,7 +8822,7 @@ export function createVecIdToIndexes() { "up-to-4m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-4m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-4m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7700,9 +8832,13 @@ export function createVecIdToIndexes() { "up-to-4y-adjusted-spent-output-profit-ratio": [0], "up-to-4y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-4y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4y-coinblocks-destroyed": [5], + "up-to-4y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-4y-coindays-destroyed": [5], + "up-to-4y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-4y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-4y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-4y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7749,15 +8885,17 @@ export function createVecIdToIndexes() { "up-to-4y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-4y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4y-satblocks-destroyed": [5], + "up-to-4y-satdays-destroyed": [5], "up-to-4y-sell-side-risk-ratio": [0], "up-to-4y-spent-output-profit-ratio": [0], - "up-to-4y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-4y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7768,7 +8906,7 @@ export function createVecIdToIndexes() { "up-to-4y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-4y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-4y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-4y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-4y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7778,9 +8916,13 @@ export function createVecIdToIndexes() { "up-to-5m-adjusted-spent-output-profit-ratio": [0], "up-to-5m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5m-coinblocks-destroyed": [5], + "up-to-5m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-5m-coindays-destroyed": [5], + "up-to-5m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-5m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-5m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-5m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7827,15 +8969,17 @@ export function createVecIdToIndexes() { "up-to-5m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-5m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5m-satblocks-destroyed": [5], + "up-to-5m-satdays-destroyed": [5], "up-to-5m-sell-side-risk-ratio": [0], "up-to-5m-spent-output-profit-ratio": [0], - "up-to-5m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-5m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7846,7 +8990,7 @@ export function createVecIdToIndexes() { "up-to-5m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-5m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-5m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7856,9 +9000,13 @@ export function createVecIdToIndexes() { "up-to-5y-adjusted-spent-output-profit-ratio": [0], "up-to-5y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-5y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5y-coinblocks-destroyed": [5], + "up-to-5y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-5y-coindays-destroyed": [5], + "up-to-5y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-5y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-5y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-5y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7905,15 +9053,17 @@ export function createVecIdToIndexes() { "up-to-5y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-5y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5y-satblocks-destroyed": [5], + "up-to-5y-satdays-destroyed": [5], "up-to-5y-sell-side-risk-ratio": [0], "up-to-5y-spent-output-profit-ratio": [0], - "up-to-5y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-5y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -7924,7 +9074,7 @@ export function createVecIdToIndexes() { "up-to-5y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-5y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-5y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-5y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-5y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -7934,9 +9084,13 @@ export function createVecIdToIndexes() { "up-to-6m-adjusted-spent-output-profit-ratio": [0], "up-to-6m-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6m-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6m-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6m-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6m-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6m-coinblocks-destroyed": [5], + "up-to-6m-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-6m-coindays-destroyed": [5], + "up-to-6m-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-6m-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-6m-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-6m-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6m-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6m-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -7983,15 +9137,17 @@ export function createVecIdToIndexes() { "up-to-6m-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-6m-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6m-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6m-satblocks-destroyed": [5], + "up-to-6m-satdays-destroyed": [5], "up-to-6m-sell-side-risk-ratio": [0], "up-to-6m-spent-output-profit-ratio": [0], - "up-to-6m-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6m-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-6m-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6m-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -8002,7 +9158,7 @@ export function createVecIdToIndexes() { "up-to-6m-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-6m-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6m-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6m-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-6m-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -8012,9 +9168,13 @@ export function createVecIdToIndexes() { "up-to-6y-adjusted-spent-output-profit-ratio": [0], "up-to-6y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-6y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6y-coinblocks-destroyed": [5], + "up-to-6y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-6y-coindays-destroyed": [5], + "up-to-6y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-6y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-6y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-6y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -8061,15 +9221,17 @@ export function createVecIdToIndexes() { "up-to-6y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-6y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6y-satblocks-destroyed": [5], + "up-to-6y-satdays-destroyed": [5], "up-to-6y-sell-side-risk-ratio": [0], "up-to-6y-spent-output-profit-ratio": [0], - "up-to-6y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-6y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -8080,7 +9242,7 @@ export function createVecIdToIndexes() { "up-to-6y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-6y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-6y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-6y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-6y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -8090,9 +9252,13 @@ export function createVecIdToIndexes() { "up-to-7y-adjusted-spent-output-profit-ratio": [0], "up-to-7y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-7y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-7y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-7y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-7y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-7y-coinblocks-destroyed": [5], + "up-to-7y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-7y-coindays-destroyed": [5], + "up-to-7y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-7y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-7y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-7y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-7y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-7y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -8139,15 +9305,17 @@ export function createVecIdToIndexes() { "up-to-7y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-7y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-7y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-7y-satblocks-destroyed": [5], + "up-to-7y-satdays-destroyed": [5], "up-to-7y-sell-side-risk-ratio": [0], "up-to-7y-spent-output-profit-ratio": [0], - "up-to-7y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-7y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-7y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-7y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -8158,7 +9326,7 @@ export function createVecIdToIndexes() { "up-to-7y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-7y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-7y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-7y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-7y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], @@ -8168,9 +9336,13 @@ export function createVecIdToIndexes() { "up-to-8y-adjusted-spent-output-profit-ratio": [0], "up-to-8y-adjusted-value-created": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-8y-adjusted-value-destroyed": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-8y-halved-supply": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-8y-halved-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], - "up-to-8y-halved-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-8y-coinblocks-destroyed": [5], + "up-to-8y-coinblocks-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-8y-coindays-destroyed": [5], + "up-to-8y-coindays-destroyed-sum": [0, 1, 2, 7, 19, 22, 23], + "up-to-8y-halved-supply": [0, 1, 5, 7, 19, 22, 23], + "up-to-8y-halved-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], + "up-to-8y-halved-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-max-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-8y-min-price-paid": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-8y-negative-realized-loss": [0, 1, 2, 5, 7, 19, 22, 23], @@ -8217,15 +9389,17 @@ export function createVecIdToIndexes() { "up-to-8y-realized-price-ratio-zscore": [0, 1, 7, 19, 22, 23], "up-to-8y-realized-profit": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-8y-realized-value": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-8y-satblocks-destroyed": [5], + "up-to-8y-satdays-destroyed": [5], "up-to-8y-sell-side-risk-ratio": [0], "up-to-8y-spent-output-profit-ratio": [0], - "up-to-8y-supply": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-8y-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-even": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-even-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-even-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-even-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-even-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-8y-supply-in-btc": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-8y-supply-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-in-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-in-loss-in-btc": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-in-loss-in-usd": [0, 1, 5, 7, 19, 22, 23], @@ -8236,7 +9410,7 @@ export function createVecIdToIndexes() { "up-to-8y-supply-in-profit-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-in-profit-relative-to-circulating-supply": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-in-profit-relative-to-own-supply": [0, 1, 5, 7, 19, 22, 23], - "up-to-8y-supply-in-usd": [0, 1, 2, 5, 7, 19, 22, 23], + "up-to-8y-supply-in-usd": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-supply-relative-to-circulating-supply": [0, 1, 2, 5, 7, 19, 22, 23], "up-to-8y-unrealized-loss": [0, 1, 5, 7, 19, 22, 23], "up-to-8y-unrealized-profit": [0, 1, 5, 7, 19, 22, 23], diff --git a/websites/kibo.money/styles/chart.css b/websites/kibo.money/styles/chart.css index 210853da7..26f0ee118 100644 --- a/websites/kibo.money/styles/chart.css +++ b/websites/kibo.money/styles/chart.css @@ -13,7 +13,7 @@ white-space: nowrap; overflow-x: auto; padding-bottom: 1rem; - margin-bottom: -1rem; + margin-bottom: -2rem; padding-left: var(--main-padding); margin-left: var(--negative-main-padding); padding-right: var(--main-padding); @@ -28,7 +28,11 @@ flex: 1; } - > * { + .lightweight-chart { z-index: 30; } + + > * { + /* z-index: 30; */ + } }