From c3bc5fbfb434f9a6edd5f690486a303ef921a13b Mon Sep 17 00:00:00 2001 From: Pietro Date: Fri, 28 Nov 2025 15:01:32 +0000 Subject: [PATCH 01/13] Fix broken migration --- .../src/max_rewardable_nodes_mapping.rs | 2 +- .../canister/src/registry_lifecycle.rs | 193 +++++++++++++++++- 2 files changed, 190 insertions(+), 5 deletions(-) diff --git a/rs/registry/canister/src/max_rewardable_nodes_mapping.rs b/rs/registry/canister/src/max_rewardable_nodes_mapping.rs index 044fe8fd6b11..456f8455e9ef 100644 --- a/rs/registry/canister/src/max_rewardable_nodes_mapping.rs +++ b/rs/registry/canister/src/max_rewardable_nodes_mapping.rs @@ -7,7 +7,7 @@ use std::str::FromStr; lazy_static! { // TODO(DRE-625): Remove one-off migration - pub static ref MAX_REWARDABLE_NODES_MAPPING: BTreeMap> = + pub static ref MAX_REWARDABLE_NODES_SWISS_SUBNET_NO: BTreeMap> = btreemap! { "q4gds-li2kf-dhmi6-vmtxg-zrgep-3te7r-2a4ji-nszwv-66biu-dkl6k-eqe" => btreemap! {"type3.1" => 1}, "u7afs-z2fqh-zbqyo-jufwe-3vqqs-chc7f-k2fe4-rt66w-l4qia-keuuj-qqe" => btreemap! {"type3.1" => 1}, diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index f48d9064a1fb..4fd9b6d0c52f 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -1,10 +1,15 @@ use crate::certification::recertify_registry; -use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_MAPPING; +use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_SWISS_SUBNET_NO; +use crate::mutations::node_management::common::get_key_family; use crate::{pb::v1::RegistryCanisterStableStorage, registry::Registry}; +use ic_base_types::PrincipalId; +use ic_protobuf::registry::node::v1::NodeRewardType; use ic_protobuf::registry::node_operator::v1::NodeOperatorRecord; -use ic_registry_keys::make_node_operator_record_key; +use ic_registry_keys::{NODE_OPERATOR_RECORD_KEY_PREFIX, make_node_operator_record_key}; use ic_registry_transport::{pb::v1::RegistryMutation, update}; +use maplit::btreemap; use prost::Message; +use std::str::FromStr; pub fn canister_post_upgrade( registry: &mut Registry, @@ -22,7 +27,10 @@ pub fn canister_post_upgrade( // Registry data migrations should be implemented as follows: let mutation_batches_due_to_data_migrations = { - let mutations = fill_swiss_subnet_node_operators_max_rewardable_nodes(registry); + let mut mutations = fix_node_operators_corrupted(registry); + mutations.extend(fill_swiss_subnet_node_operators_max_rewardable_nodes( + registry, + )); if mutations.is_empty() { 0 // No mutations required for this data migration. } else { @@ -58,12 +66,84 @@ pub fn canister_post_upgrade( } } +/* +Three node operators had corrupted NodeOperatorRecords which caused issues during migration (https://dashboard.internetcomputer.org/proposal/139210). + +1- record - node_operator_k: 3nu7r node_operator_v: ujq4k + As result: + * 3nu7r missed the update to max_rewardable_nodes during migration + * ujq4k got ovewritten by 3nu7r value. + +2- record - node_operator_k: bmlhw node_operator_v: spsu4 + As result: + * same as above + +2- record - node_operator_k: redpf node_operator_v: 2rqo7 + As result: + * same as above + +This function fixes those corrupted records. +We will be fixing just the used fields, i.e., node_allowance is excluded from the fix. +*/ +fn fix_node_operators_corrupted(registry: &Registry) -> Vec { + let mut mutations = Vec::new(); + + let no_3nu7r = + PrincipalId::from_str("3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe") + .unwrap(); + let no_spsu4 = + PrincipalId::from_str("spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae") + .unwrap(); + let no_ujq4k = + PrincipalId::from_str("ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe") + .unwrap(); + + for (k, mut record) in + get_key_family::(registry, NODE_OPERATOR_RECORD_KEY_PREFIX).into_iter() + { + let node_operator_id_k = PrincipalId::from_str(&k).unwrap(); + let node_operator_id_v = PrincipalId::try_from(&record.node_operator_principal_id).unwrap(); + + // This fixes the principal ID mismatch issue on all instances. + if node_operator_id_k != node_operator_id_v { + ic_cdk::println!( + "Found corrupted NodeOperatorRecord for operator {}. Fixing principal ID mismatch.", + node_operator_id_k + ); + record.node_operator_principal_id = node_operator_id_k.to_vec(); + } + + // 3nu7r missed the update to max_rewardable_nodes during migration because + // not present in node_operator_id_v. + if node_operator_id_k == no_3nu7r { + ic_cdk::println!("Fix max_rewardable_nodes for 3nu7r"); + record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; + } + + if node_operator_id_k == no_ujq4k { + ic_cdk::println!("Fix rewardable_nodes for ujq4k"); + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; + } + if node_operator_id_k == no_spsu4 { + ic_cdk::println!("Fix rewardable_nodes for spsu4"); + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; + } + + mutations.push(update( + make_node_operator_record_key(node_operator_id_k), + record.encode_to_vec(), + )); + } + + mutations +} + fn fill_swiss_subnet_node_operators_max_rewardable_nodes( registry: &Registry, ) -> Vec { let mut mutations = Vec::new(); - for (operator, max_rewardable_nodes) in MAX_REWARDABLE_NODES_MAPPING.iter() { + for (operator, max_rewardable_nodes) in MAX_REWARDABLE_NODES_SWISS_SUBNET_NO.iter() { let registry_value = match registry.get( make_node_operator_record_key(*operator).as_bytes(), registry.latest_version(), @@ -343,4 +423,109 @@ mod test { let mutations = fill_swiss_subnet_node_operators_max_rewardable_nodes(®istry); assert_eq!(mutations.len(), 0); } + + #[test] + fn test_fix_all_and_only_node_operators_corrupted() { + let mut registry = invariant_compliant_registry(0); + let mut node_operator_additions = Vec::new(); + + // This is a good record that should be left untouched + let no_good = PrincipalId::from_str( + "2aemz-63apz-bds45-nypax-oj52g-fyl6i-sjhtv-ysu5t-hqvve-ygtcr-yae", + ) + .unwrap(); + let record_good = NodeOperatorRecord { + node_operator_principal_id: no_good.to_vec(), + dc_id: "dummy_dc_id_1".to_string(), + ipv6: Some("dummy_ipv6_1".to_string()), + max_rewardable_nodes: btreemap! { "type3.1".to_string() => 6}, + ..NodeOperatorRecord::default() + }; + node_operator_additions.push(insert( + make_node_operator_record_key(no_good), + record_good.encode_to_vec(), + )); + + // 3nu7r is corrupted and should be fixed + let no_3nu7r_k = PrincipalId::from_str( + "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", + ) + .unwrap(); + let no_3nu7r_v = PrincipalId::from_str( + "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", + ) + .unwrap(); + let record_3nu7r = NodeOperatorRecord { + node_operator_principal_id: no_3nu7r_v.to_vec(), + dc_id: "dummy_dc_id_3nu7r".to_string(), + ipv6: Some("dummy_ipv6_3nu7r".to_string()), + // Empty max rewardable nodes, should be filled in by the migration + max_rewardable_nodes: btreemap! {}, + ..NodeOperatorRecord::default() + }; + node_operator_additions.push(insert( + make_node_operator_record_key(no_3nu7r_k), + record_3nu7r.encode_to_vec(), + )); + + // spsu4 is corrupted and should be fixed + let no_spsu4_k = PrincipalId::from_str( + "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", + ) + .unwrap(); + let no_spsu4_v = PrincipalId::from_str( + "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", + ) + .unwrap(); + let record_spsu4 = NodeOperatorRecord { + node_operator_principal_id: no_spsu4_v.to_vec(), + dc_id: "dummy_dc_id_spsu4".to_string(), + ipv6: Some("dummy_ipv6_spsu4".to_string()), + // wrong rewardable nodes, should be fixed by the migration + rewardable_nodes: btreemap! {"type1".to_string() => 14}, + max_rewardable_nodes: btreemap! {"type1.1".to_string() => 14}, + ..NodeOperatorRecord::default() + }; + node_operator_additions.push(insert( + make_node_operator_record_key(no_spsu4_k), + record_spsu4.encode_to_vec(), + )); + + registry.apply_mutations_for_test(node_operator_additions); + let mutations = fix_node_operators_corrupted(®istry); + assert_eq!(mutations.len(), 2); + registry.apply_mutations_for_test(mutations); + + // Good record should be left untouched + let record_good_got = registry.get_node_operator_or_panic(no_good); + let expected_record_good = record_good; + assert_eq!( + record_good_got, expected_record_good, + "Assertion for NodeOperator good failed" + ); + + // 3nu7r should be fixed + let record_3nu7r_got = registry.get_node_operator_or_panic(no_3nu7r_k); + let expected_record_3nu7r = NodeOperatorRecord { + node_operator_principal_id: no_3nu7r_k.to_vec(), + max_rewardable_nodes: btreemap! {"type1.1".to_string() => 19}, + ..record_3nu7r + }; + assert_eq!( + record_3nu7r_got, expected_record_3nu7r, + "Assertion for NodeOperator {no_3nu7r_k} failed" + ); + + // spsu4 should be fixed + let record_spsu4_got = registry.get_node_operator_or_panic(no_spsu4_k); + let expected_record_spsu4 = NodeOperatorRecord { + node_operator_principal_id: no_spsu4_k.to_vec(), + rewardable_nodes: btreemap! {"type1.1".to_string() => 14}, + ..record_spsu4 + }; + assert_eq!( + record_spsu4_got, expected_record_spsu4, + "Assertion for NodeOperator {no_3nu7r_k} failed" + ); + } } From 645f0792747145eb3e9f26d66551380375485985 Mon Sep 17 00:00:00 2001 From: Pietro Date: Fri, 28 Nov 2025 15:21:23 +0000 Subject: [PATCH 02/13] Fix broken migration --- .../canister/src/registry_lifecycle.rs | 57 +++++++++++-------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 4fd9b6d0c52f..5b30f8825c20 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -101,6 +101,7 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { for (k, mut record) in get_key_family::(registry, NODE_OPERATOR_RECORD_KEY_PREFIX).into_iter() { + let mut affected = false; let node_operator_id_k = PrincipalId::from_str(&k).unwrap(); let node_operator_id_v = PrincipalId::try_from(&record.node_operator_principal_id).unwrap(); @@ -111,28 +112,37 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { node_operator_id_k ); record.node_operator_principal_id = node_operator_id_k.to_vec(); + affected = true; } - // 3nu7r missed the update to max_rewardable_nodes during migration because + // 3nu7r missed the update to max_rewardable_nodes during migration because // not present in node_operator_id_v. if node_operator_id_k == no_3nu7r { ic_cdk::println!("Fix max_rewardable_nodes for 3nu7r"); record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; + affected = true; } + // ujq4k got ovewritten by 3nu7r value and now has wrong rewardable_nodes. if node_operator_id_k == no_ujq4k { ic_cdk::println!("Fix rewardable_nodes for ujq4k"); record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; + affected = true; } + + // spsu4 got ovewritten by bmlhw value and now has wrong rewardable_nodes. if node_operator_id_k == no_spsu4 { ic_cdk::println!("Fix rewardable_nodes for spsu4"); record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; + affected = true; } - mutations.push(update( - make_node_operator_record_key(node_operator_id_k), - record.encode_to_vec(), - )); + if affected { + mutations.push(update( + make_node_operator_record_key(node_operator_id_k), + record.encode_to_vec(), + )); + } } mutations @@ -430,33 +440,33 @@ mod test { let mut node_operator_additions = Vec::new(); // This is a good record that should be left untouched - let no_good = PrincipalId::from_str( + let node_operator_good = PrincipalId::from_str( "2aemz-63apz-bds45-nypax-oj52g-fyl6i-sjhtv-ysu5t-hqvve-ygtcr-yae", ) .unwrap(); let record_good = NodeOperatorRecord { - node_operator_principal_id: no_good.to_vec(), + node_operator_principal_id: node_operator_good.to_vec(), dc_id: "dummy_dc_id_1".to_string(), ipv6: Some("dummy_ipv6_1".to_string()), max_rewardable_nodes: btreemap! { "type3.1".to_string() => 6}, ..NodeOperatorRecord::default() }; node_operator_additions.push(insert( - make_node_operator_record_key(no_good), + make_node_operator_record_key(node_operator_good), record_good.encode_to_vec(), )); // 3nu7r is corrupted and should be fixed - let no_3nu7r_k = PrincipalId::from_str( + let node_operator_3nu7r_k = PrincipalId::from_str( "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", ) .unwrap(); - let no_3nu7r_v = PrincipalId::from_str( + let node_operator_3nu7r_v = PrincipalId::from_str( "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", ) .unwrap(); let record_3nu7r = NodeOperatorRecord { - node_operator_principal_id: no_3nu7r_v.to_vec(), + node_operator_principal_id: node_operator_3nu7r_v.to_vec(), dc_id: "dummy_dc_id_3nu7r".to_string(), ipv6: Some("dummy_ipv6_3nu7r".to_string()), // Empty max rewardable nodes, should be filled in by the migration @@ -464,21 +474,21 @@ mod test { ..NodeOperatorRecord::default() }; node_operator_additions.push(insert( - make_node_operator_record_key(no_3nu7r_k), + make_node_operator_record_key(node_operator_3nu7r_k), record_3nu7r.encode_to_vec(), )); // spsu4 is corrupted and should be fixed - let no_spsu4_k = PrincipalId::from_str( + let node_operator_spsu4_k = PrincipalId::from_str( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", ) .unwrap(); - let no_spsu4_v = PrincipalId::from_str( + let node_operator_spsu4_v = PrincipalId::from_str( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", ) .unwrap(); let record_spsu4 = NodeOperatorRecord { - node_operator_principal_id: no_spsu4_v.to_vec(), + node_operator_principal_id: node_operator_spsu4_v.to_vec(), dc_id: "dummy_dc_id_spsu4".to_string(), ipv6: Some("dummy_ipv6_spsu4".to_string()), // wrong rewardable nodes, should be fixed by the migration @@ -487,17 +497,18 @@ mod test { ..NodeOperatorRecord::default() }; node_operator_additions.push(insert( - make_node_operator_record_key(no_spsu4_k), + make_node_operator_record_key(node_operator_spsu4_k), record_spsu4.encode_to_vec(), )); registry.apply_mutations_for_test(node_operator_additions); let mutations = fix_node_operators_corrupted(®istry); + // We expect 2 fixes, one for each corrupted record assert_eq!(mutations.len(), 2); registry.apply_mutations_for_test(mutations); // Good record should be left untouched - let record_good_got = registry.get_node_operator_or_panic(no_good); + let record_good_got = registry.get_node_operator_or_panic(node_operator_good); let expected_record_good = record_good; assert_eq!( record_good_got, expected_record_good, @@ -505,27 +516,27 @@ mod test { ); // 3nu7r should be fixed - let record_3nu7r_got = registry.get_node_operator_or_panic(no_3nu7r_k); + let record_3nu7r_got = registry.get_node_operator_or_panic(node_operator_3nu7r_k); let expected_record_3nu7r = NodeOperatorRecord { - node_operator_principal_id: no_3nu7r_k.to_vec(), + node_operator_principal_id: node_operator_3nu7r_k.to_vec(), max_rewardable_nodes: btreemap! {"type1.1".to_string() => 19}, ..record_3nu7r }; assert_eq!( record_3nu7r_got, expected_record_3nu7r, - "Assertion for NodeOperator {no_3nu7r_k} failed" + "Assertion for NodeOperator {node_operator_3nu7r_k} failed" ); // spsu4 should be fixed - let record_spsu4_got = registry.get_node_operator_or_panic(no_spsu4_k); + let record_spsu4_got = registry.get_node_operator_or_panic(node_operator_spsu4_k); let expected_record_spsu4 = NodeOperatorRecord { - node_operator_principal_id: no_spsu4_k.to_vec(), + node_operator_principal_id: node_operator_spsu4_k.to_vec(), rewardable_nodes: btreemap! {"type1.1".to_string() => 14}, ..record_spsu4 }; assert_eq!( record_spsu4_got, expected_record_spsu4, - "Assertion for NodeOperator {no_3nu7r_k} failed" + "Assertion for NodeOperator {node_operator_3nu7r_k} failed" ); } } From 71eb54f851cc34c70874b7d1ff51a70653773978 Mon Sep 17 00:00:00 2001 From: Pietro Date: Fri, 28 Nov 2025 15:31:08 +0000 Subject: [PATCH 03/13] Revert swiss changes --- rs/registry/canister/src/max_rewardable_nodes_mapping.rs | 2 +- rs/registry/canister/src/registry_lifecycle.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rs/registry/canister/src/max_rewardable_nodes_mapping.rs b/rs/registry/canister/src/max_rewardable_nodes_mapping.rs index 456f8455e9ef..044fe8fd6b11 100644 --- a/rs/registry/canister/src/max_rewardable_nodes_mapping.rs +++ b/rs/registry/canister/src/max_rewardable_nodes_mapping.rs @@ -7,7 +7,7 @@ use std::str::FromStr; lazy_static! { // TODO(DRE-625): Remove one-off migration - pub static ref MAX_REWARDABLE_NODES_SWISS_SUBNET_NO: BTreeMap> = + pub static ref MAX_REWARDABLE_NODES_MAPPING: BTreeMap> = btreemap! { "q4gds-li2kf-dhmi6-vmtxg-zrgep-3te7r-2a4ji-nszwv-66biu-dkl6k-eqe" => btreemap! {"type3.1" => 1}, "u7afs-z2fqh-zbqyo-jufwe-3vqqs-chc7f-k2fe4-rt66w-l4qia-keuuj-qqe" => btreemap! {"type3.1" => 1}, diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 5b30f8825c20..e3eeca11d5e0 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -1,5 +1,5 @@ use crate::certification::recertify_registry; -use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_SWISS_SUBNET_NO; +use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_MAPPING; use crate::mutations::node_management::common::get_key_family; use crate::{pb::v1::RegistryCanisterStableStorage, registry::Registry}; use ic_base_types::PrincipalId; @@ -153,7 +153,7 @@ fn fill_swiss_subnet_node_operators_max_rewardable_nodes( ) -> Vec { let mut mutations = Vec::new(); - for (operator, max_rewardable_nodes) in MAX_REWARDABLE_NODES_SWISS_SUBNET_NO.iter() { + for (operator, max_rewardable_nodes) in MAX_REWARDABLE_NODES_MAPPING.iter() { let registry_value = match registry.get( make_node_operator_record_key(*operator).as_bytes(), registry.latest_version(), From b1c19fca85aca2c7d5c488d42c77dbb4e08118e3 Mon Sep 17 00:00:00 2001 From: Pietro Date: Fri, 28 Nov 2025 17:19:09 +0000 Subject: [PATCH 04/13] Add test for ujq4k --- .../canister/src/registry_lifecycle.rs | 70 +++++++++++++++---- 1 file changed, 57 insertions(+), 13 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index e3eeca11d5e0..732c13c88eae 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -102,9 +102,26 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { get_key_family::(registry, NODE_OPERATOR_RECORD_KEY_PREFIX).into_iter() { let mut affected = false; - let node_operator_id_k = PrincipalId::from_str(&k).unwrap(); - let node_operator_id_v = PrincipalId::try_from(&record.node_operator_principal_id).unwrap(); - + let node_operator_id_k = match PrincipalId::from_str(&k) { + Ok(node_operator_id_k) => node_operator_id_k, + _ => { + ic_cdk::println!( + "Failed to parse NodeOperatorRecord key {} into PrincipalId. Skipping.", + k + ); + continue; + } + }; + let node_operator_id_v = match PrincipalId::try_from(&record.node_operator_principal_id) { + Ok(node_operator_id_k) => node_operator_id_k, + _ => { + ic_cdk::println!( + "Failed to parse NodeOperatorRecord principal ID {:?} into PrincipalId. Skipping.", + record.node_operator_principal_id + ); + continue; + } + }; // This fixes the principal ID mismatch issue on all instances. if node_operator_id_k != node_operator_id_v { ic_cdk::println!( @@ -479,16 +496,12 @@ mod test { )); // spsu4 is corrupted and should be fixed - let node_operator_spsu4_k = PrincipalId::from_str( - "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", - ) - .unwrap(); - let node_operator_spsu4_v = PrincipalId::from_str( + let node_operator_spsu4 = PrincipalId::from_str( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", ) .unwrap(); let record_spsu4 = NodeOperatorRecord { - node_operator_principal_id: node_operator_spsu4_v.to_vec(), + node_operator_principal_id: node_operator_spsu4.to_vec(), dc_id: "dummy_dc_id_spsu4".to_string(), ipv6: Some("dummy_ipv6_spsu4".to_string()), // wrong rewardable nodes, should be fixed by the migration @@ -497,14 +510,33 @@ mod test { ..NodeOperatorRecord::default() }; node_operator_additions.push(insert( - make_node_operator_record_key(node_operator_spsu4_k), + make_node_operator_record_key(node_operator_spsu4), record_spsu4.encode_to_vec(), )); + // ujq4k is corrupted and should be fixed + let node_operator_ujq4k = PrincipalId::from_str( + "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", + ) + .unwrap(); + let record_ujq4k = NodeOperatorRecord { + node_operator_principal_id: node_operator_ujq4k.to_vec(), + dc_id: "dummy_dc_id_ujq4k".to_string(), + ipv6: Some("dummy_ipv6_ujq4k".to_string()), + // wrong rewardable nodes, should be fixed by the migration + rewardable_nodes: btreemap! {"type1.1".to_string() => 19}, + max_rewardable_nodes: btreemap! {"type1.1".to_string() => 9}, + ..NodeOperatorRecord::default() + }; + node_operator_additions.push(insert( + make_node_operator_record_key(node_operator_ujq4k), + record_ujq4k.encode_to_vec(), + )); + registry.apply_mutations_for_test(node_operator_additions); let mutations = fix_node_operators_corrupted(®istry); // We expect 2 fixes, one for each corrupted record - assert_eq!(mutations.len(), 2); + assert_eq!(mutations.len(), 3); registry.apply_mutations_for_test(mutations); // Good record should be left untouched @@ -528,9 +560,9 @@ mod test { ); // spsu4 should be fixed - let record_spsu4_got = registry.get_node_operator_or_panic(node_operator_spsu4_k); + let record_spsu4_got = registry.get_node_operator_or_panic(node_operator_spsu4); let expected_record_spsu4 = NodeOperatorRecord { - node_operator_principal_id: node_operator_spsu4_k.to_vec(), + node_operator_principal_id: node_operator_spsu4.to_vec(), rewardable_nodes: btreemap! {"type1.1".to_string() => 14}, ..record_spsu4 }; @@ -538,5 +570,17 @@ mod test { record_spsu4_got, expected_record_spsu4, "Assertion for NodeOperator {node_operator_3nu7r_k} failed" ); + + // ujq4k should be fixed + let record_ujq4k_got = registry.get_node_operator_or_panic(node_operator_ujq4k); + let expected_record_ujq4k = NodeOperatorRecord { + node_operator_principal_id: node_operator_ujq4k.to_vec(), + rewardable_nodes: btreemap! {"type1.1".to_string() => 9}, + ..record_ujq4k + }; + assert_eq!( + record_ujq4k_got, expected_record_ujq4k, + "Assertion for NodeOperator {node_operator_3nu7r_k} failed" + ); } } From 5211fca9c4fa8e4c105cdfe9f3e3aac1c5bd51c4 Mon Sep 17 00:00:00 2001 From: Pietro Date: Sat, 29 Nov 2025 15:50:00 +0000 Subject: [PATCH 05/13] Add test for ujq4k --- .../canister/src/registry_lifecycle.rs | 52 ++++++++++++------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 732c13c88eae..62384a8379dc 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -66,25 +66,39 @@ pub fn canister_post_upgrade( } } -/* -Three node operators had corrupted NodeOperatorRecords which caused issues during migration (https://dashboard.internetcomputer.org/proposal/139210). - -1- record - node_operator_k: 3nu7r node_operator_v: ujq4k - As result: - * 3nu7r missed the update to max_rewardable_nodes during migration - * ujq4k got ovewritten by 3nu7r value. - -2- record - node_operator_k: bmlhw node_operator_v: spsu4 - As result: - * same as above - -2- record - node_operator_k: redpf node_operator_v: 2rqo7 - As result: - * same as above - -This function fixes those corrupted records. -We will be fixing just the used fields, i.e., node_allowance is excluded from the fix. -*/ +// Three node operators had corrupted NodeOperatorRecords which caused issues during the migration +// executed as part of NNS proposal 139210 (https://dashboard.internetcomputer.org/proposal/139210). +// The migration executed the following method https://github.com/dfinity/ic/blob/1bc0a59539613f6ec273a59a172ae43dfabb1ce0/rs/registry/canister/src/registry_lifecycle.rs#L105-L131 +// For the following three node operators the PrincipalId in the record did not match the PrincipalId in the key: +// +// 1- Record: 3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe +// Key: ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe +// +// 2- Record: bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe +// Key: spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae +// +// 3- Record: redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe +// Key: 2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe +// +// This leads to the following problems during the migration: +// +// in the key, causing the following issues: +// +// 1- record - node_operator_k: 3nu7r node_operator_v: ujq4k +// As result: +// * 3nu7r missed the update to max_rewardable_nodes during migration +// * ujq4k got ovewritten by 3nu7r value. +// +// 2- record - node_operator_k: bmlhw node_operator_v: spsu4 +// As result: +// * same as above +// +// 2- record - node_operator_k: redpf node_operator_v: 2rqo7 +// As result: +// * same as above +// +// This function fixes those corrupted records. +// We will be fixing just the used fields, i.e., node_allowance is excluded from the fix. fn fix_node_operators_corrupted(registry: &Registry) -> Vec { let mut mutations = Vec::new(); From 445241d083ab6d35741ada23908bc842d6d1fd7a Mon Sep 17 00:00:00 2001 From: Pietro Date: Wed, 3 Dec 2025 07:56:39 +0000 Subject: [PATCH 06/13] Target NO --- .../canister/src/registry_lifecycle.rs | 180 +++++++----------- 1 file changed, 68 insertions(+), 112 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 62384a8379dc..54dd8da3ccb5 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -28,9 +28,6 @@ pub fn canister_post_upgrade( // Registry data migrations should be implemented as follows: let mutation_batches_due_to_data_migrations = { let mut mutations = fix_node_operators_corrupted(registry); - mutations.extend(fill_swiss_subnet_node_operators_max_rewardable_nodes( - registry, - )); if mutations.is_empty() { 0 // No mutations required for this data migration. } else { @@ -102,133 +99,92 @@ pub fn canister_post_upgrade( fn fix_node_operators_corrupted(registry: &Registry) -> Vec { let mut mutations = Vec::new(); - let no_3nu7r = + let node_operator_id = PrincipalId::from_str("3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe") .unwrap(); - let no_spsu4 = - PrincipalId::from_str("spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae") - .unwrap(); - let no_ujq4k = + let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); + + record.node_operator_principal_id = node_operator_id.encode_to_vec(); + record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; + + mutations.push(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )); + + let node_operator_id = PrincipalId::from_str("ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe") .unwrap(); + let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - for (k, mut record) in - get_key_family::(registry, NODE_OPERATOR_RECORD_KEY_PREFIX).into_iter() - { - let mut affected = false; - let node_operator_id_k = match PrincipalId::from_str(&k) { - Ok(node_operator_id_k) => node_operator_id_k, - _ => { - ic_cdk::println!( - "Failed to parse NodeOperatorRecord key {} into PrincipalId. Skipping.", - k - ); - continue; - } - }; - let node_operator_id_v = match PrincipalId::try_from(&record.node_operator_principal_id) { - Ok(node_operator_id_k) => node_operator_id_k, - _ => { - ic_cdk::println!( - "Failed to parse NodeOperatorRecord principal ID {:?} into PrincipalId. Skipping.", - record.node_operator_principal_id - ); - continue; - } - }; - // This fixes the principal ID mismatch issue on all instances. - if node_operator_id_k != node_operator_id_v { - ic_cdk::println!( - "Found corrupted NodeOperatorRecord for operator {}. Fixing principal ID mismatch.", - node_operator_id_k - ); - record.node_operator_principal_id = node_operator_id_k.to_vec(); - affected = true; - } + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; - // 3nu7r missed the update to max_rewardable_nodes during migration because - // not present in node_operator_id_v. - if node_operator_id_k == no_3nu7r { - ic_cdk::println!("Fix max_rewardable_nodes for 3nu7r"); - record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; - affected = true; - } + mutations.push(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )); - // ujq4k got ovewritten by 3nu7r value and now has wrong rewardable_nodes. - if node_operator_id_k == no_ujq4k { - ic_cdk::println!("Fix rewardable_nodes for ujq4k"); - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; - affected = true; - } + let node_operator_id = + PrincipalId::from_str("bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe") + .unwrap(); + let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - // spsu4 got ovewritten by bmlhw value and now has wrong rewardable_nodes. - if node_operator_id_k == no_spsu4 { - ic_cdk::println!("Fix rewardable_nodes for spsu4"); - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; - affected = true; - } + record.node_operator_principal_id = node_operator_id.encode_to_vec(); + record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1.to_string() => 14 }; - if affected { - mutations.push(update( - make_node_operator_record_key(node_operator_id_k), - record.encode_to_vec(), - )); - } - } + mutations.push(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )); - mutations -} + let node_operator_id = + PrincipalId::from_str("spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae") + .unwrap(); + let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); -fn fill_swiss_subnet_node_operators_max_rewardable_nodes( - registry: &Registry, -) -> Vec { - let mut mutations = Vec::new(); + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; - for (operator, max_rewardable_nodes) in MAX_REWARDABLE_NODES_MAPPING.iter() { - let registry_value = match registry.get( - make_node_operator_record_key(*operator).as_bytes(), - registry.latest_version(), - ) { - Some(record) => record, - None => { - ic_cdk::println!( - "Failed to find NodeOperatorRecord for operator {}", - operator - ); - continue; - } - }; + mutations.push(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )); - let mut node_operator_record = - match NodeOperatorRecord::decode(registry_value.value.as_slice()) { - Ok(node_operator_record) => node_operator_record, - _ => { - ic_cdk::println!( - "Failed to decode NodeOperatorRecord for operator {}", - operator - ); - continue; - } - }; - - // This avoids re-modifying existing max_rewardable_nodes entries. - if !node_operator_record.max_rewardable_nodes.is_empty() { - continue; - } + let node_operator_id = + PrincipalId::from_str("redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe") + .unwrap(); + let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - node_operator_record.max_rewardable_nodes = max_rewardable_nodes - .iter() - .map(|(node_reward_type, count)| (node_reward_type.to_string(), *count)) - .collect(); - mutations.push(update( - make_node_operator_record_key(*operator), - node_operator_record.encode_to_vec(), - )); - } + record.node_operator_principal_id = node_operator_id.encode_to_vec(); + + mutations.push(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )); mutations } +fn get_node_operator_record( + node_operator_id: &PrincipalId, + registry: &Registry, +) -> Result { + let registry_value = registry + .get( + make_node_operator_record_key(*node_operator_id).as_bytes(), + registry.latest_version(), + ) + .ok_or(Err(format!( + "Failed to find NodeOperatorRecord for operator {}", + node_operator_id + )))?; + NodeOperatorRecord::decode(registry_value.value.as_slice()).map_err(|e| { + format!( + "Failed to decode NodeOperatorRecord for operator {}: {}", + node_operator_id, e + ) + }) +} + #[cfg(test)] mod test { use super::*; From b4bafe87d97d4774fe96c53258aeedad8d887988 Mon Sep 17 00:00:00 2001 From: Pietro Date: Wed, 3 Dec 2025 08:15:37 +0000 Subject: [PATCH 07/13] Add fix each node op --- .../canister/src/registry_lifecycle.rs | 195 +++++++----------- 1 file changed, 80 insertions(+), 115 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 54dd8da3ccb5..672845bb4ac3 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -1,6 +1,4 @@ use crate::certification::recertify_registry; -use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_MAPPING; -use crate::mutations::node_management::common::get_key_family; use crate::{pb::v1::RegistryCanisterStableStorage, registry::Registry}; use ic_base_types::PrincipalId; use ic_protobuf::registry::node::v1::NodeRewardType; @@ -63,128 +61,95 @@ pub fn canister_post_upgrade( } } -// Three node operators had corrupted NodeOperatorRecords which caused issues during the migration -// executed as part of NNS proposal 139210 (https://dashboard.internetcomputer.org/proposal/139210). -// The migration executed the following method https://github.com/dfinity/ic/blob/1bc0a59539613f6ec273a59a172ae43dfabb1ce0/rs/registry/canister/src/registry_lifecycle.rs#L105-L131 -// For the following three node operators the PrincipalId in the record did not match the PrincipalId in the key: -// -// 1- Record: 3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe -// Key: ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe -// -// 2- Record: bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe -// Key: spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae -// -// 3- Record: redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe -// Key: 2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe -// -// This leads to the following problems during the migration: -// -// in the key, causing the following issues: -// -// 1- record - node_operator_k: 3nu7r node_operator_v: ujq4k -// As result: -// * 3nu7r missed the update to max_rewardable_nodes during migration -// * ujq4k got ovewritten by 3nu7r value. -// -// 2- record - node_operator_k: bmlhw node_operator_v: spsu4 -// As result: -// * same as above -// -// 2- record - node_operator_k: redpf node_operator_v: 2rqo7 -// As result: -// * same as above -// -// This function fixes those corrupted records. -// We will be fixing just the used fields, i.e., node_allowance is excluded from the fix. fn fix_node_operators_corrupted(registry: &Registry) -> Vec { - let mut mutations = Vec::new(); - - let node_operator_id = - PrincipalId::from_str("3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe") - .unwrap(); - let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - - record.node_operator_principal_id = node_operator_id.encode_to_vec(); - record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; - - mutations.push(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )); - - let node_operator_id = - PrincipalId::from_str("ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe") - .unwrap(); - let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; - - mutations.push(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )); - - let node_operator_id = - PrincipalId::from_str("bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe") - .unwrap(); - let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - - record.node_operator_principal_id = node_operator_id.encode_to_vec(); - record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1.to_string() => 14 }; - - mutations.push(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )); - - let node_operator_id = - PrincipalId::from_str("spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae") - .unwrap(); - let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); - - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; + let create_mutation = |principal_id_str: &str, + modify_record: fn(&mut NodeOperatorRecord, PrincipalId)| + -> Result { + let node_operator_id = PrincipalId::from_str(principal_id_str) + .map_err(|e| format!("Failed to parse principal ID {}: {}", principal_id_str, e))?; + + let registry_value = registry + .get( + make_node_operator_record_key(node_operator_id).as_bytes(), + registry.latest_version(), + ) + .ok_or(format!( + "Failed to find NodeOperatorRecord for operator {}", + node_operator_id + ))?; + let mut record = + NodeOperatorRecord::decode(registry_value.value.as_slice()).map_err(|e| { + format!( + "Failed to decode NodeOperatorRecord for operator {}: {}", + node_operator_id, e + ) + })?; + + modify_record(&mut record, node_operator_id); + + Ok(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )) + }; - mutations.push(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )); + let mut mutations = Vec::new(); - let node_operator_id = - PrincipalId::from_str("redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe") - .unwrap(); - let mut record = get_node_operator_record(&node_operator_id, registry).unwrap(); + // Fix 3nu7r - ujq4k + // 3nu7r missed the update to max_rewardable_nodes during migration + // ujq4k got ovewritten by 3nu7r value. + if let Ok(mutation) = create_mutation( + "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", + |record, principal_id_key| { + record.node_operator_principal_id = principal_id_key.encode_to_vec(); + record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; + }, + ) { + mutations.push(mutation); + }; + if let Ok(mutation) = create_mutation( + "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", + |record, _| { + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; + }, + ) { + mutations.push(mutation); + } - record.node_operator_principal_id = node_operator_id.encode_to_vec(); + // Fix bmlhw - spsu4 + // bmlhw missed the update to max_rewardable_nodes during migration + // spsu4 got ovewritten by bmlhw value. + if let Ok(mutation) = create_mutation( + "bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe", + |record, principal_id_key| { + record.node_operator_principal_id = principal_id_key.encode_to_vec(); + record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1.to_string() => 14 }; + }, + ) { + mutations.push(mutation); + } + if let Ok(mutation) = create_mutation( + "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", + |record, _id| { + record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; + }, + ) { + mutations.push(mutation); + } - mutations.push(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )); + // Fix redpf - 2rqo7 + if let Ok(mutation) = create_mutation( + "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", + |record, id| { + record.node_operator_principal_id = id.encode_to_vec(); + }, + ) { + mutations.push(mutation); + } mutations } -fn get_node_operator_record( - node_operator_id: &PrincipalId, - registry: &Registry, -) -> Result { - let registry_value = registry - .get( - make_node_operator_record_key(*node_operator_id).as_bytes(), - registry.latest_version(), - ) - .ok_or(Err(format!( - "Failed to find NodeOperatorRecord for operator {}", - node_operator_id - )))?; - NodeOperatorRecord::decode(registry_value.value.as_slice()).map_err(|e| { - format!( - "Failed to decode NodeOperatorRecord for operator {}: {}", - node_operator_id, e - ) - }) -} - #[cfg(test)] mod test { use super::*; From a9508d11ba1eb7f4723eff4cffafff57b7d10bbf Mon Sep 17 00:00:00 2001 From: Pietro Date: Wed, 3 Dec 2025 10:24:10 +0000 Subject: [PATCH 08/13] Address comments --- .../canister/src/registry_lifecycle.rs | 197 +++++------------- 1 file changed, 50 insertions(+), 147 deletions(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 672845bb4ac3..5c82063f2104 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -25,7 +25,7 @@ pub fn canister_post_upgrade( // Registry data migrations should be implemented as follows: let mutation_batches_due_to_data_migrations = { - let mut mutations = fix_node_operators_corrupted(registry); + let mutations = fix_node_operators_corrupted(registry); if mutations.is_empty() { 0 // No mutations required for this data migration. } else { @@ -62,52 +62,54 @@ pub fn canister_post_upgrade( } fn fix_node_operators_corrupted(registry: &Registry) -> Vec { - let create_mutation = |principal_id_str: &str, - modify_record: fn(&mut NodeOperatorRecord, PrincipalId)| - -> Result { - let node_operator_id = PrincipalId::from_str(principal_id_str) - .map_err(|e| format!("Failed to parse principal ID {}: {}", principal_id_str, e))?; - - let registry_value = registry - .get( - make_node_operator_record_key(node_operator_id).as_bytes(), - registry.latest_version(), - ) - .ok_or(format!( - "Failed to find NodeOperatorRecord for operator {}", - node_operator_id - ))?; - let mut record = - NodeOperatorRecord::decode(registry_value.value.as_slice()).map_err(|e| { - format!( - "Failed to decode NodeOperatorRecord for operator {}: {}", - node_operator_id, e + let create_node_operator_mutation = + |principal_id_str: &str, + modify_record: fn(&mut NodeOperatorRecord, PrincipalId)| + -> Result { + let node_operator_id = PrincipalId::from_str(principal_id_str) + .map_err(|e| format!("Failed to parse principal ID {}: {}", principal_id_str, e))?; + + let registry_value = registry + .get( + make_node_operator_record_key(node_operator_id).as_bytes(), + registry.latest_version(), ) - })?; - - modify_record(&mut record, node_operator_id); - - Ok(update( - make_node_operator_record_key(node_operator_id), - record.encode_to_vec(), - )) - }; + .ok_or(format!( + "Failed to find NodeOperatorRecord for operator {}", + node_operator_id + ))?; + + let mut record = + NodeOperatorRecord::decode(registry_value.value.as_slice()).map_err(|e| { + format!( + "Failed to decode NodeOperatorRecord for operator {}: {}", + node_operator_id, e + ) + })?; + + modify_record(&mut record, node_operator_id); + + Ok(update( + make_node_operator_record_key(node_operator_id), + record.encode_to_vec(), + )) + }; let mut mutations = Vec::new(); - // Fix 3nu7r - ujq4k - // 3nu7r missed the update to max_rewardable_nodes during migration - // ujq4k got ovewritten by 3nu7r value. - if let Ok(mutation) = create_mutation( + // 3nu7r - ujq4k ------------------------------------------------------------------------------- + + if let Ok(mutation) = create_node_operator_mutation( "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", |record, principal_id_key| { - record.node_operator_principal_id = principal_id_key.encode_to_vec(); + record.node_operator_principal_id = principal_id_key.to_vec(); record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; }, ) { mutations.push(mutation); }; - if let Ok(mutation) = create_mutation( + + if let Ok(mutation) = create_node_operator_mutation( "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", |record, _| { record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; @@ -116,32 +118,33 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { mutations.push(mutation); } - // Fix bmlhw - spsu4 - // bmlhw missed the update to max_rewardable_nodes during migration - // spsu4 got ovewritten by bmlhw value. - if let Ok(mutation) = create_mutation( + // bmlhw - spsu4 ------------------------------------------------------------------------------- + + if let Ok(mutation) = create_node_operator_mutation( "bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe", |record, principal_id_key| { - record.node_operator_principal_id = principal_id_key.encode_to_vec(); + record.node_operator_principal_id = principal_id_key.to_vec(); record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1.to_string() => 14 }; }, ) { mutations.push(mutation); } - if let Ok(mutation) = create_mutation( + + if let Ok(mutation) = create_node_operator_mutation( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", - |record, _id| { + |record, _| { record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; }, ) { mutations.push(mutation); } - // Fix redpf - 2rqo7 - if let Ok(mutation) = create_mutation( + // redpf --------------------------------------------------------------------------------------- + + if let Ok(mutation) = create_node_operator_mutation( "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", - |record, id| { - record.node_operator_principal_id = id.encode_to_vec(); + |record, principal_id_key| { + record.node_operator_principal_id = principal_id_key.to_vec(); }, ) { mutations.push(mutation); @@ -286,106 +289,6 @@ mod test { canister_post_upgrade(&mut new_registry, registry_storage); } - #[test] - fn test_fill_node_operators_swiss_subnet_max_rewardable_nodes_correctly() { - let mut registry = invariant_compliant_registry(0); - let mut node_operator_additions = Vec::new(); - - let no_1 = PrincipalId::from_str( - "q4gds-li2kf-dhmi6-vmtxg-zrgep-3te7r-2a4ji-nszwv-66biu-dkl6k-eqe", - ) - .unwrap(); - - let record_no_1 = NodeOperatorRecord { - node_operator_principal_id: no_1.clone().to_vec(), - dc_id: "dummy_dc_id_1".to_string(), - ipv6: Some("dummy_ipv6_1".to_string()), - // Empty rewardable nodes, should be filled in by the migration - max_rewardable_nodes: btreemap! {}, - ..NodeOperatorRecord::default() - }; - - node_operator_additions.push(insert( - make_node_operator_record_key(no_1), - record_no_1.encode_to_vec(), - )); - - registry.apply_mutations_for_test(node_operator_additions); - let mutations = fill_swiss_subnet_node_operators_max_rewardable_nodes(®istry); - assert_eq!(mutations.len(), 1); - registry.apply_mutations_for_test(mutations); - - let record = registry.get_node_operator_or_panic(no_1); - - let expected_record = NodeOperatorRecord { - max_rewardable_nodes: btreemap! {"type3.1".to_string() => 1}, - ..record_no_1 - }; - - assert_eq!( - record, expected_record, - "Assertion for NodeOperator {no_1} failed" - ); - } - - #[test] - fn test_fill_node_operators_swiss_subnet_max_rewardable_nodes_leave_other_no_unmodified() { - let mut registry = invariant_compliant_registry(0); - let mut node_operator_additions = Vec::new(); - - // This node operator is not in the swiss subnet mapping - let no_1 = PrincipalId::from_str( - "xph6u-z3z2t-s7hh7-gtlxh-bbgbx-aatlm-eab4o-bsank-nqruh-3ub4q-sae", - ) - .unwrap(); - - let record_no_1 = NodeOperatorRecord { - node_operator_principal_id: no_1.clone().to_vec(), - dc_id: "dummy_dc_id_1".to_string(), - ipv6: Some("dummy_ipv6_1".to_string()), - // Empty rewardable nodes, should be filled in by the migration - max_rewardable_nodes: btreemap! {}, - ..NodeOperatorRecord::default() - }; - - node_operator_additions.push(insert( - make_node_operator_record_key(no_1), - record_no_1.encode_to_vec(), - )); - - registry.apply_mutations_for_test(node_operator_additions); - let mutations = fill_swiss_subnet_node_operators_max_rewardable_nodes(®istry); - assert_eq!(mutations.len(), 0); - } - - #[test] - fn test_fill_node_operators_swiss_subnet_leave_untouched_not_empty_max_rewardable_nodes() { - let mut registry = invariant_compliant_registry(0); - let mut node_operator_additions = Vec::new(); - - let no_1 = PrincipalId::from_str( - "yedtm-rm5av-s256v-zzi4w-7lxen-koqg6-pzak3-rjzko-xfu2c-dw7eo-bae", - ) - .unwrap(); - - let record_no_1 = NodeOperatorRecord { - node_operator_principal_id: no_1.clone().to_vec(), - dc_id: "dummy_dc_id_1".to_string(), - ipv6: Some("dummy_ipv6_1".to_string()), - max_rewardable_nodes: btreemap! {"type3.1".to_string() => 1}, - ..NodeOperatorRecord::default() - }; - - node_operator_additions.push(insert( - make_node_operator_record_key(no_1), - record_no_1.encode_to_vec(), - )); - - registry.apply_mutations_for_test(node_operator_additions); - let mutations = fill_swiss_subnet_node_operators_max_rewardable_nodes(®istry); - assert_eq!(mutations.len(), 0); - } - #[test] fn test_fix_all_and_only_node_operators_corrupted() { let mut registry = invariant_compliant_registry(0); From 7fc9fb79c6d25202ed00a21fef05357a9657da17 Mon Sep 17 00:00:00 2001 From: Pietro Date: Wed, 3 Dec 2025 10:34:30 +0000 Subject: [PATCH 09/13] Fix lint --- rs/registry/canister/src/registry_lifecycle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index 5c82063f2104..e0db9f460394 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -3,7 +3,7 @@ use crate::{pb::v1::RegistryCanisterStableStorage, registry::Registry}; use ic_base_types::PrincipalId; use ic_protobuf::registry::node::v1::NodeRewardType; use ic_protobuf::registry::node_operator::v1::NodeOperatorRecord; -use ic_registry_keys::{NODE_OPERATOR_RECORD_KEY_PREFIX, make_node_operator_record_key}; +use ic_registry_keys::make_node_operator_record_key; use ic_registry_transport::{pb::v1::RegistryMutation, update}; use maplit::btreemap; use prost::Message; From df9bac07f31c158c128ce4af31905608aff773b1 Mon Sep 17 00:00:00 2001 From: Pietro Date: Wed, 3 Dec 2025 11:45:03 +0000 Subject: [PATCH 10/13] Fix build --- rs/registry/canister/src/registry_lifecycle.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index a65bcdb25987..e0db9f460394 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -1,5 +1,4 @@ use crate::certification::recertify_registry; -use crate::max_rewardable_nodes_mapping::MAX_REWARDABLE_NODES_MAPPING; use crate::{pb::v1::RegistryCanisterStableStorage, registry::Registry}; use ic_base_types::PrincipalId; use ic_protobuf::registry::node::v1::NodeRewardType; From b545ce377bad8fba8b74ea495c97d1c14a2c70da Mon Sep 17 00:00:00 2001 From: Pietro Date: Thu, 4 Dec 2025 12:00:38 +0000 Subject: [PATCH 11/13] Simulate rewards --- rs/nns/integration_tests/BUILD.bazel | 21 + .../src/before_migration.txt | 1664 +++++++++++++++++ rs/nns/integration_tests/src/lib.rs | 3 + .../src/registry_migration.rs | 404 ++++ .../canister/src/registry_lifecycle.rs | 44 +- rs/registry/node_provider_rewards/src/lib.rs | 54 + 6 files changed, 2175 insertions(+), 15 deletions(-) create mode 100644 rs/nns/integration_tests/src/before_migration.txt create mode 100644 rs/nns/integration_tests/src/registry_migration.rs diff --git a/rs/nns/integration_tests/BUILD.bazel b/rs/nns/integration_tests/BUILD.bazel index 04acde305aea..b11ee0f0a28b 100644 --- a/rs/nns/integration_tests/BUILD.bazel +++ b/rs/nns/integration_tests/BUILD.bazel @@ -362,3 +362,24 @@ rust_ic_test( ], deps = DEPENDENCIES + DEV_DEPENDENCIES, ) + +rust_ic_test( + name = "registry_migration", + # This uses on the order of 10 GB of disk space. + # Therefore, size = "large" is not large enough. + size = "enormous", + srcs = [ + "src/registry_migration.rs", + ], + aliases = ALIASES, + crate_root = "src/registry_migration.rs", + data = DEV_DATA, + env = DEV_ENV, + proc_macro_deps = MACRO_DEPENDENCIES + MACRO_DEV_DEPENDENCIES, + tags = [ + "nns_tests_nightly", # Run this test in the nns-tests-nightly GitHub Action job. + "no-sandbox", # such that the test can access the file $SSH_AUTH_SOCK. + "requires-network", # Because mainnet state is downloaded (and used). + ], + deps = DEPENDENCIES + DEV_DEPENDENCIES, +) diff --git a/rs/nns/integration_tests/src/before_migration.txt b/rs/nns/integration_tests/src/before_migration.txt new file mode 100644 index 000000000000..9785a0ab698c --- /dev/null +++ b/rs/nns/integration_tests/src/before_migration.txt @@ -0,0 +1,1664 @@ +pietro@devenv-pietro:~/RustroverProjects/ic$ bazel test --test_env=SSH_AUTH_SOCK --test_env=NNS_CANISTER_UPGRADE_SEQUENCE=all --test_output=streamed --test_arg=--nocapture //rs/nns/integration_tests:registry_migration +INFO: Invocation ID: a5d7f98d-e42c-40fc-9f2a-ce9d49afc453 +WARNING: Streamed test output requested. All tests will be run locally, without sharding, one at a time +INFO: Analyzed target //rs/nns/integration_tests:registry_migration (0 packages loaded, 0 targets configured). +INFO: From Compiling Rust bin registry_migration (1 files): +warning: unused imports: `MonthlyNodeProviderRewards`, `ProposalActionRequest`, and `RewardNodeProviders` + --> rs/nns/integration_tests/src/registry_migration.rs:12:32 + | +12 | ListNodeProvidersResponse, MonthlyNodeProviderRewards, NetworkEconomics, ProposalActionRequest, + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^ +13 | RewardNodeProviders, Vote, VotingPowerEconomics, + | ^^^^^^^^^^^^^^^^^^^ + | + = note: `#[warn(unused_imports)]` on by default + +warning: unused imports: `nns_get_most_recent_monthly_node_provider_rewards` and `scrape_metrics` + --> rs/nns/integration_tests/src/registry_migration.rs:20:5 + | +20 | nns_get_most_recent_monthly_node_provider_rewards, nns_wait_for_proposal_execution, + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +21 | scrape_metrics, + | ^^^^^^^^^^^^^^ + +warning: unused import: `ic_node_rewards_canister_api::provider_rewards_calculation::GetNodeProvidersRewardsCalculationRequest` + --> rs/nns/integration_tests/src/registry_migration.rs:24:5 + | +24 | use ic_node_rewards_canister_api::provider_rewards_calculation::GetNodeProvidersRewardsCalculationRequest; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `std::collections::BTreeMap` + --> rs/nns/integration_tests/src/registry_migration.rs:31:5 + | +31 | use std::collections::BTreeMap; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ + +warning: unused import: `itertools::Itertools` + --> rs/nns/integration_tests/src/registry_migration.rs:29:5 + | +29 | use itertools::Itertools; + | ^^^^^^^^^^^^^^^^^^^^ + +warning: unused variable: `operators_before` + --> rs/nns/integration_tests/src/registry_migration.rs:248:9 + | +248 | let operators_before: Vec = fetch_all_node_operators_data(&state_machine); + | ^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_operators_before` + | + = note: `#[warn(unused_variables)]` on by default + +warning: unused variable: `np_id` + --> rs/nns/integration_tests/src/registry_migration.rs:330:17 + | +330 | .flat_map(|(np_id, records)| { + | ^^^^^ help: if this is intentional, prefix it with an underscore: `_np_id` + +warning: 7 warnings emitted + + +running 1 test +Downloading dev@zh1-pyr07.zh1.dfinity.network:/home/dev/nns_state.tar.zst to "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmp1XvJMb/nns_state.tar.zst" ... +test test_registry_migration_with_golden_state has been running for over 60 seconds +Downloaded dev@zh1-pyr07.zh1.dfinity.network:/home/dev/nns_state.tar.zst to /home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmp1XvJMb/nns_state.tar.zst. size = 14.07 GiB +Unpacking nns_state from "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmp1XvJMb/nns_state.tar.zst" to "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmpuAmVVK"... +Renaming "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmpdmphvw"/nns_state/ic_state to "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmpuAmVVK"... +Unpacked "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmp1XvJMb/nns_state.tar.zst" to "/home/pietro/.cache/bazel/_bazel_pietro/d88afbdc61123df4c1863feca0edca32/execroot/_main/_tmp/2b087cbb3cfb0d22181a58648ffd85d6/.tmpuAmVVK" +Building StateMachine... +Done building StateMachine... +Creating super powerful Neuron. +2025-12-04 10:05:39.948932835 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2025-12-04 10:05:39.948932835 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2025-12-04 10:05:39.948932835 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2025-12-04 10:05:39.948932835 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2025-12-04 10:05:39.948932836 UTC: [Canister qoctq-giaaa-aaaaa-aaaea-cai] Keeping usd_e8s_per_icp for TVL at 379171142 because of call error: "Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found" +2025-12-04 10:05:39.948932836 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] [cycles] Failed to retrieve rate from exchange rate canister: Code: 3 Message: Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found +2025-12-04 10:05:39.948932837 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Registry version local 55241 < remote 55243 +2025-12-04 10:05:39.948932835 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 579705282437455550 }, subaccount: Subaccount([246, 186, 79, 92, 166, 60, 150, 111, 213, 15, 46, 144, 166, 19, 200, 32, 143, 64, 37, 150, 200, 249, 197, 112, 43, 52, 183, 1, 105, 150, 210, 153]), controller: 4ex2q-2aeip-zt45a-efgok-yqdqg-nk5dl-33472-qfudg-z2vmu-75ehp-sae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764836699 }, hot_keys: [o2d3h-wx3i2-pfdcb-fxdn3-qjtru-2li7u-lllwp-iqald-zllqb-ymor7-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764231899, spawn_at_timestamp_seconds: Some(1764836699), followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 9824940026, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764231899, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2025-12-04 10:05:39.948932839 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Local Registry version 55243 is up to date +2025-12-04 10:05:39.948932839 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Successfully synced local registry +2025-12-04 10:05:39.948932839 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Updating node metrics for 47 subnets +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae +Dec 04 10:09:29.645 WARN s:/n:/ic_messaging/stream_builder No route to canister lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae +Dec 04 10:09:29.646 WARN s:/n:/ic_messaging/stream_builder No route to canister 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe +Dec 04 10:09:29.647 WARN s:/n:/ic_messaging/stream_builder No route to canister jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae: ERROR: No route to canister brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae: ERROR: No route to canister o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe: ERROR: No route to canister 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe: ERROR: No route to canister vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae: ERROR: No route to canister opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe: ERROR: No route to canister lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe: ERROR: No route to canister nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae: ERROR: No route to canister mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe: ERROR: No route to canister io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe: ERROR: No route to canister ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae: ERROR: No route to canister gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae: ERROR: No route to canister 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe: ERROR: No route to canister eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae: ERROR: No route to canister pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe: ERROR: No route to canister 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe: ERROR: No route to canister uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae: ERROR: No route to canister 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae: ERROR: No route to canister pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe: ERROR: No route to canister e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe: ERROR: No route to canister qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe: ERROR: No route to canister bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe: ERROR: No route to canister 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae: ERROR: No route to canister snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe: ERROR: No route to canister xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe: ERROR: No route to canister shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae: ERROR: No route to canister csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe: ERROR: No route to canister 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe: ERROR: No route to canister k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae: ERROR: No route to canister x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe: ERROR: No route to canister yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe: ERROR: No route to canister xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae: ERROR: No route to canister w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae: ERROR: No route to canister c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae: ERROR: No route to canister rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae: ERROR: No route to canister mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae: ERROR: No route to canister fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe: ERROR: No route to canister w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae: ERROR: No route to canister cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe: ERROR: No route to canister pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Successfully updated subnet tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe metrics for date: 2025-12-03 +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae: ERROR: No route to canister 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae: ERROR: No route to canister 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae: ERROR: No route to canister qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe: ERROR: No route to canister 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae: ERROR: No route to canister kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe: ERROR: No route to canister lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe: ERROR: No route to canister jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe +2025-12-04 10:05:39.948932841 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Failed to sync subnets metrics: "Failed to update metrics" +2025-12-04 10:05:39.948932843 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 579705282437455550 }, subaccount: Subaccount([246, 186, 79, 92, 166, 60, 150, 111, 213, 15, 46, 144, 166, 19, 200, 32, 143, 64, 37, 150, 200, 249, 197, 112, 43, 52, 183, 1, 105, 150, 210, 153]), controller: 4ex2q-2aeip-zt45a-efgok-yqdqg-nk5dl-33472-qfudg-z2vmu-75ehp-sae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764836699 }, hot_keys: [o2d3h-wx3i2-pfdcb-fxdn3-qjtru-2li7u-lllwp-iqald-zllqb-ymor7-6qe], cached_neuron_stake_e8s: 10252324917, neuron_fees_e8s: 0, created_timestamp_seconds: 1764231899, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764231899, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2025-12-04 10:05:39.948932844 UTC: [Canister qoctq-giaaa-aaaaa-aaaea-cai] Updated total_locked_icp_e8s for TVL to 23970716595303576 +Done creating super powerful Neuron. +2025-12-04 10:05:39.948932852 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Voting power totals are empty. No voting power spike detected. +2025-12-04 10:05:39.948932875 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Proposal 139652 decided, thanks to majority. Tally at decision time: Tally { timestamp_seconds: 1764842739, yes: 55944585273534178, no: 0, total: 61964433918159063 } +2025-12-04 10:05:39.948932875 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Execution of proposal: 139652 succeeded. (Proposal title: Some("manage network economics")) + +Current canister: governance +Proposing to upgrade NNS governance +2025-12-04 10:05:41.948932879 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Voting power totals are empty. No voting power spike detected. +2025-12-04 10:05:41.948932886 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Proposal 139653 decided, thanks to majority. Tally at decision time: Tally { timestamp_seconds: 1764842741, yes: 54006019512207732, no: 0, total: 61964433504459141 } +2025-12-04 10:05:41.948932886 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Execution of proposal: 139653 succeeded. (Proposal title: Some("Upgrade governance")) +2025-12-04 10:05:43.948932888 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Executing pre upgrade +Upgrade is not done yet (as of iteration 0): stopped. +2025-12-04 10:05:43.948932888 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Executing post upgrade +2025-12-04 10:05:43.948932888 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] canister_post_upgrade: Initializing with: economics: Some(NetworkEconomics { reject_cost_e8s: 2500000000, neuron_minimum_stake_e8s: 100000000, neuron_management_fee_per_proposal_e8s: 1000000, minimum_icp_xdr_rate: 100, neuron_spawn_dissolve_delay_seconds: 604800, maximum_node_provider_rewards_e8s: 10000000000000, transaction_fee_e8s: 10000, max_proposals_to_keep_per_topic: 100, neurons_fund_economics: Some(NeuronsFundEconomics { max_theoretical_neurons_fund_participation_amount_xdr: Some(Decimal { human_readable: Some("750_000.0") }), neurons_fund_matched_funding_curve_coefficients: Some(NeuronsFundMatchedFundingCurveCoefficients { contribution_threshold_xdr: Some(Decimal { human_readable: Some("75_000.0") }), one_third_participation_milestone_xdr: Some(Decimal { human_readable: Some("225_000.0") }), full_participation_milestone_xdr: Some(Decimal { human_readable: Some("375_000.0") }) }), minimum_icp_xdr_rate: Some(Percentage { basis_points: Some(10000) }), maximum_icp_xdr_rate: Some(Percentage { basis_points: Some(1000000) }) }), voting_power_economics: Some(VotingPowerEconomics { start_reducing_voting_power_after_seconds: Some(15778800), clear_following_after_seconds: Some(2629800), neuron_minimum_dissolve_delay_to_vote_seconds: Some(15778800) }) }), genesis_timestamp_seconds: 1620662400, xdr_conversion_rate: Some(XdrConversionRate { timestamp_seconds: Some(1764806400), xdr_permyriad_per_icp: Some(38135) }) +Upgrade is not done yet (as of iteration 1): stopped. +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Running GC now at timestamp 1764842747 seconds +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ProtocolCanisterManagement max 100 current 101 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NodeAdmin max 100 current 65 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic Governance max 100 current 100 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NeuronManagement max 100 current 100 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ApiBoundaryNodeManagement max 100 current 4 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ParticipantManagement max 100 current 39 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic Kyc max 100 current 22 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic IcOsVersionElection max 100 current 68 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ApplicationCanisterManagement max 100 current 89 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ServiceNervousSystemManagement max 100 current 50 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic IcOsVersionDeployment max 100 current 112 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic SubnetManagement max 100 current 100 +2025-12-04 10:05:47.948932894 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NetworkEconomics max 100 current 2 +Yay! We were able to upgrade governance to BCC7AFC86897A86D2EB2CB6A1D0CBA60AE61F228328BCD6678D55A1161ED17D4 on iteration 2. +Attempt to upgrade governance was successful. + +Current canister: node-rewards +2025-12-04 10:05:49.948932894 UTC: [Canister r7inp-6aaaa-aaaaa-aaabq-cai] [Root Canister] start_canister call successful. Ok(()) +2025-12-04 10:05:49.948932894 UTC: [Canister r7inp-6aaaa-aaaaa-aaabq-cai] [Root Canister] change_canister: Canister change completed successfully. +Proposing to upgrade NNS node-rewards +2025-12-04 10:05:49.948932895 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Voting power totals are empty. No voting power spike detected. +2025-12-04 10:05:49.948932902 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Proposal 139654 decided, thanks to majority. Tally at decision time: Tally { timestamp_seconds: 1764842749, yes: 54006019870923387, no: 0, total: 61964431849659521 } +2025-12-04 10:05:49.948932902 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Execution of proposal: 139654 succeeded. (Proposal title: Some("Upgrade node-rewards")) +Upgrade is not done yet (as of iteration 0): stopped. +Upgrade is not done yet (as of iteration 1): stopped. +2025-12-04 10:05:53.948932906 UTC: [Canister r7inp-6aaaa-aaaaa-aaabq-cai] [Root Canister] start_canister call successful. Ok(()) +2025-12-04 10:05:53.948932906 UTC: [Canister r7inp-6aaaa-aaaaa-aaabq-cai] [Root Canister] change_canister: Canister change completed successfully. +Yay! We were able to upgrade node-rewards to F0E694AE65969823D3CBD65A965AC30EBE9B2D30DED27AC608277C68BEFF8648 on iteration 2. +Attempt to upgrade node-rewards was successful. +2026-01-03 20:35:56.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Local Registry version 55243 is up to date +2026-01-03 20:35:56.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:35:56.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:35:56.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:35:56.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:35:56.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Updating node metrics for 47 subnets +2026-01-03 20:35:56.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Proposal 139595 decided, thanks to expiration. Tally at decision time: Tally { timestamp_seconds: 1764832497, yes: 7400212477878818, no: 106720685761714, total: 42134087186674237 } +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] call: change_subnet_membership from: rrkah-fqaaa-aaaaa-aaaaq-cai +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] do_change_subnet_membership started: ChangeSubnetMembershipPayload { subnet_id: brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae, node_ids_add: [33mvi-izcix-iv5ys-fypko-b4fwq-w3uns-s3tbl-5ij6h-qvxsf-nm3gb-fqe], node_ids_remove: [i7zdo-qrk2t-phjla-2unbd-p76z5-eg2m3-yko4n-5dclc-rewwh-t33gv-wae] } +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] Received a mutate call containing a list of 1 mutations +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] check_global_state_invariants: [ + "RegistryMutation { mutation_type: upsert, key: subnet_record_brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae, value: [26, 29, 34, 69, 209, 94, 226, 69, 195, 212, 224, 240, 182, 133, 183, 70, 202, 91, 152, 87, 212, 39, 199, 133, 111, 34, 181, 155, 48, 75, 2, 26, 29, 164, 230, 123, 5, 165, 74, 212, 255, 131, 10, 210, 117, 32, 166, 184, 246, 132, 232, 182, 75, 197, 184, 109, 239, 247, 146, 85, 141, 2, 26, 29, 81, 113, 41, 1, 75, 49, 168, 56, 71, 69, 106, 40, 185, 142, 112, 58, 146, 249, 35, 181, 178, 95, 126, 92, 149, 186, 176, 47, 2, 26, 29, 143, 119, 251, 74, 26, 154, 112, 130, 130, 40, 70, 209, 22, 230, 160, 73, 247, 205, 80, 72, 48, 71, 51, 254, 104, 39, 125, 191, 2, 26, 29, 15, 151, 35, 77, 121, 106, 183, 99, 35, 134, 107, 94, 35, 240, 91, 22, 7, 29, 164, 4, 69, 200, 16, 35, 194, 57, 28, 55, 2, 26, 29, 10, 101, 126, 138, 51, 41, 188, 86, 56, 48, 29, 237, 166, 97, 41, 44, 29, 17, 31, 119, 146, 8, 210, 210, 12, 63, 89, 84, 2, 26, 29, 98, 77, 35, 240, 26, 205, 10...73, 142, 22, 39, 184, 159, 41, 207, 132, 22, 43, 251, 31, 220, 131, 178, 196, 90, 202, 121, 49, 2, 26, 29, 192, 64, 81, 76, 241, 131, 190, 43, 159, 133, 179, 49, 219, 100, 162, 38, 61, 109, 36, 214, 105, 104, 245, 17, 164, 201, 147, 82, 2, 26, 29, 209, 53, 148, 160, 165, 168, 50, 232, 201, 153, 189, 27, 195, 191, 30, 43, 164, 186, 95, 80, 244, 41, 171, 211, 117, 176, 192, 155, 2, 26, 29, 79, 255, 137, 103, 45, 55, 150, 31, 210, 172, 149, 207, 85, 91, 235, 135, 169, 141, 13, 108, 231, 230, 206, 18, 6, 237, 155, 111, 2, 26, 29, 189, 20, 27, 101, 109, 13, 64, 15, 103, 25, 0, 61, 113, 207, 34, 176, 227, 128, 31, 131, 37, 215, 236, 100, 87, 231, 60, 101, 2, 40, 128, 128, 128, 1, 56, 232, 7, 64, 172, 2, 74, 40, 55, 50, 52, 97, 101, 52, 49, 48, 49, 98, 102, 100, 100, 56, 100, 52, 52, 52, 51, 49, 50, 54, 97, 54, 97, 56, 98, 49, 101, 99, 53, 99, 97, 57, 98, 54, 56, 97, 49, 50, 80, 243, 3, 120, 1, 128, 1, 1, 144, 1, 232, 7, 152, 1, 128, 128, 128, 2, 186, 1, 2, 24, 1, 192, 1, 192, 169, 7] }", +] +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] node_crypto_keys_invariants_check_start +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] node_crypto_keys_invariants_check_success: # of ok nodes: 1449, # of bad nodes: 0, result: Ok(()) +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] high_threshold_public_key_matches_the_one_in_cup_check_start +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] high_threshold_public_key_matches_the_one_in_cup_check_success: # of ok subnets: 47, # of bad subnets: 0, result: Ok(()) +Dec 04 10:10:35.561 WARN s:/n:/ic_messaging/stream_builder No route to canister brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe +Dec 04 10:10:35.562 WARN s:/n:/ic_messaging/stream_builder No route to canister gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe +Dec 04 10:10:35.563 WARN s:/n:/ic_messaging/stream_builder No route to canister w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe +Dec 04 10:10:35.564 WARN s:/n:/ic_messaging/stream_builder No route to canister jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe +2026-01-03 20:35:57.948932921 UTC: [Canister qoctq-giaaa-aaaaa-aaaea-cai] Keeping usd_e8s_per_icp for TVL at 379171142 because of call error: "Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found" +2026-01-03 20:35:57.948932921 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] [cycles] Failed to retrieve rate from exchange rate canister: Code: 3 Message: Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] check_unassigned_nodes_config_invariants +2026-01-03 20:35:56.948932921 UTC: [Canister rwlgt-iiaaa-aaaaa-aaaaa-cai] [Registry] do_change_subnet_membership finished: ChangeSubnetMembershipPayload { subnet_id: brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae, node_ids_add: [33mvi-izcix-iv5ys-fypko-b4fwq-w3uns-s3tbl-5ij6h-qvxsf-nm3gb-fqe], node_ids_remove: [i7zdo-qrk2t-phjla-2unbd-p76z5-eg2m3-yko4n-5dclc-rewwh-t33gv-wae] } +2026-01-03 20:35:58.948932921 UTC: [Canister qoctq-giaaa-aaaaa-aaaea-cai] Updated total_locked_icp_e8s for TVL to 23970716595303576 +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae: ERROR: call rejected: 3 - No route to canister brlsh-zidhj-3yy3e-6vqbz-7xnih-xeq2l-as5oc-g32c4-i5pdn-2wwof-oae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae: ERROR: call rejected: 3 - No route to canister o3ow2-2ipam-6fcjo-3j5vt-fzbge-2g7my-5fz2m-p4o2t-dwlc4-gt2q7-5ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe: ERROR: call rejected: 3 - No route to canister 4ecnw-byqwz-dtgss-ua2mh-pfvs7-c3lct-gtf4e-hnu75-j7eek-iifqm-sqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe: ERROR: call rejected: 3 - No route to canister vcpt7-niq42-6snup-7kcgy-cndz6-srq6n-h6vwi-oswri-a3guc-v5ssd-5qe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae: ERROR: call rejected: 3 - No route to canister opn46-zyspe-hhmyp-4zu6u-7sbrh-dok77-m7dch-im62f-vyimr-a3n2c-4ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe: ERROR: call rejected: 3 - No route to canister lhg73-sax6z-2zank-6oer2-575lz-zgbxx-ptudx-5korm-fy7we-kh4hl-pqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe: ERROR: call rejected: 3 - No route to canister nl6hn-ja4yw-wvmpy-3z2jx-ymc34-pisx3-3cp5z-3oj4a-qzzny-jbsv3-4qe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae: ERROR: call rejected: 3 - No route to canister mkbc3-fzim5-s5pye-pbnzo-uj5yv-raphe-ceecn-ejd6g-5poxm-dzuot-iae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe: ERROR: call rejected: 3 - No route to canister io67a-2jmkw-zup3h-snbwi-g6a5n-rm5dn-b6png-lvdpl-nqnto-yih6l-gqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe: ERROR: call rejected: 3 - No route to canister ejbmu-grnam-gk6ol-6irwa-htwoj-7ihfl-goimw-hlnvh-abms4-47v2e-zqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae: ERROR: call rejected: 3 - No route to canister gmq5v-hbozq-uui6y-o55wc-ihop3-562wb-3qspg-nnijg-npqp5-he3cj-3ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae: ERROR: call rejected: 3 - No route to canister 6pbhf-qzpdk-kuqbr-pklfa-5ehhf-jfjps-zsj6q-57nrl-kzhpd-mu7hc-vae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe: ERROR: call rejected: 3 - No route to canister eq6en-6jqla-fbu5s-daskr-h6hx2-376n5-iqabl-qgrng-gfqmv-n3yjr-mqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae: ERROR: call rejected: 3 - No route to canister pjljw-kztyl-46ud4-ofrj6-nzkhm-3n4nt-wi3jt-ypmav-ijqkt-gjf66-uae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe: ERROR: call rejected: 3 - No route to canister 4zbus-z2bmt-ilreg-xakz4-6tyre-hsqj4-slb4g-zjwqo-snjcc-iqphi-3qe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe: ERROR: call rejected: 3 - No route to canister uzr34-akd3s-xrdag-3ql62-ocgoh-ld2ao-tamcv-54e7j-krwgb-2gm4z-oqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae: ERROR: call rejected: 3 - No route to canister 5kdm2-62fc6-fwnja-hutkz-ycsnm-4z33i-woh43-4cenu-ev7mi-gii6t-4ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae: ERROR: call rejected: 3 - No route to canister pzp6e-ekpqk-3c5x7-2h6so-njoeq-mt45d-h3h6c-q3mxf-vpeq5-fk5o7-yae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe: ERROR: call rejected: 3 - No route to canister e66qm-3cydn-nkf4i-ml4rb-4ro6o-srm5s-x5hwq-hnprz-3meqp-s7vks-5qe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe: ERROR: call rejected: 3 - No route to canister qdvhd-os4o2-zzrdw-xrcv4-gljou-eztdp-bj326-e6jgr-tkhuc-ql6v2-yqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe: ERROR: call rejected: 3 - No route to canister bkfrj-6k62g-dycql-7h53p-atvkj-zg4to-gaogh-netha-ptybj-ntsgw-rqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe: ERROR: call rejected: 3 - No route to canister 2fq7c-slacv-26cgz-vzbx2-2jrcs-5edph-i5s2j-tck77-c3rlz-iobzx-mqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae: ERROR: call rejected: 3 - No route to canister snjp4-xlbw4-mnbog-ddwy6-6ckfd-2w5a2-eipqo-7l436-pxqkh-l6fuv-vae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe: ERROR: call rejected: 3 - No route to canister xlkub-3thlm-uha3c-hqmfw-qykp5-6rldi-hpfxy-nwyxy-w6bbk-tpg5h-vqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe: ERROR: call rejected: 3 - No route to canister shefu-t3kr5-t5q3w-mqmdq-jabyv-vyvtf-cyyey-3kmo4-toyln-emubw-4qe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae: ERROR: call rejected: 3 - No route to canister csyj4-zmann-ys6ge-3kzi6-onexi-obayx-2fvak-zersm-euci4-6pslt-lae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe: ERROR: call rejected: 3 - No route to canister 3hhby-wmtmw-umt4t-7ieyg-bbiig-xiylg-sblrt-voxgt-bqckd-a75bf-rqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe: ERROR: call rejected: 3 - No route to canister k44fs-gm4pv-afozh-rs7zw-cg32n-u7xov-xqyx3-2pw5q-eucnu-cosd4-uqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae: ERROR: call rejected: 3 - No route to canister x33ed-h457x-bsgyx-oqxqf-6pzwv-wkhzr-rm2j3-npodi-purzm-n66cg-gae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe: ERROR: call rejected: 3 - No route to canister yinp6-35cfo-wgcd2-oc4ty-2kqpf-t4dul-rfk33-fsq3r-mfmua-m2ngh-jqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe: ERROR: call rejected: 3 - No route to canister xok3w-cnepj-fg6aa-cjitt-uoxod-4ddsy-nc7dq-zwudz-o6jar-rzstb-gqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae: ERROR: call rejected: 3 - No route to canister w4asl-4nmyj-qnr7c-6cqq4-tkwmt-o26di-iupkq-vx4kt-asbrx-jzuxh-4ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae: ERROR: call rejected: 3 - No route to canister c4isl-65rwf-emhk5-5ta5m-ngl73-rgrl3-tcc56-2hkja-4erqd-iivmy-7ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae: ERROR: call rejected: 3 - No route to canister rtvil-s5u5d-jbj7o-prlhw-bzlr5-3j5kn-2iu7a-jq2hl-avkhn-w7oa7-6ae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae: ERROR: call rejected: 3 - No route to canister mpubz-g52jc-grhjo-5oze5-qcj74-sex34-omprz-ivnsm-qvvhr-rfzpv-vae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae: ERROR: call rejected: 3 - No route to canister fuqsr-in2lc-zbcjj-ydmcw-pzq7h-4xm2z-pto4i-dcyee-5z4rz-x63ji-nae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe: ERROR: call rejected: 3 - No route to canister w4rem-dv5e3-widiz-wbpea-kbttk-mnzfm-tzrc7-svcj3-kbxyb-zamch-hqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae: ERROR: call rejected: 3 - No route to canister cv73p-6v7zi-u67oy-7jc3h-qspsz-g5lrj-4fn7k-xrax3-thek2-sl46v-jae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe: ERROR: call rejected: 3 - No route to canister pae4o-o6dxf-xki7q-ezclx-znyd6-fnk6w-vkv5z-5lfwh-xym2i-otrrw-fqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Successfully updated subnet tdb26-jop6k-aogll-7ltgs-eruif-6kk7m-qpktf-gdiqx-mxtrf-vb5e6-eqe metrics for date: 2025-12-04 +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae: ERROR: call rejected: 3 - No route to canister 2zs4v-uoqha-xsuun-lveyr-i4ktc-5y3ju-aysud-niobd-gxnqa-ctqem-hae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae: ERROR: call rejected: 3 - No route to canister 6excn-doq5g-bmrxd-3774i-hjnn2-3ovbo-xjwz7-3yozt-fsbzx-bethy-bae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae: ERROR: call rejected: 3 - No route to canister qxesv-zoxpm-vc64m-zxguk-5sj74-35vrb-tbgwg-pcird-5gr26-62oxl-cae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe: ERROR: call rejected: 3 - No route to canister 4utr6-xo2fz-v7fsb-t3wsg-k7sfl-cj2ba-ghdnd-kcrfo-xavdb-ebean-mqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae: ERROR: call rejected: 3 - No route to canister kp5jj-kpgmn-f4ohx-uqot6-wtbbr-lmtqv-kpkaf-gcksv-snkwm-43kmy-iae +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe: ERROR: call rejected: 3 - No route to canister lspz2-jx4pu-k3e7p-znm7j-q4yum-ork6e-6w4q6-pijwq-znehu-4jabe-kqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Error fetching metrics for subnet jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe: ERROR: call rejected: 3 - No route to canister jtdsg-3h6gi-hs7o5-z2soi-43w3z-soyl3-ajnp3-ekni5-sw553-5kw67-nqe +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Failed to sync subnets metrics: "Failed to update metrics" +2026-01-03 20:35:58.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Failed to get node providers rewards: "Metrics and registry are not synced up to to_date" +2026-01-03 20:35:58.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Execution of proposal: 139595 succeeded. (Proposal title: Some("Replace a node in subnet brlsh")) +2026-01-03 20:36:01.948932921 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] [cycles] Failed to retrieve rate from exchange rate canister: Code: 3 Message: Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found +2026-01-03 20:36:01.948932921 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] Topping up canister qvhpv-4qaaa-aaaaa-aaagq-cai by 11_294_941_739_155_512 cycles. +2026-01-03 20:35:58.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 193400162364044388 }, subaccount: Subaccount([47, 167, 159, 118, 44, 154, 185, 85, 238, 215, 117, 222, 128, 12, 110, 44, 170, 239, 33, 79, 226, 122, 217, 192, 134, 239, 70, 109, 66, 32, 166, 160]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958500 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353700, spawn_at_timestamp_seconds: Some(1764958500), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498737, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353700, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:03.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:36:03.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:36:03.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 193400162364044388 }, subaccount: Subaccount([47, 167, 159, 118, 44, 154, 185, 85, 238, 215, 117, 222, 128, 12, 110, 44, 170, 239, 33, 79, 226, 122, 217, 192, 134, 239, 70, 109, 66, 32, 166, 160]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958500 }, hot_keys: [], cached_neuron_stake_e8s: 1113934932, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353700, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353700, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:03.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 274572454908864836 }, subaccount: Subaccount([93, 150, 212, 150, 131, 36, 72, 135, 63, 69, 72, 234, 129, 194, 168, 26, 1, 156, 208, 252, 121, 220, 146, 71, 23, 56, 78, 49, 44, 101, 176, 191]), controller: 7cafz-uwdpw-en3gi-a74zs-gism4-w4w6j-sq7qa-g5sav-ded3g-mcxvj-qqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765341613 }, hot_keys: [rty5q-wzjq2-vpmcu-uz23y-6xoxk-2dbma-zqj2y-rgyxq-za7fd-cmnxw-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764736813, spawn_at_timestamp_seconds: Some(1765341613), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 5853694535, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764736813, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:04.948932921 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] Burning of 4107.55027244 Token ICPTs from subaccount 0a000000000000000d0101000000000000000000000000000000000000000000 done in block 31450823. +2026-01-03 20:36:04.948932921 UTC: [Canister qvhpv-4qaaa-aaaaa-aaagq-cai] SRC gained 11294941739155512 cycles from the locked ICP. +2026-01-03 20:36:05.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 274572454908864836 }, subaccount: Subaccount([93, 150, 212, 150, 131, 36, 72, 135, 63, 69, 72, 234, 129, 194, 168, 26, 1, 156, 208, 252, 121, 220, 146, 71, 23, 56, 78, 49, 44, 101, 176, 191]), controller: 7cafz-uwdpw-en3gi-a74zs-gism4-w4w6j-sq7qa-g5sav-ded3g-mcxvj-qqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765341613 }, hot_keys: [rty5q-wzjq2-vpmcu-uz23y-6xoxk-2dbma-zqj2y-rgyxq-za7fd-cmnxw-4ae], cached_neuron_stake_e8s: 6108330247, neuron_fees_e8s: 0, created_timestamp_seconds: 1764736813, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764736813, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:05.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 299450003366524607 }, subaccount: Subaccount([1, 237, 113, 151, 31, 170, 72, 30, 49, 230, 210, 221, 5, 154, 196, 169, 76, 57, 173, 252, 64, 216, 7, 143, 69, 218, 105, 202, 6, 154, 60, 85]), controller: rnuug-wvkwa-wfbo6-nbrfj-k6kyf-kr5el-5hy3v-ansfe-3l2r7-atcyh-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765400081 }, hot_keys: [keuu2-xgfz2-n4646-k65t5-gqvel-3kws4-ki3e5-gsrt4-4xoyi-2rsho-eae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764795281, spawn_at_timestamp_seconds: Some(1765400081), followees: {2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 28 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 945197917, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764795281, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:08.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 299450003366524607 }, subaccount: Subaccount([1, 237, 113, 151, 31, 170, 72, 30, 49, 230, 210, 221, 5, 154, 196, 169, 76, 57, 173, 252, 64, 216, 7, 143, 69, 218, 105, 202, 6, 154, 60, 85]), controller: rnuug-wvkwa-wfbo6-nbrfj-k6kyf-kr5el-5hy3v-ansfe-3l2r7-atcyh-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765400081 }, hot_keys: [keuu2-xgfz2-n4646-k65t5-gqvel-3kws4-ki3e5-gsrt4-4xoyi-2rsho-eae], cached_neuron_stake_e8s: 986314026, neuron_fees_e8s: 0, created_timestamp_seconds: 1764795281, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 28 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764795281, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:08.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 331031870797549056 }, subaccount: Subaccount([254, 209, 252, 165, 139, 200, 126, 45, 149, 150, 195, 28, 110, 18, 181, 137, 209, 150, 197, 135, 144, 244, 55, 91, 136, 230, 68, 109, 128, 225, 6, 139]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958217 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353417, spawn_at_timestamp_seconds: Some(1764958217), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499937, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353417, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:11.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:36:11.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:36:11.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 331031870797549056 }, subaccount: Subaccount([254, 209, 252, 165, 139, 200, 126, 45, 149, 150, 195, 28, 110, 18, 181, 137, 209, 150, 197, 135, 144, 244, 55, 91, 136, 230, 68, 109, 128, 225, 6, 139]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958217 }, hot_keys: [], cached_neuron_stake_e8s: 1113936184, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353417, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353417, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:11.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 371433751273726314 }, subaccount: Subaccount([2, 232, 24, 66, 67, 234, 106, 35, 169, 6, 73, 113, 147, 237, 183, 125, 109, 63, 166, 246, 0, 154, 250, 176, 27, 216, 121, 132, 153, 179, 27, 0]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218133 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613333, spawn_at_timestamp_seconds: Some(1765218133), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696827, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613333, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:14.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [ic-cdk-timers] canister_global_timer: too many concurrent calls for single timer (5), rescheduling for next possible execution time +2026-01-03 20:36:14.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 371433751273726314 }, subaccount: Subaccount([2, 232, 24, 66, 67, 234, 106, 35, 169, 6, 73, 113, 147, 237, 183, 125, 109, 63, 166, 246, 0, 154, 250, 176, 27, 216, 121, 132, 153, 179, 27, 0]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218133 }, hot_keys: [], cached_neuron_stake_e8s: 667523638, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613333, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613333, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:14.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 379263095548634361 }, subaccount: Subaccount([87, 95, 111, 183, 71, 205, 29, 129, 197, 221, 117, 0, 122, 232, 48, 83, 183, 15, 189, 2, 11, 225, 30, 243, 15, 228, 174, 216, 35, 213, 240, 34]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302368 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697568, spawn_at_timestamp_seconds: Some(1765302368), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 16382913431, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697568, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 379263095548634361 }, subaccount: Subaccount([87, 95, 111, 183, 71, 205, 29, 129, 197, 221, 117, 0, 122, 232, 48, 83, 183, 15, 189, 2, 11, 225, 30, 243, 15, 228, 174, 216, 35, 213, 240, 34]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302368 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 17095570165, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697568, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697568, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 388458233700387457 }, subaccount: Subaccount([5, 170, 186, 117, 242, 25, 194, 247, 193, 157, 19, 232, 2, 25, 142, 114, 68, 231, 114, 28, 215, 247, 29, 242, 124, 135, 124, 148, 28, 186, 67, 93]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957917 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353117, spawn_at_timestamp_seconds: Some(1764957917), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500475, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353117, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Another mint_monthly_node_provider_rewards call (started at 1767472577 seconds since the UNIX epoch) is already in progress. +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Running GC now at timestamp 1767472577 seconds +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ProtocolCanisterManagement max 100 current 101 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic Governance max 100 current 100 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic SubnetManagement max 100 current 100 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ParticipantManagement max 100 current 39 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ServiceNervousSystemManagement max 100 current 50 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NodeAdmin max 100 current 65 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ApplicationCanisterManagement max 100 current 89 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic IcOsVersionDeployment max 100 current 100 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NetworkEconomics max 100 current 2 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic NeuronManagement max 100 current 100 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic Kyc max 100 current 22 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic IcOsVersionElection max 100 current 68 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] GC - topic ApiBoundaryNodeManagement max 100 current 4 +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] distribute_voting_rewards_to_neurons. Supply: Tokens { e8s: 64149332832089975 } +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] More than one reward round (i.e. days) has passed since the last RewardEvent. This could mean that rewards are being rolled over, or earlier rounds were missed. It is now 1699 full days since IC genesis, and the last distribution nominally happened at 1668 full days since IC genesis. +2026-01-03 20:36:17.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] distributing voting rewards for the following proposals: 139581, 139582, 139583, 139584, 139585, 139586, 139587, 139588, 139589, 139590, 139591, 139592, 139593, 139594, 139595, 139596, 139597, 139598, 139599, 139600, 139601, 139602, 139603, 139604, 139605, 139606, 139607, 139608, 139609, 139610, 139611, 139612, 139613, 139614, 139615, 139616, 139617, 139618, 139619, 139620, 139621, 139622, 139623, 139624, 139625, 139626, 139627, 139628, 139629, 139630, 139631, 139632, 139633, 139634, 139635, 139636, 139637, 139638, 139639, 139640, 139641, 139642, 139643, 139644, 139645, 139646, 139647, 139648, 139649, 139650, 139651, 139652, 139653, 139654 +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 388458233700387457 }, subaccount: Subaccount([5, 170, 186, 117, 242, 25, 194, 247, 193, 157, 19, 232, 2, 25, 142, 114, 68, 231, 114, 28, 215, 247, 29, 242, 124, 135, 124, 148, 28, 186, 67, 93]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957917 }, hot_keys: [], cached_neuron_stake_e8s: 1113936745, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353117, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353117, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 448179776876513168 }, subaccount: Subaccount([203, 242, 51, 125, 137, 191, 79, 225, 220, 92, 23, 214, 202, 89, 12, 97, 220, 188, 96, 60, 165, 243, 79, 68, 173, 118, 61, 194, 225, 164, 231, 138]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217390 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612590, spawn_at_timestamp_seconds: Some(1765217390), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695690, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612590, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Registry version local 55243 < remote 55244 +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 448179776876513168 }, subaccount: Subaccount([203, 242, 51, 125, 137, 191, 79, 225, 220, 92, 23, 214, 202, 89, 12, 97, 220, 188, 96, 60, 165, 243, 79, 68, 173, 118, 61, 194, 225, 164, 231, 138]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217390 }, hot_keys: [], cached_neuron_stake_e8s: 667522452, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612590, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612590, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 532908164516146189 }, subaccount: Subaccount([22, 220, 75, 132, 32, 12, 242, 100, 112, 207, 23, 100, 215, 56, 192, 175, 11, 255, 24, 52, 35, 5, 171, 44, 3, 81, 246, 167, 228, 171, 115, 86]), controller: dqx3d-xok42-johuk-6e4lg-cwvli-b7hgj-2ymjk-ed3yy-outnq-zgk2c-fqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765210502 }, hot_keys: [yqhm7-vp3jj-urjeb-swfbo-tpbjq-brhku-3scpk-zff43-ktqfr-seowm-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764605702, spawn_at_timestamp_seconds: Some(1765210502), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 268174282, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764605702, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 532908164516146189 }, subaccount: Subaccount([22, 220, 75, 132, 32, 12, 242, 100, 112, 207, 23, 100, 215, 56, 192, 175, 11, 255, 24, 52, 35, 5, 171, 44, 3, 81, 246, 167, 228, 171, 115, 86]), controller: dqx3d-xok42-johuk-6e4lg-cwvli-b7hgj-2ymjk-ed3yy-outnq-zgk2c-fqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765210502 }, hot_keys: [yqhm7-vp3jj-urjeb-swfbo-tpbjq-brhku-3scpk-zff43-ktqfr-seowm-lqe], cached_neuron_stake_e8s: 279839863, neuron_fees_e8s: 0, created_timestamp_seconds: 1764605702, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764605702, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 687759068234458157 }, subaccount: Subaccount([65, 157, 217, 138, 211, 107, 71, 153, 88, 107, 23, 45, 104, 119, 84, 74, 98, 195, 65, 90, 252, 6, 231, 207, 144, 105, 55, 129, 35, 166, 207, 104]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957954 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353154, spawn_at_timestamp_seconds: Some(1764957954), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499237, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353154, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Local Registry version 55244 is up to date +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2aemz-63apz-bds45-nypax-oj52g-fyl6i-sjhtv-ysu5t-hqvve-ygtcr-yae NodeOperator { node_operator_principal_id: 2aemz-63apz-bds45-nypax-oj52g-fyl6i-sjhtv-ysu5t-hqvve-ygtcr-yae, node_allowance: 0, node_provider_principal_id: optdi-nwa4m-hly3k-6ua4n-sqyxf-yahvb-wps77-ddayn-r7zcz-edla5-7qe, dc_id: ct1, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in ct1 DC: rewarded 23106250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in ct1 DC: rewarded 21950937 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in ct1 DC: rewarded 20853390 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in ct1 DC: rewarded 19810721 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in ct1 DC: rewarded 18820185 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in ct1 DC: rewarded 17879175 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in ct1 DC: reward 122420658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2mie5-aobqb-l2gvy-2or7x-di7cx-3xoij-ifiej-zqxlm-hzn6s-lp2ih-kqe NodeOperator { node_operator_principal_id: 2mie5-aobqb-l2gvy-2or7x-di7cx-3xoij-ifiej-zqxlm-hzn6s-lp2ih-kqe, node_allowance: 1, node_provider_principal_id: f5kd2-ylls6-e6cts-6exqp-pwra3-djn2g-lnvbi-a3qs6-cfdr6-ti5dw-qqe, dc_id: ne1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2psns-jgqpk-xogog-amfsv-ztyvo-6aa5k-i367z-fshvy-6kxud-5bycv-sqe NodeOperator { node_operator_principal_id: 2psns-jgqpk-xogog-amfsv-ztyvo-6aa5k-i367z-fshvy-6kxud-5bycv-sqe, node_allowance: 23, node_provider_principal_id: izmhk-lpjum-uo4oy-lviba-yctpc-arg4b-2ywim-vgoiu-gqaj2-gskmw-2qe, dc_id: ph1, rewardable_nodes: {"type1.1": 7}, ipv6: None, max_rewardable_nodes: {"type1.1": 7} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 7 type1.1 nodes in ph1 DC: reward 70280000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe NodeOperator { node_operator_principal_id: 2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe, node_allowance: 25, node_provider_principal_id: wwdbq-xuqhf-eydzu-oyl7p-ga565-zm7s7-yrive-ozgsy-zzgh3-qwb3j-cae, dc_id: or1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in or1 DC: reward 300160000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2rzvs-dyynq-3chdr-svjev-vdotj-blgs2-yrxfu-jbpm4-wzzht-zirb4-mqe NodeOperator { node_operator_principal_id: 2rzvs-dyynq-3chdr-svjev-vdotj-blgs2-yrxfu-jbpm4-wzzht-zirb4-mqe, node_allowance: 2, node_provider_principal_id: unqqg-no4b2-vbyad-ytik2-t3vly-3e57q-aje2t-sjb5l-bd4ke-chggn-uqe, dc_id: jb1, rewardable_nodes: {"type3": 6}, ipv6: None, max_rewardable_nodes: {"type3": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3 node in jb1 DC: rewarded 27491250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3 node in jb1 DC: rewarded 26941425 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3 node in jb1 DC: rewarded 26402596 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3 node in jb1 DC: rewarded 25874544 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3 node in jb1 DC: rewarded 25357053 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3 node in jb1 DC: rewarded 24849912 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3 nodes in jb1 DC: reward 156916780 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:2w62i-dpc35-jark3-6jewa-kaxls-3v3hb-s6ksu-znlnf-2mfwp-q57ms-uae NodeOperator { node_operator_principal_id: 2w62i-dpc35-jark3-6jewa-kaxls-3v3hb-s6ksu-znlnf-2mfwp-q57ms-uae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: wa2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in wa2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in wa2 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:3bohy-zygmq-6novb-wm65r-3k3y2-deh42-7emld-zhqo7-xl2oa-iextm-fae NodeOperator { node_operator_principal_id: 3bohy-zygmq-6novb-wm65r-3k3y2-deh42-7emld-zhqo7-xl2oa-iextm-fae, node_allowance: 0, node_provider_principal_id: nmdd6-rouxw-55leh-wcbkn-kejit-njvje-p4s6e-v64d3-nlbjb-vipul-mae, dc_id: jb2, rewardable_nodes: {"type3.1": 12}, ipv6: None, max_rewardable_nodes: {"type3.1": 12} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/12 type3.1 node in jb2 DC: rewarded 23106250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/12 type3.1 node in jb2 DC: rewarded 21950937 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/12 type3.1 node in jb2 DC: rewarded 20853390 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/12 type3.1 node in jb2 DC: rewarded 19810721 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/12 type3.1 node in jb2 DC: rewarded 18820185 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/12 type3.1 node in jb2 DC: rewarded 17879175 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/12 type3.1 node in jb2 DC: rewarded 16985216 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/12 type3.1 node in jb2 DC: rewarded 16135956 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/12 type3.1 node in jb2 DC: rewarded 15329158 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/12 type3.1 node in jb2 DC: rewarded 14562700 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/12 type3.1 node in jb2 DC: rewarded 13834565 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/12 type3.1 node in jb2 DC: rewarded 13142837 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 12 type3.1 nodes in jb2 DC: reward 212411090 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe NodeOperator { node_operator_principal_id: ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe, node_allowance: 37, node_provider_principal_id: wdnqm-clqti-im5yf-iapio-avjom-kyppl-xuiza-oaz6z-smmts-52wyg-5ae, dc_id: fr2, rewardable_nodes: {"type1.1": 19}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 19 type1.1 nodes in fr2 DC: reward 201590000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:3pvkg-yll72-7bgau-ifrdj-5hfoz-qurfj-vvl2l-6ztjm-rdbg2-56al6-cqe NodeOperator { node_operator_principal_id: 3pvkg-yll72-7bgau-ifrdj-5hfoz-qurfj-vvl2l-6ztjm-rdbg2-56al6-cqe, node_allowance: 1, node_provider_principal_id: c3i3u-4ot4i-zino3-jrxre-7s426-dk2th-cvino-nznco-lkbpn-vl5of-4qe, dc_id: gr1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:3sm7v-xy7wb-u52om-cq3td-wboo7-aj4fi-dqnam-jahlz-swqib-ynipm-mqe NodeOperator { node_operator_principal_id: 3sm7v-xy7wb-u52om-cq3td-wboo7-aj4fi-dqnam-jahlz-swqib-ynipm-mqe, node_allowance: 0, node_provider_principal_id: kos24-5xact-6aror-uofg2-tnvt6-dq3bk-c2c5z-jtptt-jbqvc-lmegy-qae, dc_id: zg1, rewardable_nodes: {"type3.1": 4}, ipv6: None, max_rewardable_nodes: {"type3.1": 4} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/4 type3.1 node in zg1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/4 type3.1 node in zg1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/4 type3.1 node in zg1 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/4 type3.1 node in zg1 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 4 type3.1 nodes in zg1 DC: reward 57187722 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:3xiew-2wo3x-tnbn2-o7kok-wwsnw-7koo2-gna5r-rlrt3-zotsh-dwpg6-kae NodeOperator { node_operator_principal_id: 3xiew-2wo3x-tnbn2-o7kok-wwsnw-7koo2-gna5r-rlrt3-zotsh-dwpg6-kae, node_allowance: 14, node_provider_principal_id: wdjjk-blh44-lxm74-ojj43-rvgf4-j5rie-nm6xs-xvnuv-j3ptn-25t4v-6ae, dc_id: mb1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in mb1 DC: reward 161280000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:4isre-d3zxy-xpque-tagdf-xdzjp-hk7x3-szquu-kuwej-52cfy-f6jwc-zqe NodeOperator { node_operator_principal_id: 4isre-d3zxy-xpque-tagdf-xdzjp-hk7x3-szquu-kuwej-52cfy-f6jwc-zqe, node_allowance: 1, node_provider_principal_id: rpfvr-s3kuw-xdqrr-pvuuj-hc7hl-olytw-yxlie-fmr74-sr572-6gdqx-iqe, dc_id: im1, rewardable_nodes: {"type1.1": 42}, ipv6: None, max_rewardable_nodes: {"type1.1": 42} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 42 type1.1 nodes in im1 DC: reward 569940000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:4kxqv-qnvww-t2rou-ctvaj-5cqqy-y2iyo-dbmqv-wsm36-t2q3k-nbep3-uqe NodeOperator { node_operator_principal_id: 4kxqv-qnvww-t2rou-ctvaj-5cqqy-y2iyo-dbmqv-wsm36-t2q3k-nbep3-uqe, node_allowance: 12, node_provider_principal_id: izmhk-lpjum-uo4oy-lviba-yctpc-arg4b-2ywim-vgoiu-gqaj2-gskmw-2qe, dc_id: st1, rewardable_nodes: {"type1.1": 2}, ipv6: None, max_rewardable_nodes: {"type1.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type1.1 nodes in st1 DC: reward 20080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:4lbqo-vgpoe-kemak-voout-777uo-kk74n-fnct3-pc4eg-3txi3-7cghf-rqe NodeOperator { node_operator_principal_id: 4lbqo-vgpoe-kemak-voout-777uo-kk74n-fnct3-pc4eg-3txi3-7cghf-rqe, node_allowance: 1, node_provider_principal_id: 4fedi-eu6ue-nd7ts-vnof5-hzg66-hgzl7-liy5n-3otyp-h7ipw-owycg-uae, dc_id: hk3, rewardable_nodes: {"type3.1": 5}, ipv6: None, max_rewardable_nodes: {"type3.1": 5} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/5 type3.1 node in hk3 DC: rewarded 19225417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/5 type3.1 node in hk3 DC: rewarded 18264146 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/5 type3.1 node in hk3 DC: rewarded 17350938 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/5 type3.1 node in hk3 DC: rewarded 16483391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/5 type3.1 node in hk3 DC: rewarded 15659222 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 5 type3.1 nodes in hk3 DC: reward 86983114 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:4lp6i-khv7q-lkgk3-hhrc6-ysjag-korh7-ysojw-7gv3h-glhdz-rpjrt-sqe NodeOperator { node_operator_principal_id: 4lp6i-khv7q-lkgk3-hhrc6-ysjag-korh7-ysojw-7gv3h-glhdz-rpjrt-sqe, node_allowance: 0, node_provider_principal_id: 7at4h-nhtvt-a4s55-jigss-wr2ha-ysxkn-e6w7x-7ggnm-qd3d5-ry66r-cae, dc_id: to2, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in to2 DC: reward 304640000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5atxd-q4jom-dtpxr-awd3p-e562x-hpavj-godtj-g6vmz-of2c6-ildhh-fae NodeOperator { node_operator_principal_id: 5atxd-q4jom-dtpxr-awd3p-e562x-hpavj-godtj-g6vmz-of2c6-ildhh-fae, node_allowance: 0, node_provider_principal_id: 7ryes-jnj73-bsyu4-lo6h7-lbxk5-x4ien-lylws-5qwzl-hxd5f-xjh3w-mqe, dc_id: ge2, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in ge2 DC: reward 318080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5bnm2-ul7nx-s2xfc-3mzzu-2yfyz-lu2xp-65epq-43o3y-qs7y3-jv2uc-yae NodeOperator { node_operator_principal_id: 5bnm2-ul7nx-s2xfc-3mzzu-2yfyz-lu2xp-65epq-43o3y-qs7y3-jv2uc-yae, node_allowance: 7, node_provider_principal_id: izmhk-lpjum-uo4oy-lviba-yctpc-arg4b-2ywim-vgoiu-gqaj2-gskmw-2qe, dc_id: ph1, rewardable_nodes: {"type1.1": 21}, ipv6: None, max_rewardable_nodes: {"type1.1": 21} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 21 type1.1 nodes in ph1 DC: reward 210840000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5dwhe-vpbuf-zz5ml-ylu6k-7y2z2-36ywv-5e4wf-advxd-3endk-icvg4-cae NodeOperator { node_operator_principal_id: 5dwhe-vpbuf-zz5ml-ylu6k-7y2z2-36ywv-5e4wf-advxd-3endk-icvg4-cae, node_allowance: 0, node_provider_principal_id: 64xe5-tx2s3-4gjmj-pnozr-fejw2-77y5y-rhcjk-glnmx-62brf-qin5q-pqe, dc_id: kr2, rewardable_nodes: {"type3.1": 10}, ipv6: None, max_rewardable_nodes: {"type3.1": 10} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/10 type3.1 node in kr2 DC: rewarded 21572292 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/10 type3.1 node in kr2 DC: rewarded 20493677 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/10 type3.1 node in kr2 DC: rewarded 19468993 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/10 type3.1 node in kr2 DC: rewarded 18495543 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/10 type3.1 node in kr2 DC: rewarded 17570766 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/10 type3.1 node in kr2 DC: rewarded 16692228 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/10 type3.1 node in kr2 DC: rewarded 15857616 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/10 type3.1 node in kr2 DC: rewarded 15064736 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/10 type3.1 node in kr2 DC: rewarded 14311499 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/10 type3.1 node in kr2 DC: rewarded 13595924 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 10 type3.1 nodes in kr2 DC: reward 173123274 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5of43-k6u44-qnx76-nu2es-wm4vv-lidb2-4uveq-j6f62-iiagz-kaafq-gae NodeOperator { node_operator_principal_id: 5of43-k6u44-qnx76-nu2es-wm4vv-lidb2-4uveq-j6f62-iiagz-kaafq-gae, node_allowance: 0, node_provider_principal_id: dnpkk-x67ir-zwcyz-fkgzz-547t7-papxf-zby5t-i2log-uodsf-pcizd-jae, dc_id: ty2, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in ty2 DC: reward 332640000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5p6xp-glfoz-fgh6d-4rx7e-hix7t-c4vcp-u2xhn-gv4mm-fkozw-6mntb-7qe NodeOperator { node_operator_principal_id: 5p6xp-glfoz-fgh6d-4rx7e-hix7t-c4vcp-u2xhn-gv4mm-fkozw-6mntb-7qe, node_allowance: 0, node_provider_principal_id: s5nvr-ipdxf-xg6wd-ofacm-7tl4i-nwjzx-uulum-cugwb-kbpsa-wrsgs-cae, dc_id: ar1, rewardable_nodes: {"type3.1": 4}, ipv6: None, max_rewardable_nodes: {"type3.1": 4} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/4 type3.1 node in ar1 DC: rewarded 23939583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/4 type3.1 node in ar1 DC: rewarded 22742603 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/4 type3.1 node in ar1 DC: rewarded 21605473 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/4 type3.1 node in ar1 DC: rewarded 20525199 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 4 type3.1 nodes in ar1 DC: reward 88812858 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5syyj-syqbw-ubz3m-f4lkg-u7v2j-madhv-3s4vx-yl67f-bets5-xmrbf-zae NodeOperator { node_operator_principal_id: 5syyj-syqbw-ubz3m-f4lkg-u7v2j-madhv-3s4vx-yl67f-bets5-xmrbf-zae, node_allowance: 0, node_provider_principal_id: sma3p-ivkif-hz7nu-ngmvq-ibnjg-nubke-zf6gh-wbnfc-2dlng-l3die-zqe, dc_id: at2, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in at2 DC: reward 150080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:5xayl-wn77t-4xafn-4fvvm-2ibo2-jdbqj-7au4o-ewjwn-fzrzm-tp3uu-vqe NodeOperator { node_operator_principal_id: 5xayl-wn77t-4xafn-4fvvm-2ibo2-jdbqj-7au4o-ewjwn-fzrzm-tp3uu-vqe, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: rg1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in rg1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in rg1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:6hl6v-hhywj-4glb3-pptvl-tb2xq-l324t-hp3xt-buhuc-f4u5y-ig2js-yqe NodeOperator { node_operator_principal_id: 6hl6v-hhywj-4glb3-pptvl-tb2xq-l324t-hp3xt-buhuc-f4u5y-ig2js-yqe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: pa2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in pa2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in pa2 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:6jel7-zolww-jy5ha-bwkva-fv5dx-nkolq-scb63-azu3w-ne3rr-ite7s-sae NodeOperator { node_operator_principal_id: 6jel7-zolww-jy5ha-bwkva-fv5dx-nkolq-scb63-azu3w-ne3rr-ite7s-sae, node_allowance: 0, node_provider_principal_id: fwnmn-zn7yt-5jaia-fkxlr-dzwyu-keguq-npfxq-mc72w-exeae-n5thj-oae, dc_id: sc1, rewardable_nodes: {"type3.1": 3}, ipv6: None, max_rewardable_nodes: {"type3.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/3 type3.1 node in sc1 DC: rewarded 19583333 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/3 type3.1 node in sc1 DC: rewarded 18604166 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/3 type3.1 node in sc1 DC: rewarded 17673958 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 3 type3.1 nodes in sc1 DC: reward 55861457 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:6jyzv-q6o4l-6mlhe-viw3a-gpj62-vnklh-jgpbb-esejf-xp27x-eql5q-wqe NodeOperator { node_operator_principal_id: 6jyzv-q6o4l-6mlhe-viw3a-gpj62-vnklh-jgpbb-esejf-xp27x-eql5q-wqe, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: pa1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in pa1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in pa1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:6oxlv-umuxh-6cvbh-ldske-gafq4-5bcq4-4dfow-x7ytv-szjd2-jr3vr-oae NodeOperator { node_operator_principal_id: 6oxlv-umuxh-6cvbh-ldske-gafq4-5bcq4-4dfow-x7ytv-szjd2-jr3vr-oae, node_allowance: 28, node_provider_principal_id: 7at4h-nhtvt-a4s55-jigss-wr2ha-ysxkn-e6w7x-7ggnm-qd3d5-ry66r-cae, dc_id: to1, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in to1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in to1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:6zkgt-w7agd-kpvte-mia3x-sxucz-u2r7k-vfphb-tyhvv-i6hsm-h2ueo-uqe NodeOperator { node_operator_principal_id: 6zkgt-w7agd-kpvte-mia3x-sxucz-u2r7k-vfphb-tyhvv-i6hsm-h2ueo-uqe, node_allowance: 0, node_provider_principal_id: w4buy-lgwzr-pccs7-huzhh-qqnws-rns75-iaoox-jolrm-xs2ra-vdu3o-2qe, dc_id: es1, rewardable_nodes: {"type3.1": 8}, ipv6: None, max_rewardable_nodes: {"type3.1": 8} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/8 type3.1 node in es1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/8 type3.1 node in es1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/8 type3.1 node in es1 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/8 type3.1 node in es1 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/8 type3.1 node in es1 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/8 type3.1 node in es1 DC: rewarded 11927833 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/8 type3.1 node in es1 DC: rewarded 11331441 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/8 type3.1 node in es1 DC: rewarded 10764869 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 8 type3.1 nodes in es1 DC: reward 103767478 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:74vhn-m7sov-ufexz-rjuzq-hgidx-jls6i-xufww-phun6-s4alk-mt3ha-5qe NodeOperator { node_operator_principal_id: 74vhn-m7sov-ufexz-rjuzq-hgidx-jls6i-xufww-phun6-s4alk-mt3ha-5qe, node_allowance: 0, node_provider_principal_id: otzuu-dldzs-avvu2-qwowd-hdj73-aocy7-lacgi-carzj-m6f2r-ffluy-fae, dc_id: bg1, rewardable_nodes: {"type3.1": 4}, ipv6: None, max_rewardable_nodes: {"type3.1": 4} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/4 type3.1 node in bg1 DC: rewarded 23939583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/4 type3.1 node in bg1 DC: rewarded 22742603 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/4 type3.1 node in bg1 DC: rewarded 21605473 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/4 type3.1 node in bg1 DC: rewarded 20525199 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 4 type3.1 nodes in bg1 DC: reward 88812858 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:7ldwr-vrnjp-p23uh-6czzq-7qp4h-qhvw2-c2by5-3jpqm-4nuu3-vx5dz-fae NodeOperator { node_operator_principal_id: 7ldwr-vrnjp-p23uh-6czzq-7qp4h-qhvw2-c2by5-3jpqm-4nuu3-vx5dz-fae, node_allowance: 13, node_provider_principal_id: sixix-2nyqd-t2k2v-vlsyz-dssko-ls4hl-hyij4-y7mdp-ja6cj-nsmpf-yae, dc_id: ty3, rewardable_nodes: {"type1.1": 9}, ipv6: None, max_rewardable_nodes: {"type1.1": 10} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 9 type1.1 nodes in ty3 DC: reward 106920000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:7mdax-eg2jn-ohw2m-ku4rv-of3nm-4kqs2-3azta-6xwvu-f6fsh-5ehqq-gae NodeOperator { node_operator_principal_id: 7mdax-eg2jn-ohw2m-ku4rv-of3nm-4kqs2-3azta-6xwvu-f6fsh-5ehqq-gae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: rg1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in rg1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in rg1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:7rw6b-6r7qv-al3uk-rimg7-ifkjv-hettz-lhmly-t55g7-xrwac-25ayy-wae NodeOperator { node_operator_principal_id: 7rw6b-6r7qv-al3uk-rimg7-ifkjv-hettz-lhmly-t55g7-xrwac-25ayy-wae, node_allowance: 0, node_provider_principal_id: zy4m7-z5mhs-zfkpl-zlsjl-blrbx-mvvmq-5z4zu-mf7eq-hhv7o-ezfro-3ae, dc_id: pl2, rewardable_nodes: {"type3.1": 15}, ipv6: None, max_rewardable_nodes: {"type3.1": 15} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/15 type3.1 node in pl2 DC: rewarded 20990417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/15 type3.1 node in pl2 DC: rewarded 19940896 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/15 type3.1 node in pl2 DC: rewarded 18943851 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/15 type3.1 node in pl2 DC: rewarded 17996658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/15 type3.1 node in pl2 DC: rewarded 17096825 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/15 type3.1 node in pl2 DC: rewarded 16241984 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/15 type3.1 node in pl2 DC: rewarded 15429885 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/15 type3.1 node in pl2 DC: rewarded 14658391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/15 type3.1 node in pl2 DC: rewarded 13925471 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/15 type3.1 node in pl2 DC: rewarded 13229197 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/15 type3.1 node in pl2 DC: rewarded 12567738 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/15 type3.1 node in pl2 DC: rewarded 11939351 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 12/15 type3.1 node in pl2 DC: rewarded 11342383 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 13/15 type3.1 node in pl2 DC: rewarded 10775264 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 14/15 type3.1 node in pl2 DC: rewarded 10236501 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 15 type3.1 nodes in pl2 DC: reward 225314812 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:7v3fg-puvon-km4rh-gnvqw-pmlug-5iaen-s3v45-kwowl-etrtl-xc245-qqe NodeOperator { node_operator_principal_id: 7v3fg-puvon-km4rh-gnvqw-pmlug-5iaen-s3v45-kwowl-etrtl-xc245-qqe, node_allowance: 1, node_provider_principal_id: 64kb5-mzfmq-5wq5v-tm4p6-hekel-ne5xb-amiwr-cwvgg-t7db6-jlpau-nae, dc_id: ti1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:a5glg-n6ul6-rkuc7-idthk-fb2fe-d5m75-4g4l7-22yko-h27pr-q3a7k-lae NodeOperator { node_operator_principal_id: a5glg-n6ul6-rkuc7-idthk-fb2fe-d5m75-4g4l7-22yko-h27pr-q3a7k-lae, node_allowance: 10, node_provider_principal_id: sixix-2nyqd-t2k2v-vlsyz-dssko-ls4hl-hyij4-y7mdp-ja6cj-nsmpf-yae, dc_id: ty3, rewardable_nodes: {"type1.1": 4}, ipv6: None, max_rewardable_nodes: {"type1.1": 4} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 4 type1.1 nodes in ty3 DC: reward 47520000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:a7uqi-wzcgk-bjijx-f562s-a2pm6-qriyn-qmvcw-jtzrw-nx64c-3ocff-iqe NodeOperator { node_operator_principal_id: a7uqi-wzcgk-bjijx-f562s-a2pm6-qriyn-qmvcw-jtzrw-nx64c-3ocff-iqe, node_allowance: 1, node_provider_principal_id: hokzb-gsg3k-oj44m-tqnhs-mpmwl-ujv4x-44bsz-gdoce-pl6tv-oin7v-eae, dc_id: fl3, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:aaxec-cijpz-vzdwe-546fi-vahtf-s2awa-ldn7q-mzl2j-gmvhz-56zlq-mqe NodeOperator { node_operator_principal_id: aaxec-cijpz-vzdwe-546fi-vahtf-s2awa-ldn7q-mzl2j-gmvhz-56zlq-mqe, node_allowance: 0, node_provider_principal_id: cgmhq-c4zja-yov4u-zeyao-64ua5-idlhb-ezcgr-cultv-3vqjs-dhwo7-rqe, dc_id: hk4, rewardable_nodes: {"type3.1": 7}, ipv6: None, max_rewardable_nodes: {"type3.1": 7} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/7 type3.1 node in hk4 DC: rewarded 19225417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/7 type3.1 node in hk4 DC: rewarded 18264146 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/7 type3.1 node in hk4 DC: rewarded 17350938 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/7 type3.1 node in hk4 DC: rewarded 16483391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/7 type3.1 node in hk4 DC: rewarded 15659222 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/7 type3.1 node in hk4 DC: rewarded 14876261 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/7 type3.1 node in hk4 DC: rewarded 14132448 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 7 type3.1 nodes in hk4 DC: reward 115991823 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:aec54-d3vzc-l6qfr-p4zuh-jiwam-gpakf-z7ie7-ju3t4-h6nol-762af-3qe NodeOperator { node_operator_principal_id: aec54-d3vzc-l6qfr-p4zuh-jiwam-gpakf-z7ie7-ju3t4-h6nol-762af-3qe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: bn1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in bn1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in bn1 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:anodw-youcx-pycyh-tkyat-znvdz-rtmop-t7tpo-pyrcn-nuzzw-qp35i-2ae NodeOperator { node_operator_principal_id: anodw-youcx-pycyh-tkyat-znvdz-rtmop-t7tpo-pyrcn-nuzzw-qp35i-2ae, node_allowance: 0, node_provider_principal_id: ucjqj-jmbj3-rs4aq-ekzpw-ltjs3-zrcma-t6r3t-m5wxc-j5yrj-unwoj-mae, dc_id: zh3, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in zh3 DC: reward 159040000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ap2qh-n5jrf-vpjj6-i5pap-qxnhr-4tnar-yodpw-kh6fy-c5w4z-gibij-5ae NodeOperator { node_operator_principal_id: ap2qh-n5jrf-vpjj6-i5pap-qxnhr-4tnar-yodpw-kh6fy-c5w4z-gibij-5ae, node_allowance: 0, node_provider_principal_id: hzqcb-iiagd-4erjo-qn7rq-syqro-zztl6-cpble-atnkd-2c6bg-bxjoa-qae, dc_id: zh5, rewardable_nodes: {"type3": 2}, ipv6: None, max_rewardable_nodes: {"type3": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3 node in zh5 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3 node in zh5 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3 nodes in zh5 DC: reward 30059250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:bchze-nh6ac-2ld63-4grel-5uq74-jvvp6-s2yby-uho2w-ealfc-qn34i-yqe NodeOperator { node_operator_principal_id: bchze-nh6ac-2ld63-4grel-5uq74-jvvp6-s2yby-uho2w-ealfc-qn34i-yqe, node_allowance: 0, node_provider_principal_id: mjnyf-lzqq6-s7fzb-62rqm-xzvge-5oa26-humwp-dvwxp-jxxkf-hoel7-fqe, dc_id: ba1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ba1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ba1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:bftbl-quva3-hsn2r-qsjde-goegh-rupku-gb7xx-utj6e-lswl4-hclva-bqe NodeOperator { node_operator_principal_id: bftbl-quva3-hsn2r-qsjde-goegh-rupku-gb7xx-utj6e-lswl4-hclva-bqe, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: rg3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in rg3 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in rg3 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:bm2lc-ec4xa-briqh-l3acc-wvxfw-u2mn2-3njpp-53rqa-5guxt-hyhce-7ae NodeOperator { node_operator_principal_id: bm2lc-ec4xa-briqh-l3acc-wvxfw-u2mn2-3njpp-53rqa-5guxt-hyhce-7ae, node_allowance: 0, node_provider_principal_id: unqqg-no4b2-vbyad-ytik2-t3vly-3e57q-aje2t-sjb5l-bd4ke-chggn-uqe, dc_id: jb2, rewardable_nodes: {"type3": 6}, ipv6: None, max_rewardable_nodes: {"type3": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3 node in jb2 DC: rewarded 24352914 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3 node in jb2 DC: rewarded 23865856 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3 node in jb2 DC: rewarded 23388538 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3 node in jb2 DC: rewarded 22920768 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3 node in jb2 DC: rewarded 22462352 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3 node in jb2 DC: rewarded 22013105 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3 nodes in jb2 DC: reward 139003533 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe NodeOperator { node_operator_principal_id: spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae, node_allowance: 17, node_provider_principal_id: wwdbq-xuqhf-eydzu-oyl7p-ga565-zm7s7-yrive-ozgsy-zzgh3-qwb3j-cae, dc_id: at2, rewardable_nodes: {"type1": 14}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1 nodes in at2 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:bnfpu-skwq4-d5v2n-a6a42-k3myf-qyfmt-4qik2-rjpms-v5dyu-eenei-sae NodeOperator { node_operator_principal_id: bnfpu-skwq4-d5v2n-a6a42-k3myf-qyfmt-4qik2-rjpms-v5dyu-eenei-sae, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: li1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in li1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in li1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:byspq-73pbj-e44pb-5gq3o-a6sqa-p3p3l-blq2j-dtjup-77zyx-k26zh-aae NodeOperator { node_operator_principal_id: byspq-73pbj-e44pb-5gq3o-a6sqa-p3p3l-blq2j-dtjup-77zyx-k26zh-aae, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:c3oqp-tbi6n-kbsri-citzo-vyed4-paf2i-3qlc7-4lkxm-qowqy-otcfx-pae NodeOperator { node_operator_principal_id: c3oqp-tbi6n-kbsri-citzo-vyed4-paf2i-3qlc7-4lkxm-qowqy-otcfx-pae, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: bn1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in bn1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in bn1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:c5ssg-eh22p-pmsn6-fpjzj-k5nql-mx5mc-7gb4a-4klco-c4f37-ydnfp-bae NodeOperator { node_operator_principal_id: c5ssg-eh22p-pmsn6-fpjzj-k5nql-mx5mc-7gb4a-4klco-c4f37-ydnfp-bae, node_allowance: 0, node_provider_principal_id: i7dto-bgkj2-xo5dx-cyrb7-zkk5y-q46eh-gz6iq-qkgyc-w4qte-scgtb-6ae, dc_id: bu1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in bu1 DC: reward 297080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ceta5-wu56p-aqtjd-2cy2f-atzz3-srckr-wkupd-ratc5-62ckj-vsj5u-zae NodeOperator { node_operator_principal_id: ceta5-wu56p-aqtjd-2cy2f-atzz3-srckr-wkupd-ratc5-62ckj-vsj5u-zae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: si1, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in si1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in si1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in si1 DC: reward 30059250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ciprs-d7ktn-eiqrv-pqbcf-npk57-ty4m3-npkk2-yu4en-d4ccs-ek5xw-dae NodeOperator { node_operator_principal_id: ciprs-d7ktn-eiqrv-pqbcf-npk57-ty4m3-npkk2-yu4en-d4ccs-ek5xw-dae, node_allowance: 0, node_provider_principal_id: 6r5lw-l7db7-uwixn-iw5en-yy55y-ilbtq-e6gcv-g22r2-j3g6q-y37jk-jqe, dc_id: zh6, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in zh6 DC: reward 318080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:cn25n-ky3ou-4j4kr-znsm5-ixcjv-l66i2-wtase-xfuro-g4uaa-4tif4-tae NodeOperator { node_operator_principal_id: cn25n-ky3ou-4j4kr-znsm5-ixcjv-l66i2-wtase-xfuro-g4uaa-4tif4-tae, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: bt1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in bt1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in bt1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:codio-e5e6p-ol6sn-o3mgw-r7v5p-4jmch-a7exl-7pifz-cw4gn-ah47y-6ae NodeOperator { node_operator_principal_id: codio-e5e6p-ol6sn-o3mgw-r7v5p-4jmch-a7exl-7pifz-cw4gn-ah47y-6ae, node_allowance: 28, node_provider_principal_id: 7a4u2-gevsy-5c5fs-hsgri-n2kdz-dxxwf-btcfp-jykro-l4y7c-7xky2-aqe, dc_id: aw1, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in aw1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in aw1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:cqjev-4qb7l-xv373-jfmhi-73n3a-cxhst-p6okb-vywwc-a4zbi-6sf3u-bae NodeOperator { node_operator_principal_id: cqjev-4qb7l-xv373-jfmhi-73n3a-cxhst-p6okb-vywwc-a4zbi-6sf3u-bae, node_allowance: 13, node_provider_principal_id: sixix-2nyqd-t2k2v-vlsyz-dssko-ls4hl-hyij4-y7mdp-ja6cj-nsmpf-yae, dc_id: ty1, rewardable_nodes: {"type1.1": 15}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 15 type1.1 nodes in ty1 DC: reward 178200000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:d4bin-5o2wg-ycbdq-yljr7-45pjv-ptf6d-v243j-vg6x5-dlo7t-yqu62-5qe NodeOperator { node_operator_principal_id: d4bin-5o2wg-ycbdq-yljr7-45pjv-ptf6d-v243j-vg6x5-dlo7t-yqu62-5qe, node_allowance: 3, node_provider_principal_id: 6nbcy-kprg6-ax3db-kh3cz-7jllk-oceyh-jznhs-riguq-fvk6z-6tsds-rqe, dc_id: sg1, rewardable_nodes: {"type1.1": 26}, ipv6: None, max_rewardable_nodes: {"type1.1": 25} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 26 type1.1 nodes in sg1 DC: reward 320840000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:db7fe-oft52-pi5du-za72s-sh5oy-6wmnv-hje7y-i5k2l-txseu-anq6c-rqe NodeOperator { node_operator_principal_id: db7fe-oft52-pi5du-za72s-sh5oy-6wmnv-hje7y-i5k2l-txseu-anq6c-rqe, node_allowance: 13, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 5}, ipv6: None, max_rewardable_nodes: {"type1.1": 5} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 5 type1.1 nodes in zh2 DC: reward 56800000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:dg7of-7gsgk-b7ptj-mcrrc-bxcae-6yg2o-oa57j-64cyo-vbc4d-t3ax5-oqe NodeOperator { node_operator_principal_id: dg7of-7gsgk-b7ptj-mcrrc-bxcae-6yg2o-oa57j-64cyo-vbc4d-t3ax5-oqe, node_allowance: 0, node_provider_principal_id: 64xe5-tx2s3-4gjmj-pnozr-fejw2-77y5y-rhcjk-glnmx-62brf-qin5q-pqe, dc_id: hk4, rewardable_nodes: {"type3.1": 7}, ipv6: None, max_rewardable_nodes: {"type3.1": 7} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/7 type3.1 node in hk4 DC: rewarded 19225417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/7 type3.1 node in hk4 DC: rewarded 18264146 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/7 type3.1 node in hk4 DC: rewarded 17350938 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/7 type3.1 node in hk4 DC: rewarded 16483391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/7 type3.1 node in hk4 DC: rewarded 15659222 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/7 type3.1 node in hk4 DC: rewarded 14876261 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/7 type3.1 node in hk4 DC: rewarded 14132448 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 7 type3.1 nodes in hk4 DC: reward 115991823 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:dm2ty-kun2w-em4v2-xshvb-3bmsj-mrjst-g246o-ik4kl-y3ckl-gvaqh-jae NodeOperator { node_operator_principal_id: dm2ty-kun2w-em4v2-xshvb-3bmsj-mrjst-g246o-ik4kl-y3ckl-gvaqh-jae, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: pa2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in pa2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in pa2 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:dmqux-7xfgo-xd535-6kkav-qjjnm-c7zza-g4j6g-ooctw-gdisv-zvh6z-7qe NodeOperator { node_operator_principal_id: dmqux-7xfgo-xd535-6kkav-qjjnm-c7zza-g4j6g-ooctw-gdisv-zvh6z-7qe, node_allowance: 0, node_provider_principal_id: 2hl5k-umjdt-ykii4-goecz-kkps6-nvl53-l7ost-p4mcp-qmnmw-rzrfc-mqe, dc_id: ny1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in ny1 DC: reward 140560000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:dvfhx-jb24w-j6t5m-i7hv7-7a6on-heiyd-cgjrk-kby5c-nhej4-lmbql-yae NodeOperator { node_operator_principal_id: dvfhx-jb24w-j6t5m-i7hv7-7a6on-heiyd-cgjrk-kby5c-nhej4-lmbql-yae, node_allowance: 0, node_provider_principal_id: dodsd-rsjlg-sgekb-gr6mi-l6fck-tscwk-4jzgl-fwk4q-ncoyu-ulx53-aqe, dc_id: pl1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in pl1 DC: reward 281120000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:eikix-bqjrk-7eadr-nvgoa-drao2-2t54l-kfbs2-34gdr-sbssy-ir4rj-rae NodeOperator { node_operator_principal_id: eikix-bqjrk-7eadr-nvgoa-drao2-2t54l-kfbs2-34gdr-sbssy-ir4rj-rae, node_allowance: 1, node_provider_principal_id: ks7ow-zvs7i-ratdk-azq34-zio2b-gbekj-qjicg-pfhp3-ovhgu-k5qql-dae, dc_id: sj2, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in sj2 DC: reward 300160000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:eqv2i-6dtlf-bhbjd-2popw-vvavp-7xzci-6gdd7-qxgox-wdw5w-l3a4w-eae NodeOperator { node_operator_principal_id: eqv2i-6dtlf-bhbjd-2popw-vvavp-7xzci-6gdd7-qxgox-wdw5w-l3a4w-eae, node_allowance: 0, node_provider_principal_id: 6sq7t-knkul-fko6h-xzvnf-ktbvr-jhx7r-hapzr-kjlek-whugy-zt6ip-xqe, dc_id: cr1, rewardable_nodes: {"type3.1": 8}, ipv6: None, max_rewardable_nodes: {"type3.1": 8} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/8 type3.1 node in cr1 DC: rewarded 21572500 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/8 type3.1 node in cr1 DC: rewarded 20493875 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/8 type3.1 node in cr1 DC: rewarded 19469181 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/8 type3.1 node in cr1 DC: rewarded 18495722 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/8 type3.1 node in cr1 DC: rewarded 17570936 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/8 type3.1 node in cr1 DC: rewarded 16692389 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/8 type3.1 node in cr1 DC: rewarded 15857769 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/8 type3.1 node in cr1 DC: rewarded 15064881 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 8 type3.1 nodes in cr1 DC: reward 145217253 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:eu5wc-g7r7l-zzy2o-227af-hfvin-orflw-4vdlf-j7gks-n5wrj-zezt7-tqe NodeOperator { node_operator_principal_id: eu5wc-g7r7l-zzy2o-227af-hfvin-orflw-4vdlf-j7gks-n5wrj-zezt7-tqe, node_allowance: 16, node_provider_principal_id: kos24-5xact-6aror-uofg2-tnvt6-dq3bk-c2c5z-jtptt-jbqvc-lmegy-qae, dc_id: lj2, rewardable_nodes: {"type3": 12}, ipv6: None, max_rewardable_nodes: {"type3": 12} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/12 type3 node in lj2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/12 type3 node in lj2 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/12 type3 node in lj2 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/12 type3 node in lj2 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/12 type3 node in lj2 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/12 type3 node in lj2 DC: rewarded 11927833 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/12 type3 node in lj2 DC: rewarded 11331441 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/12 type3 node in lj2 DC: rewarded 10764869 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/12 type3 node in lj2 DC: rewarded 10226625 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/12 type3 node in lj2 DC: rewarded 9715294 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/12 type3 node in lj2 DC: rewarded 9229529 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/12 type3 node in lj2 DC: rewarded 8768053 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 12 type3 nodes in lj2 DC: reward 141706979 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:f3toa-2qbnz-67mnl-ws76t-asi36-oz7vd-w5xjx-u5n75-jchls-uhioe-6qe NodeOperator { node_operator_principal_id: f3toa-2qbnz-67mnl-ws76t-asi36-oz7vd-w5xjx-u5n75-jchls-uhioe-6qe, node_allowance: 0, node_provider_principal_id: unqqg-no4b2-vbyad-ytik2-t3vly-3e57q-aje2t-sjb5l-bd4ke-chggn-uqe, dc_id: sc1, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in sc1 DC: rewarded 19583333 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in sc1 DC: rewarded 18604166 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in sc1 DC: rewarded 17673958 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in sc1 DC: rewarded 16790260 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in sc1 DC: rewarded 15950747 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in sc1 DC: rewarded 15153209 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in sc1 DC: reward 103755673 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:f4ckh-4va5f-p434o-iy3fa-lw3ct-4qguu-gefta-x2rx3-pltka-aq3si-uqe NodeOperator { node_operator_principal_id: f4ckh-4va5f-p434o-iy3fa-lw3ct-4qguu-gefta-x2rx3-pltka-aq3si-uqe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: ba1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ba1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ba1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:f4rto-feg3b-4ubuk-ggxzh-j5wxn-5nvwh-l4syp-5nrjv-r5jeq-ywxxe-7qe NodeOperator { node_operator_principal_id: f4rto-feg3b-4ubuk-ggxzh-j5wxn-5nvwh-l4syp-5nrjv-r5jeq-ywxxe-7qe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: ma3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ma3 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ma3 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:feb2q-mgxwe-okz7r-juws2-mahg4-wflqu-oeflf-kvh4r-qaqit-hbqpg-uqe NodeOperator { node_operator_principal_id: feb2q-mgxwe-okz7r-juws2-mahg4-wflqu-oeflf-kvh4r-qaqit-hbqpg-uqe, node_allowance: 0, node_provider_principal_id: 7at4h-nhtvt-a4s55-jigss-wr2ha-ysxkn-e6w7x-7ggnm-qd3d5-ry66r-cae, dc_id: bc1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in bc1 DC: reward 152320000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:fthz3-5otsb-xppaq-zhlut-dxel6-5fgxj-oz56h-r7zrz-xlq5z-cxpe4-uae NodeOperator { node_operator_principal_id: fthz3-5otsb-xppaq-zhlut-dxel6-5fgxj-oz56h-r7zrz-xlq5z-cxpe4-uae, node_allowance: 0, node_provider_principal_id: sqhxa-h6ili-qkwup-ohzwn-yofnm-vvnp5-kxdhg-saabw-rvua3-xp325-zqe, dc_id: hu1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in hu1 DC: reward 140560000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:gl27f-y5srq-yy5ot-v4x5z-y2a2s-sgoor-l4gjg-qv4x4-v2olb-dz4dc-wae NodeOperator { node_operator_principal_id: gl27f-y5srq-yy5ot-v4x5z-y2a2s-sgoor-l4gjg-qv4x4-v2olb-dz4dc-wae, node_allowance: 0, node_provider_principal_id: wdjjk-blh44-lxm74-ojj43-rvgf4-j5rie-nm6xs-xvnuv-j3ptn-25t4v-6ae, dc_id: lj1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in lj1 DC: reward 322560000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:gsps3-qfdvq-s2sxt-d2v3e-yk4kk-w4bvn-tznft-y7x4x-im7if-umuub-wqe NodeOperator { node_operator_principal_id: gsps3-qfdvq-s2sxt-d2v3e-yk4kk-w4bvn-tznft-y7x4x-im7if-umuub-wqe, node_allowance: 0, node_provider_principal_id: eipr5-izbom-neyqh-s3ec2-52eww-cyfpg-qfomg-3dpwj-4pffh-34xcu-7qe, dc_id: lv1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in lv1 DC: reward 140560000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:gv77f-r7ahj-gkbd3-6il3n-lfgb5-3ojpt-uxydp-5rdls-4xqam-upxju-2ae NodeOperator { node_operator_principal_id: gv77f-r7ahj-gkbd3-6il3n-lfgb5-3ojpt-uxydp-5rdls-4xqam-upxju-2ae, node_allowance: 28, node_provider_principal_id: 7a4u2-gevsy-5c5fs-hsgri-n2kdz-dxxwf-btcfp-jykro-l4y7c-7xky2-aqe, dc_id: aw1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in aw1 DC: reward 281120000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:h6fpp-nacd4-fwrj6-fkabo-wbmpo-nvyex-csgvq-itqax-lj3rz-vfx5h-iqe NodeOperator { node_operator_principal_id: h6fpp-nacd4-fwrj6-fkabo-wbmpo-nvyex-csgvq-itqax-lj3rz-vfx5h-iqe, node_allowance: 0, node_provider_principal_id: i3cfo-s2tgu-qe5ym-wk7e6-y7ura-pptgu-kevuf-2feh7-z4enq-5hz4s-mqe, dc_id: ns1, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in ns1 DC: rewarded 19583333 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in ns1 DC: rewarded 18604166 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in ns1 DC: reward 38187499 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:hoqyg-qkf6b-ulmyi-zfk6z-fuvlo-pekr6-goigz-qweij-xhghd-vibjl-jqe NodeOperator { node_operator_principal_id: hoqyg-qkf6b-ulmyi-zfk6z-fuvlo-pekr6-goigz-qweij-xhghd-vibjl-jqe, node_allowance: 4, node_provider_principal_id: hk7eo-22zam-kqmsx-dtfbj-k5i6f-jg65h-micpf-2cztc-t2eqk-efgvx-vqe, dc_id: fm1, rewardable_nodes: {"type3.1": 3}, ipv6: None, max_rewardable_nodes: {"type3.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/3 type3.1 node in fm1 DC: rewarded 15429583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/3 type3.1 node in fm1 DC: rewarded 10800708 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/3 type3.1 node in fm1 DC: rewarded 7560495 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 3 type3.1 nodes in fm1 DC: reward 33790786 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:hsi7b-rl4wt-lum3m-ophfi-oxgx5-u2q7r-ak7ag-nyiik-c4gam-epo2r-3qe NodeOperator { node_operator_principal_id: hsi7b-rl4wt-lum3m-ophfi-oxgx5-u2q7r-ak7ag-nyiik-c4gam-epo2r-3qe, node_allowance: 1, node_provider_principal_id: izdfy-ocmaz-3qwcy-lluqx-tvq64-oybib-oyhxx-3dfni-ssznb-suhes-iqe, dc_id: fl2, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ihcmc-o45dd-elg2s-ntnhr-l4c35-datk6-gsyeb-m77as-yjzd2-4qyxz-xqe NodeOperator { node_operator_principal_id: ihcmc-o45dd-elg2s-ntnhr-l4c35-datk6-gsyeb-m77as-yjzd2-4qyxz-xqe, node_allowance: 0, node_provider_principal_id: pa5mu-yxsey-b4yrk-bodka-dhjnm-a3nx4-w2grw-3b766-ddr6e-nupu4-pqe, dc_id: nd1, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in nd1 DC: rewarded 20990417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in nd1 DC: rewarded 19940896 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in nd1 DC: reward 40931313 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ihpb5-7zcjy-eceio-pikgo-r4aei-ik66s-fdxwj-yacqc-dxt67-jluxx-yqe NodeOperator { node_operator_principal_id: ihpb5-7zcjy-eceio-pikgo-r4aei-ik66s-fdxwj-yacqc-dxt67-jluxx-yqe, node_allowance: 28, node_provider_principal_id: 7at4h-nhtvt-a4s55-jigss-wr2ha-ysxkn-e6w7x-7ggnm-qd3d5-ry66r-cae, dc_id: to2, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ilwyu-pfcy7-2iy3t-cjmsx-nrw4l-6rmek-lduaa-yha6b-7wck6-3usxt-cqe NodeOperator { node_operator_principal_id: ilwyu-pfcy7-2iy3t-cjmsx-nrw4l-6rmek-lduaa-yha6b-7wck6-3usxt-cqe, node_allowance: 1, node_provider_principal_id: is2tg-4for6-ytyzl-5xokl-jd3kz-4y5ky-g7am2-yotrq-5yruf-twke6-vae, dc_id: ai1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:inluf-zswst-3owy3-xklsg-jnn6r-izoj7-pf3il-fo33d-ghbka-lc34p-zqe NodeOperator { node_operator_principal_id: inluf-zswst-3owy3-xklsg-jnn6r-izoj7-pf3il-fo33d-ghbka-lc34p-zqe, node_allowance: 0, node_provider_principal_id: vegae-c4chr-aetfj-7gzuh-c23sx-u2paz-vmvbn-bcage-pu7lu-mptnn-eqe, dc_id: vl2, rewardable_nodes: {"type3.1": 7}, ipv6: None, max_rewardable_nodes: {"type3.1": 7} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/7 type3.1 node in vl2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/7 type3.1 node in vl2 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/7 type3.1 node in vl2 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/7 type3.1 node in vl2 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/7 type3.1 node in vl2 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/7 type3.1 node in vl2 DC: rewarded 11927833 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/7 type3.1 node in vl2 DC: rewarded 11331441 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 7 type3.1 nodes in vl2 DC: reward 93002609 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:iubpe-vrzpt-cdf5f-kkzhq-rgp63-dkbfo-fje7f-6aknf-jekzg-3s7tv-oae NodeOperator { node_operator_principal_id: iubpe-vrzpt-cdf5f-kkzhq-rgp63-dkbfo-fje7f-6aknf-jekzg-3s7tv-oae, node_allowance: 13, node_provider_principal_id: r3yjn-kthmg-pfgmb-2fngg-5c7d7-t6kqg-wi37r-j7gy6-iee64-kjdja-jae, dc_id: kr1, rewardable_nodes: {"type3.1": 18}, ipv6: None, max_rewardable_nodes: {"type3.1": 18} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/18 type3.1 node in kr1 DC: rewarded 21572292 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/18 type3.1 node in kr1 DC: rewarded 20493677 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/18 type3.1 node in kr1 DC: rewarded 19468993 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/18 type3.1 node in kr1 DC: rewarded 18495543 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/18 type3.1 node in kr1 DC: rewarded 17570766 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/18 type3.1 node in kr1 DC: rewarded 16692228 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/18 type3.1 node in kr1 DC: rewarded 15857616 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/18 type3.1 node in kr1 DC: rewarded 15064736 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/18 type3.1 node in kr1 DC: rewarded 14311499 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/18 type3.1 node in kr1 DC: rewarded 13595924 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/18 type3.1 node in kr1 DC: rewarded 12916128 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/18 type3.1 node in kr1 DC: rewarded 12270321 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 12/18 type3.1 node in kr1 DC: rewarded 11656805 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 13/18 type3.1 node in kr1 DC: rewarded 11073965 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 14/18 type3.1 node in kr1 DC: rewarded 10520267 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 15/18 type3.1 node in kr1 DC: rewarded 9994253 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 16/18 type3.1 node in kr1 DC: rewarded 9494541 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 17/18 type3.1 node in kr1 DC: rewarded 9019813 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 18 type3.1 nodes in kr1 DC: reward 260069367 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:jptla-fkfxd-7oesr-6vbp4-6tx22-c7ome-zo3ox-2ylzj-llei6-7xcw3-hqe NodeOperator { node_operator_principal_id: jptla-fkfxd-7oesr-6vbp4-6tx22-c7ome-zo3ox-2ylzj-llei6-7xcw3-hqe, node_allowance: 5, node_provider_principal_id: 4jjya-hlyyc-s766p-fd6gr-d6tvv-vo3ah-j5ptx-i73gw-mwgyd-rw6w2-rae, dc_id: rg1, rewardable_nodes: {"type3.1": 5}, ipv6: None, max_rewardable_nodes: {"type3.1": 5} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/5 type3.1 node in rg1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/5 type3.1 node in rg1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/5 type3.1 node in rg1 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/5 type3.1 node in rg1 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/5 type3.1 node in rg1 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 5 type3.1 nodes in rg1 DC: reward 69743335 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:jqwj7-ka4re-ivbzs-yxlfw-7cwcr-svmcs-c53wv-hyrww-svl3i-rmdis-iae NodeOperator { node_operator_principal_id: jqwj7-ka4re-ivbzs-yxlfw-7cwcr-svmcs-c53wv-hyrww-svl3i-rmdis-iae, node_allowance: 14, node_provider_principal_id: 7at4h-nhtvt-a4s55-jigss-wr2ha-ysxkn-e6w7x-7ggnm-qd3d5-ry66r-cae, dc_id: bc1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:jtrpk-wokqg-aqmcn-esiq7-fip4e-dl7lv-iwdyj-cu5pm-wbg7i-4jl4t-wae NodeOperator { node_operator_principal_id: jtrpk-wokqg-aqmcn-esiq7-fip4e-dl7lv-iwdyj-cu5pm-wbg7i-4jl4t-wae, node_allowance: 0, node_provider_principal_id: 7ws2n-wqorv-vmo4m-5e222-n42c3-hk43s-ei3kp-4hpbn-xlkzo-jgv7i-tqe, dc_id: sj3, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in sj3 DC: rewarded 15429583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in sj3 DC: rewarded 10800708 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in sj3 DC: reward 26230291 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:kcyob-6amxm-wgpbs-gbyxc-pxp7l-tdacq-gjhv4-wg37h-2p6lx-h7hmi-4ae NodeOperator { node_operator_principal_id: kcyob-6amxm-wgpbs-gbyxc-pxp7l-tdacq-gjhv4-wg37h-2p6lx-h7hmi-4ae, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: ta2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ta2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ta2 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:kguzs-hshnk-cn46m-vabri-t7mtm-th4lo-qsf5g-f2trp-xxatj-44aut-kqe NodeOperator { node_operator_principal_id: kguzs-hshnk-cn46m-vabri-t7mtm-th4lo-qsf5g-f2trp-xxatj-44aut-kqe, node_allowance: 0, node_provider_principal_id: 2dgp4-h57n4-a4kgx-n4uun-huo3a-wbdlc-m57wd-jtkuh-g5vcc-fcbby-6qe, dc_id: ch3, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in ch3 DC: reward 281120000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:kn6jm-wbdbm-2djab-iyyjm-n3mpl-nxvsl-wr7ka-nq5rp-d4opu-jbnkr-bae NodeOperator { node_operator_principal_id: kn6jm-wbdbm-2djab-iyyjm-n3mpl-nxvsl-wr7ka-nq5rp-d4opu-jbnkr-bae, node_allowance: 0, node_provider_principal_id: g7dkt-aapqq-j3hqt-xtiys-pwapz-idulp-nwagd-zibqm-caxa4-gc23t-3qe, dc_id: mm1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in mm1 DC: reward 150080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:l47io-jd46a-nmebs-sybyw-wxebj-jhs7k-45d6h-xg6p6-xy5f4-6ru2n-iae NodeOperator { node_operator_principal_id: l47io-jd46a-nmebs-sybyw-wxebj-jhs7k-45d6h-xg6p6-xy5f4-6ru2n-iae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: rg3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in rg3 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in rg3 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:l5lhp-734i5-tbott-vipvc-vud2f-pfh7r-g3227-tgkdj-4rggm-abc2e-cae NodeOperator { node_operator_principal_id: l5lhp-734i5-tbott-vipvc-vud2f-pfh7r-g3227-tgkdj-4rggm-abc2e-cae, node_allowance: 1, node_provider_principal_id: ihbuj-erwnc-tkjux-tqtnv-zkoar-uniy2-sk2go-xfpkc-znbb4-seukm-wqe, dc_id: mn2, rewardable_nodes: {"type3.1": 18}, ipv6: None, max_rewardable_nodes: {"type3.1": 18} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/18 type3.1 node in mn2 DC: rewarded 19583333 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/18 type3.1 node in mn2 DC: rewarded 18604166 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/18 type3.1 node in mn2 DC: rewarded 17673958 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/18 type3.1 node in mn2 DC: rewarded 16790260 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/18 type3.1 node in mn2 DC: rewarded 15950747 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/18 type3.1 node in mn2 DC: rewarded 15153209 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/18 type3.1 node in mn2 DC: rewarded 14395549 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/18 type3.1 node in mn2 DC: rewarded 13675771 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/18 type3.1 node in mn2 DC: rewarded 12991983 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/18 type3.1 node in mn2 DC: rewarded 12342384 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/18 type3.1 node in mn2 DC: rewarded 11725264 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/18 type3.1 node in mn2 DC: rewarded 11139001 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 12/18 type3.1 node in mn2 DC: rewarded 10582051 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 13/18 type3.1 node in mn2 DC: rewarded 10052948 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 14/18 type3.1 node in mn2 DC: rewarded 9550301 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 15/18 type3.1 node in mn2 DC: rewarded 9072786 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 16/18 type3.1 node in mn2 DC: rewarded 8619147 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 17/18 type3.1 node in mn2 DC: rewarded 8188189 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 18 type3.1 nodes in mn2 DC: reward 236091047 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:lgp6d-brhlv-35izu-khc6p-rfszo-zdwng-xbtkh-xyvjg-y3due-7ha7t-uae NodeOperator { node_operator_principal_id: lgp6d-brhlv-35izu-khc6p-rfszo-zdwng-xbtkh-xyvjg-y3due-7ha7t-uae, node_allowance: 0, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: sh1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in sh1 DC: reward 297080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:lh42a-fzwyv-lhply-zt6e3-k6iey-f7rnm-5jgsr-7bz4v-wp2w6-kydfy-pqe NodeOperator { node_operator_principal_id: lh42a-fzwyv-lhply-zt6e3-k6iey-f7rnm-5jgsr-7bz4v-wp2w6-kydfy-pqe, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: rg1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in rg1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in rg1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:lis4o-siuek-6zrm6-g5pkh-lswnt-ttsd4-henvb-d6mit-lgfpr-lynph-xae NodeOperator { node_operator_principal_id: lis4o-siuek-6zrm6-g5pkh-lswnt-ttsd4-henvb-d6mit-lgfpr-lynph-xae, node_allowance: 0, node_provider_principal_id: 6sq7t-knkul-fko6h-xzvnf-ktbvr-jhx7r-hapzr-kjlek-whugy-zt6ip-xqe, dc_id: tv1, rewardable_nodes: {"type3.1": 8}, ipv6: None, max_rewardable_nodes: {"type3.1": 8} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/8 type3.1 node in tv1 DC: rewarded 20625000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/8 type3.1 node in tv1 DC: rewarded 19593750 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/8 type3.1 node in tv1 DC: rewarded 18614062 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/8 type3.1 node in tv1 DC: rewarded 17683359 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/8 type3.1 node in tv1 DC: rewarded 16799191 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/8 type3.1 node in tv1 DC: rewarded 15959231 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/8 type3.1 node in tv1 DC: rewarded 15161270 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/8 type3.1 node in tv1 DC: rewarded 14403206 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 8 type3.1 nodes in tv1 DC: reward 138839069 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:mbnsu-w4xfc-pmdok-r2lwo-wxfr4-gigu5-4idcm-5uuuy-znvby-biiny-jqe NodeOperator { node_operator_principal_id: mbnsu-w4xfc-pmdok-r2lwo-wxfr4-gigu5-4idcm-5uuuy-znvby-biiny-jqe, node_allowance: 5, node_provider_principal_id: 4jjya-hlyyc-s766p-fd6gr-d6tvv-vo3ah-j5ptx-i73gw-mwgyd-rw6w2-rae, dc_id: bt1, rewardable_nodes: {"type3.1": 5}, ipv6: None, max_rewardable_nodes: {"type3.1": 5} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/5 type3.1 node in bt1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/5 type3.1 node in bt1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/5 type3.1 node in bt1 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/5 type3.1 node in bt1 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/5 type3.1 node in bt1 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 5 type3.1 nodes in bt1 DC: reward 69743335 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:mjeqs-wxqp7-tecvn-77uxe-eowch-4l4gy-6lc6f-ys6je-qnybm-5fxya-qqe NodeOperator { node_operator_principal_id: mjeqs-wxqp7-tecvn-77uxe-eowch-4l4gy-6lc6f-ys6je-qnybm-5fxya-qqe, node_allowance: 0, node_provider_principal_id: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dc_id: br1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in br1 DC: reward 297080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:mpmyf-juliu-5qwcu-ofamg-es7ug-4mjt4-w5lht-dbrfb-ualjm-hcwmn-pae NodeOperator { node_operator_principal_id: mpmyf-juliu-5qwcu-ofamg-es7ug-4mjt4-w5lht-dbrfb-ualjm-hcwmn-pae, node_allowance: 4, node_provider_principal_id: ulyfm-vkxtj-o42dg-e4nam-l4tzf-37wci-ggntw-4ma7y-d267g-ywxi6-iae, dc_id: nm1, rewardable_nodes: {"type3": 12}, ipv6: None, max_rewardable_nodes: {"type3": 12} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/12 type3 node in nm1 DC: rewarded 25317500 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/12 type3 node in nm1 DC: rewarded 24811150 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/12 type3 node in nm1 DC: rewarded 24314926 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/12 type3 node in nm1 DC: rewarded 23828628 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/12 type3 node in nm1 DC: rewarded 23352055 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/12 type3 node in nm1 DC: rewarded 22885014 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/12 type3 node in nm1 DC: rewarded 22427314 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/12 type3 node in nm1 DC: rewarded 21978768 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/12 type3 node in nm1 DC: rewarded 21539192 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/12 type3 node in nm1 DC: rewarded 21108408 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/12 type3 node in nm1 DC: rewarded 20686240 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/12 type3 node in nm1 DC: rewarded 20272515 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 12 type3 nodes in nm1 DC: reward 272521710 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:mw64v-jynex-7tu52-5a3te-ifbop-nh7y7-w7lno-ymmht-b7fmy-wfhha-gqe NodeOperator { node_operator_principal_id: mw64v-jynex-7tu52-5a3te-ifbop-nh7y7-w7lno-ymmht-b7fmy-wfhha-gqe, node_allowance: 0, node_provider_principal_id: eipr5-izbom-neyqh-s3ec2-52eww-cyfpg-qfomg-3dpwj-4pffh-34xcu-7qe, dc_id: dl1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in dl1 DC: reward 281120000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:mwn4q-m7agh-z77ry-lk3ee-6ndte-kkfmm-yxtb4-mfqyf-uq2e7-xqmyh-yqe NodeOperator { node_operator_principal_id: mwn4q-m7agh-z77ry-lk3ee-6ndte-kkfmm-yxtb4-mfqyf-uq2e7-xqmyh-yqe, node_allowance: 0, node_provider_principal_id: 2hl5k-umjdt-ykii4-goecz-kkps6-nvl53-l7ost-p4mcp-qmnmw-rzrfc-mqe, dc_id: jv1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in jv1 DC: reward 300160000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ngpk7-cjdtu-h3zkz-kum5b-q7fs5-teooc-ipecm-z2gci-qmfj6-6sxdf-tae NodeOperator { node_operator_principal_id: ngpk7-cjdtu-h3zkz-kum5b-q7fs5-teooc-ipecm-z2gci-qmfj6-6sxdf-tae, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: wa3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in wa3 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in wa3 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:nhr3z-ekrj4-7usls-kmdbv-esy2j-3wvez-ck46k-qpdn6-i23c2-5xkgr-dae NodeOperator { node_operator_principal_id: nhr3z-ekrj4-7usls-kmdbv-esy2j-3wvez-ck46k-qpdn6-i23c2-5xkgr-dae, node_allowance: 2, node_provider_principal_id: trxbq-wy5xi-3y27q-bkpaf-mhi2m-puexs-yatgt-nhwiy-dh6jy-rolw5-zqe, dc_id: dr1, rewardable_nodes: {"type3.1": 3}, ipv6: None, max_rewardable_nodes: {"type3.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/3 type3.1 node in dr1 DC: rewarded 12930833 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/3 type3.1 node in dr1 DC: rewarded 9051583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/3 type3.1 node in dr1 DC: rewarded 6336108 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 3 type3.1 nodes in dr1 DC: reward 28318524 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:nj365-76cya-vjwgn-vyuxb-y74nh-bhlti-l6mzp-5efbh-u7nld-5jeba-kae NodeOperator { node_operator_principal_id: nj365-76cya-vjwgn-vyuxb-y74nh-bhlti-l6mzp-5efbh-u7nld-5jeba-kae, node_allowance: 14, node_provider_principal_id: wwdbq-xuqhf-eydzu-oyl7p-ga565-zm7s7-yrive-ozgsy-zzgh3-qwb3j-cae, dc_id: mm1, rewardable_nodes: {"type0": 0, "type1": 14}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in mm1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1 nodes in mm1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:npluh-e7p53-5krtn-yotea-tkczh-cf53b-sfwpi-wsccj-mhneg-7aklr-uae NodeOperator { node_operator_principal_id: npluh-e7p53-5krtn-yotea-tkczh-cf53b-sfwpi-wsccj-mhneg-7aklr-uae, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: wa1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in wa1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in wa1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:nvocp-jlbys-d44wi-od3pv-iws4n-2nll3-73hqk-koh72-3obvg-kt5v3-fae NodeOperator { node_operator_principal_id: nvocp-jlbys-d44wi-od3pv-iws4n-2nll3-73hqk-koh72-3obvg-kt5v3-fae, node_allowance: 0, node_provider_principal_id: mjnyf-lzqq6-s7fzb-62rqm-xzvge-5oa26-humwp-dvwxp-jxxkf-hoel7-fqe, dc_id: li2, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in li2 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in li2 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in li2 DC: reward 28556287 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:nwpoe-kxdae-5afgc-itoe7-xecg7-k74et-jggwc-lgz3n-tjs6e-mtqos-5ae NodeOperator { node_operator_principal_id: nwpoe-kxdae-5afgc-itoe7-xecg7-k74et-jggwc-lgz3n-tjs6e-mtqos-5ae, node_allowance: 1, node_provider_principal_id: mf6om-4m4yc-36jur-ip35a-6d3yr-kqi7v-txofz-nraz3-f6a4l-dcufx-oqe, dc_id: so1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:o36jk-wtdjp-uu75u-vtmlr-iy4fy-w767n-pdtcd-7rd7l-xwkeo-dvs5s-hae NodeOperator { node_operator_principal_id: o36jk-wtdjp-uu75u-vtmlr-iy4fy-w767n-pdtcd-7rd7l-xwkeo-dvs5s-hae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: wa3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in wa3 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in wa3 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:oorkg-ilned-36bwb-vyprm-56g55-hp6xq-gucq3-fmn2i-44a4e-txzlp-gqe NodeOperator { node_operator_principal_id: oorkg-ilned-36bwb-vyprm-56g55-hp6xq-gucq3-fmn2i-44a4e-txzlp-gqe, node_allowance: 0, node_provider_principal_id: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dc_id: br2, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in br2 DC: reward 148540000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ozfkj-ugoiu-5k6fd-yicvj-k6wbj-fltwh-4vmwd-mqazn-fbdkn-j5uel-3qe NodeOperator { node_operator_principal_id: ozfkj-ugoiu-5k6fd-yicvj-k6wbj-fltwh-4vmwd-mqazn-fbdkn-j5uel-3qe, node_allowance: 0, node_provider_principal_id: c5svp-7pkmf-agz5x-536k7-r7rcw-4wn3a-eo7pt-ry7su-j42uq-bvnzf-iqe, dc_id: mb1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in mb1 DC: reward 161280000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:paxme-ikvh3-v6cve-in3jx-z6xf2-x67nq-4yqf5-ufdag-c7os3-byb4f-cae NodeOperator { node_operator_principal_id: paxme-ikvh3-v6cve-in3jx-z6xf2-x67nq-4yqf5-ufdag-c7os3-byb4f-cae, node_allowance: 0, node_provider_principal_id: ucjqj-jmbj3-rs4aq-ekzpw-ltjs3-zrcma-t6r3t-m5wxc-j5yrj-unwoj-mae, dc_id: zh4, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in zh4 DC: reward 318080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:pgunx-7pdft-jwvuo-j65kd-2mdxl-bi3r7-znv4c-vw2q3-2gno4-2uoeg-wqe NodeOperator { node_operator_principal_id: pgunx-7pdft-jwvuo-j65kd-2mdxl-bi3r7-znv4c-vw2q3-2gno4-2uoeg-wqe, node_allowance: 28, node_provider_principal_id: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dc_id: an1, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in an1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in an1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:pi3wm-ofu73-5wyma-gec6p-lplqp-6euwt-c5jjb-pwaey-gxmlr-rzqmk-xqe NodeOperator { node_operator_principal_id: pi3wm-ofu73-5wyma-gec6p-lplqp-6euwt-c5jjb-pwaey-gxmlr-rzqmk-xqe, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:q4gds-li2kf-dhmi6-vmtxg-zrgep-3te7r-2a4ji-nszwv-66biu-dkl6k-eqe NodeOperator { node_operator_principal_id: q4gds-li2kf-dhmi6-vmtxg-zrgep-3te7r-2a4ji-nszwv-66biu-dkl6k-eqe, node_allowance: 1, node_provider_principal_id: znw2p-4cx6u-ocqls-277iu-2lkir-xjy7g-4s3sj-sjy6j-mtlay-rnnra-yqe, dc_id: vs1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:qaes5-yo2iq-rhzta-vsh6g-ksq6o-yxtlb-lakue-snalc-ubxec-h3hy6-hae NodeOperator { node_operator_principal_id: qaes5-yo2iq-rhzta-vsh6g-ksq6o-yxtlb-lakue-snalc-ubxec-h3hy6-hae, node_allowance: 0, node_provider_principal_id: eatbv-nlydd-n655c-g7j7p-gnmpz-pszdg-6e6et-veobv-ftz2y-4m752-vqe, dc_id: pc1, rewardable_nodes: {"type3.1": 4}, ipv6: None, max_rewardable_nodes: {"type3.1": 4} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/4 type3.1 node in pc1 DC: rewarded 21572500 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/4 type3.1 node in pc1 DC: rewarded 20493875 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/4 type3.1 node in pc1 DC: rewarded 19469181 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/4 type3.1 node in pc1 DC: rewarded 18495722 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 4 type3.1 nodes in pc1 DC: reward 80031278 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:qffmn-uqkl2-uuw6l-jo5i6-obdek-tix6f-u4odv-j3265-pcpcn-jy5le-lae NodeOperator { node_operator_principal_id: qffmn-uqkl2-uuw6l-jo5i6-obdek-tix6f-u4odv-j3265-pcpcn-jy5le-lae, node_allowance: 3, node_provider_principal_id: 6nbcy-kprg6-ax3db-kh3cz-7jllk-oceyh-jznhs-riguq-fvk6z-6tsds-rqe, dc_id: sg2, rewardable_nodes: {"type1.1": 11}, ipv6: None, max_rewardable_nodes: {"type1.1": 11} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 11 type1.1 nodes in sg2 DC: reward 135740000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:qxonx-2oxpk-42rse-zgvml-vtbzo-5u7zz-dueqb-olyxr-luapv-qxdax-wae NodeOperator { node_operator_principal_id: qxonx-2oxpk-42rse-zgvml-vtbzo-5u7zz-dueqb-olyxr-luapv-qxdax-wae, node_allowance: 14, node_provider_principal_id: 6nbcy-kprg6-ax3db-kh3cz-7jllk-oceyh-jznhs-riguq-fvk6z-6tsds-rqe, dc_id: sg2, rewardable_nodes: {"type1.1": 3}, ipv6: None, max_rewardable_nodes: {"type1.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 3 type1.1 nodes in sg2 DC: reward 37020000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:qyawb-e3c5d-fnbik-cuhw3-jmf75-iqley-zyryw-szosz-w4yrk-fnmba-hae NodeOperator { node_operator_principal_id: qyawb-e3c5d-fnbik-cuhw3-jmf75-iqley-zyryw-szosz-w4yrk-fnmba-hae, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: ma1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ma1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ma1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:raiov-7se2a-qvvut-fosrr-ewckg-wwvx5-yiyih-msga4-kibn2-tel4j-uae NodeOperator { node_operator_principal_id: raiov-7se2a-qvvut-fosrr-ewckg-wwvx5-yiyih-msga4-kibn2-tel4j-uae, node_allowance: 0, node_provider_principal_id: i3cfo-s2tgu-qe5ym-wk7e6-y7ura-pptgu-kevuf-2feh7-z4enq-5hz4s-mqe, dc_id: ld1, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in ld1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in ld1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in ld1 DC: reward 30059250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe NodeOperator { node_operator_principal_id: 2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe, node_allowance: 32, node_provider_principal_id: wwdbq-xuqhf-eydzu-oyl7p-ga565-zm7s7-yrive-ozgsy-zzgh3-qwb3j-cae, dc_id: or1, rewardable_nodes: {"type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in or1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:rhtt6-acsjc-c73k7-mnd7w-5253w-h35fr-lfknt-as6bb-rgxoy-xe4zr-dae NodeOperator { node_operator_principal_id: rhtt6-acsjc-c73k7-mnd7w-5253w-h35fr-lfknt-as6bb-rgxoy-xe4zr-dae, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: ta2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ta2 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ta2 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:rhuve-see6x-rv6g4-namsu-ckecy-uag4k-t3aih-rejnj-67tro-7ymwp-gae NodeOperator { node_operator_principal_id: rhuve-see6x-rv6g4-namsu-ckecy-uag4k-t3aih-rejnj-67tro-7ymwp-gae, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: wa3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in wa3 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in wa3 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ri4lg-drli2-d5zpi-tsseq-soivo-qrydm-cvjwd-dbmgz-al7fj-4al6w-iae NodeOperator { node_operator_principal_id: ri4lg-drli2-d5zpi-tsseq-soivo-qrydm-cvjwd-dbmgz-al7fj-4al6w-iae, node_allowance: 3, node_provider_principal_id: 7uioy-xitfw-yqcko-5gpya-3lpsw-dw7zt-dyyyf-wfqif-jvi76-fdbkg-cqe, dc_id: nd1, rewardable_nodes: {"type3.1": 12}, ipv6: None, max_rewardable_nodes: {"type3.1": 12} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/12 type3.1 node in nd1 DC: rewarded 20990417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/12 type3.1 node in nd1 DC: rewarded 19940896 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/12 type3.1 node in nd1 DC: rewarded 18943851 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/12 type3.1 node in nd1 DC: rewarded 17996658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/12 type3.1 node in nd1 DC: rewarded 17096825 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/12 type3.1 node in nd1 DC: rewarded 16241984 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/12 type3.1 node in nd1 DC: rewarded 15429885 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/12 type3.1 node in nd1 DC: rewarded 14658391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/12 type3.1 node in nd1 DC: rewarded 13925471 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/12 type3.1 node in nd1 DC: rewarded 13229197 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/12 type3.1 node in nd1 DC: rewarded 12567738 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/12 type3.1 node in nd1 DC: rewarded 11939351 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 12 type3.1 nodes in nd1 DC: reward 192960664 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:rpfog-5kglu-vhkia-m77kq-vrnd7-inji3-yyhpx-nu76x-36np7-4ghc2-3qe NodeOperator { node_operator_principal_id: rpfog-5kglu-vhkia-m77kq-vrnd7-inji3-yyhpx-nu76x-36np7-4ghc2-3qe, node_allowance: 14, node_provider_principal_id: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dc_id: br2, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:rsrz6-sc2oj-azljq-mxw7a-daryz-yxmzm-qyn67-6hls2-vnn5d-izzf5-pqe NodeOperator { node_operator_principal_id: rsrz6-sc2oj-azljq-mxw7a-daryz-yxmzm-qyn67-6hls2-vnn5d-izzf5-pqe, node_allowance: 1, node_provider_principal_id: gjsts-tuec7-wp6cl-zmk6w-sfpp6-ei34c-l7njq-les4c-yupv3-hbcpg-tae, dc_id: lu1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:rzskv-pde6u-albub-bojhe-odunj-k3nnf-j2eag-akkjm-o3ydz-z5tcy-vae NodeOperator { node_operator_principal_id: rzskv-pde6u-albub-bojhe-odunj-k3nnf-j2eag-akkjm-o3ydz-z5tcy-vae, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:s7dud-dfedw-dmrax-rjvop-5k4qw-htm4w-gj7ak-j2itz-txwwn-o5ymv-tae NodeOperator { node_operator_principal_id: s7dud-dfedw-dmrax-rjvop-5k4qw-htm4w-gj7ak-j2itz-txwwn-o5ymv-tae, node_allowance: 0, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 2}, ipv6: None, max_rewardable_nodes: {"type1.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type1.1 nodes in zh2 DC: reward 22720000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:slaxf-2q2iy-ikmsy-u2jnq-ev2u2-z2ryl-5w4ri-uf2v3-hxfuc-yrdbx-uae NodeOperator { node_operator_principal_id: slaxf-2q2iy-ikmsy-u2jnq-ev2u2-z2ryl-5w4ri-uf2v3-hxfuc-yrdbx-uae, node_allowance: 1, node_provider_principal_id: cp5ib-twnmx-h4dvd-isef2-tu44u-kb2ka-fise5-m4hta-hnxoq-k45mm-hqe, dc_id: gn1, rewardable_nodes: {"type3.1": 10}, ipv6: None, max_rewardable_nodes: {"type3.1": 10} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/10 type3.1 node in gn1 DC: rewarded 20990417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/10 type3.1 node in gn1 DC: rewarded 19940896 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/10 type3.1 node in gn1 DC: rewarded 18943851 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/10 type3.1 node in gn1 DC: rewarded 17996658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/10 type3.1 node in gn1 DC: rewarded 17096825 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/10 type3.1 node in gn1 DC: rewarded 16241984 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/10 type3.1 node in gn1 DC: rewarded 15429885 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/10 type3.1 node in gn1 DC: rewarded 14658391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/10 type3.1 node in gn1 DC: rewarded 13925471 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/10 type3.1 node in gn1 DC: rewarded 13229197 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 10 type3.1 nodes in gn1 DC: reward 168453575 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:sm6rh-sldoa-opp4o-d7ckn-y4r2g-eoqhv-nymok-teuto-4e5ep-yt6ky-bqe NodeOperator { node_operator_principal_id: sm6rh-sldoa-opp4o-d7ckn-y4r2g-eoqhv-nymok-teuto-4e5ep-yt6ky-bqe, node_allowance: 2, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type0": 0}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in zh2 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae NodeOperator { node_operator_principal_id: spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae, node_allowance: 17, node_provider_principal_id: wwdbq-xuqhf-eydzu-oyl7p-ga565-zm7s7-yrive-ozgsy-zzgh3-qwb3j-cae, dc_id: at2, rewardable_nodes: {"type1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1 nodes in at2 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:sqxhb-kreor-og6yg-hmbpu-mr3k7-b72at-dxjqk-xisvr-qkb6k-qmbt3-dae NodeOperator { node_operator_principal_id: sqxhb-kreor-og6yg-hmbpu-mr3k7-b72at-dxjqk-xisvr-qkb6k-qmbt3-dae, node_allowance: 0, node_provider_principal_id: ma7dp-gz4tg-3c2wv-pgnsv-wna7u-czvhu-fpu47-t4dr6-gzxql-wr2m2-qae, dc_id: zh5, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in zh5 DC: reward 318080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:srrm2-zawrj-4euwg-w24k6-yiwlj-ln6r7-kxkgb-itaal-efw4m-fp36x-bqe NodeOperator { node_operator_principal_id: srrm2-zawrj-4euwg-w24k6-yiwlj-ln6r7-kxkgb-itaal-efw4m-fp36x-bqe, node_allowance: 1, node_provider_principal_id: fwnmn-zn7yt-5jaia-fkxlr-dzwyu-keguq-npfxq-mc72w-exeae-n5thj-oae, dc_id: sc1, rewardable_nodes: {"type3.1": 7}, ipv6: None, max_rewardable_nodes: {"type3.1": 7} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/7 type3.1 node in sc1 DC: rewarded 16790260 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/7 type3.1 node in sc1 DC: rewarded 15950747 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/7 type3.1 node in sc1 DC: rewarded 15153209 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/7 type3.1 node in sc1 DC: rewarded 14395549 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/7 type3.1 node in sc1 DC: rewarded 13675771 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/7 type3.1 node in sc1 DC: rewarded 12991983 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/7 type3.1 node in sc1 DC: rewarded 12342384 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 7 type3.1 nodes in sc1 DC: reward 101299903 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:t37p3-2557c-vnn75-vn4xk-3x7kp-6nh4c-e4pv2-bhlnv-ee4f5-7chq4-rae NodeOperator { node_operator_principal_id: t37p3-2557c-vnn75-vn4xk-3x7kp-6nh4c-e4pv2-bhlnv-ee4f5-7chq4-rae, node_allowance: 28, node_provider_principal_id: izmhk-lpjum-uo4oy-lviba-yctpc-arg4b-2ywim-vgoiu-gqaj2-gskmw-2qe, dc_id: ch3, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in ch3 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in ch3 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:tcn4t-xktz4-qm6yk-udidk-m5ays-paeqx-xaevx-hb3fj-nvocf-vr5yq-yqe NodeOperator { node_operator_principal_id: tcn4t-xktz4-qm6yk-udidk-m5ays-paeqx-xaevx-hb3fj-nvocf-vr5yq-yqe, node_allowance: 3, node_provider_principal_id: izmhk-lpjum-uo4oy-lviba-yctpc-arg4b-2ywim-vgoiu-gqaj2-gskmw-2qe, dc_id: st1, rewardable_nodes: {"type1.1": 12}, ipv6: None, max_rewardable_nodes: {"type1.1": 11} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 12 type1.1 nodes in st1 DC: reward 120480000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:tisgk-lbq4u-zxwec-ak7ze-6ngg3-tjxhb-wasri-ska3d-ro6by-ba7vc-5ae NodeOperator { node_operator_principal_id: tisgk-lbq4u-zxwec-ak7ze-6ngg3-tjxhb-wasri-ska3d-ro6by-ba7vc-5ae, node_allowance: 0, node_provider_principal_id: 6r5lw-l7db7-uwixn-iw5en-yy55y-ilbtq-e6gcv-g22r2-j3g6q-y37jk-jqe, dc_id: zh7, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in zh7 DC: reward 159040000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:tnqod-r52q6-ub547-756zx-7fokh-l5uga-23zbn-lll2x-ebe5r-fdgyh-oae NodeOperator { node_operator_principal_id: tnqod-r52q6-ub547-756zx-7fokh-l5uga-23zbn-lll2x-ebe5r-fdgyh-oae, node_allowance: 1, node_provider_principal_id: g4gfo-2buho-hg3ho-pamsx-yg2vz-qnz2r-fsn65-j6dv7-myful-iy6vv-tqe, dc_id: sz1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:u4f3y-wubbf-lxfqi-v43pp-dfp7e-gxxct-22r5h-6mcbw-vmj33-5qqv5-nae NodeOperator { node_operator_principal_id: u4f3y-wubbf-lxfqi-v43pp-dfp7e-gxxct-22r5h-6mcbw-vmj33-5qqv5-nae, node_allowance: 14, node_provider_principal_id: spp3m-vawt7-3gyh6-pjz5d-6zidf-up3qb-yte62-otexv-vfpqg-n6awf-lqe, dc_id: ny1, rewardable_nodes: {"type0": 0, "type1": 14}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in ny1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1 nodes in ny1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:u7afs-z2fqh-zbqyo-jufwe-3vqqs-chc7f-k2fe4-rt66w-l4qia-keuuj-qqe NodeOperator { node_operator_principal_id: u7afs-z2fqh-zbqyo-jufwe-3vqqs-chc7f-k2fe4-rt66w-l4qia-keuuj-qqe, node_allowance: 1, node_provider_principal_id: mrfhx-rsvqz-jndwd-3nrkb-fw3wy-cq64z-iszxt-drffc-f4rtj-ivoop-6ae, dc_id: vd1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ueggl-7wvx2-2eezj-mgjrg-w6tmy-ngmye-xxbwu-gumli-hdf7u-zzpng-3ae NodeOperator { node_operator_principal_id: ueggl-7wvx2-2eezj-mgjrg-w6tmy-ngmye-xxbwu-gumli-hdf7u-zzpng-3ae, node_allowance: 1, node_provider_principal_id: 7uioy-xitfw-yqcko-5gpya-3lpsw-dw7zt-dyyyf-wfqif-jvi76-fdbkg-cqe, dc_id: mtl1, rewardable_nodes: {"type3.1": 2}, ipv6: None, max_rewardable_nodes: {"type3.1": 2} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/2 type3.1 node in mtl1 DC: rewarded 15429583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/2 type3.1 node in mtl1 DC: rewarded 10800708 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type3.1 nodes in mtl1 DC: reward 26230291 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe NodeOperator { node_operator_principal_id: ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe, node_allowance: 37, node_provider_principal_id: wdnqm-clqti-im5yf-iapio-avjom-kyppl-xuiza-oaz6z-smmts-52wyg-5ae, dc_id: fr2, rewardable_nodes: {"type1.1": 19}, ipv6: None, max_rewardable_nodes: {"type1.1": 9} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 19 type1.1 nodes in fr2 DC: reward 201590000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ukji3-ju5bx-ty5r7-qwk4p-eobil-isp26-fsomg-44kwf-j4ew7-ozkqy-wqe NodeOperator { node_operator_principal_id: ukji3-ju5bx-ty5r7-qwk4p-eobil-isp26-fsomg-44kwf-j4ew7-ozkqy-wqe, node_allowance: 0, node_provider_principal_id: 4dibr-2alzr-h6kva-bvwn2-yqgsl-o577t-od46o-v275p-a2zov-tcw4f-eae, dc_id: sl1, rewardable_nodes: {"type3": 16, "type3.1": 9}, ipv6: None, max_rewardable_nodes: {"type3": 16, "type3.1": 9} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/16 type3 node in sl1 DC: rewarded 25317500 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/16 type3 node in sl1 DC: rewarded 24811150 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/16 type3 node in sl1 DC: rewarded 24314926 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/16 type3 node in sl1 DC: rewarded 23828628 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/16 type3 node in sl1 DC: rewarded 23352055 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/16 type3 node in sl1 DC: rewarded 22885014 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/16 type3 node in sl1 DC: rewarded 22427314 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/16 type3 node in sl1 DC: rewarded 21978768 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/16 type3 node in sl1 DC: rewarded 21539192 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/16 type3 node in sl1 DC: rewarded 21108408 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/16 type3 node in sl1 DC: rewarded 20686240 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/16 type3 node in sl1 DC: rewarded 20272515 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 12/16 type3 node in sl1 DC: rewarded 19867065 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 13/16 type3 node in sl1 DC: rewarded 19469724 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 14/16 type3 node in sl1 DC: rewarded 19080329 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 15/16 type3 node in sl1 DC: rewarded 18698723 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 16 type3 nodes in sl1 DC: reward 349637551 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/9 type3.1 node in sl1 DC: rewarded 15613975 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/9 type3.1 node in sl1 DC: rewarded 14833276 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/9 type3.1 node in sl1 DC: rewarded 14091613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/9 type3.1 node in sl1 DC: rewarded 13387032 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/9 type3.1 node in sl1 DC: rewarded 12717680 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/9 type3.1 node in sl1 DC: rewarded 12081796 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/9 type3.1 node in sl1 DC: rewarded 11477706 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/9 type3.1 node in sl1 DC: rewarded 10903821 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/9 type3.1 node in sl1 DC: rewarded 10358630 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 9 type3.1 nodes in sl1 DC: reward 115465529 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vezyg-car5u-zvj3o-epfvq-qjnr6-evurx-ecxv3-q3oia-2qdu2-vssem-6qe NodeOperator { node_operator_principal_id: vezyg-car5u-zvj3o-epfvq-qjnr6-evurx-ecxv3-q3oia-2qdu2-vssem-6qe, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: ba1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ba1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ba1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vgi2b-fhndq-24oha-7rldm-opbg7-juriu-ecmms-llcn6-f5dw4-x3m5j-rqe NodeOperator { node_operator_principal_id: vgi2b-fhndq-24oha-7rldm-opbg7-juriu-ecmms-llcn6-f5dw4-x3m5j-rqe, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: ma1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ma1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ma1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vicvb-nkzkt-tj2lz-yzzw4-gfcsj-3eggv-izdti-tarpt-fsojm-lgq22-wae NodeOperator { node_operator_principal_id: vicvb-nkzkt-tj2lz-yzzw4-gfcsj-3eggv-izdti-tarpt-fsojm-lgq22-wae, node_allowance: 0, node_provider_principal_id: x7uok-pi537-itm37-unjn3-ewkze-kuetg-kptap-nuqak-auq7z-tn5ey-dqe, dc_id: sg3, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in sg3 DC: reward 345520000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vkwql-433e7-au6b7-v5g7z-tduiu-no4od-6wb4c-z5zru-vzssq-zwspo-dqe NodeOperator { node_operator_principal_id: vkwql-433e7-au6b7-v5g7z-tduiu-no4od-6wb4c-z5zru-vzssq-zwspo-dqe, node_allowance: 28, node_provider_principal_id: spp3m-vawt7-3gyh6-pjz5d-6zidf-up3qb-yte62-otexv-vfpqg-n6awf-lqe, dc_id: ch2, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in ch2 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in ch2 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vqe65-zvwhc-x7bw7-76c74-3dc6v-v6uzb-nyfvb-6wgnv-nhiew-fkoug-oqe NodeOperator { node_operator_principal_id: vqe65-zvwhc-x7bw7-76c74-3dc6v-v6uzb-nyfvb-6wgnv-nhiew-fkoug-oqe, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:vzsx4-ldpic-3zcoa-mfki2-gfsai-ok7ap-gb2sp-fxvaf-ckd7h-jluem-qqe NodeOperator { node_operator_principal_id: vzsx4-ldpic-3zcoa-mfki2-gfsai-ok7ap-gb2sp-fxvaf-ckd7h-jluem-qqe, node_allowance: 0, node_provider_principal_id: r3yjn-kthmg-pfgmb-2fngg-5c7d7-t6kqg-wi37r-j7gy6-iee64-kjdja-jae, dc_id: hk1, rewardable_nodes: {"type3": 8, "type3.1": 10}, ipv6: None, max_rewardable_nodes: {"type3": 8, "type3.1": 10} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/8 type3 node in hk1 DC: rewarded 25317500 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/8 type3 node in hk1 DC: rewarded 24811150 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/8 type3 node in hk1 DC: rewarded 24314926 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/8 type3 node in hk1 DC: rewarded 23828628 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/8 type3 node in hk1 DC: rewarded 23352055 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/8 type3 node in hk1 DC: rewarded 22885014 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/8 type3 node in hk1 DC: rewarded 22427314 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/8 type3 node in hk1 DC: rewarded 21978768 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 8 type3 nodes in hk1 DC: reward 188915355 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/10 type3.1 node in hk1 DC: rewarded 16356273 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/10 type3.1 node in hk1 DC: rewarded 15538460 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/10 type3.1 node in hk1 DC: rewarded 14761537 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/10 type3.1 node in hk1 DC: rewarded 14023460 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/10 type3.1 node in hk1 DC: rewarded 13322287 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/10 type3.1 node in hk1 DC: rewarded 12656172 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/10 type3.1 node in hk1 DC: rewarded 12023364 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/10 type3.1 node in hk1 DC: rewarded 11422196 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/10 type3.1 node in hk1 DC: rewarded 10851086 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/10 type3.1 node in hk1 DC: rewarded 10308531 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 10 type3.1 nodes in hk1 DC: reward 131263366 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:w22jb-r5bxs-5eyh6-yucbf-6aocs-bomyg-x4rix-ewa2i-ccpsi-ugend-7ae NodeOperator { node_operator_principal_id: w22jb-r5bxs-5eyh6-yucbf-6aocs-bomyg-x4rix-ewa2i-ccpsi-ugend-7ae, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: ma1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ma1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ma1 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:wmrev-cdq34-iqwdm-oeaak-f6kch-s4axw-ojbhe-yuolf-bazh4-rjdty-oae NodeOperator { node_operator_principal_id: wmrev-cdq34-iqwdm-oeaak-f6kch-s4axw-ojbhe-yuolf-bazh4-rjdty-oae, node_allowance: 28, node_provider_principal_id: spp3m-vawt7-3gyh6-pjz5d-6zidf-up3qb-yte62-otexv-vfpqg-n6awf-lqe, dc_id: jv1, rewardable_nodes: {"type0": 0, "type1": 28}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 0 type0 nodes in jv1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1 nodes in jv1 DC: reward 0 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:wqyl3-uvtrm-5lhi3-rjcas-ntrhs-bimkv-viu7b-2tff6-ervao-u2cjg-wqe NodeOperator { node_operator_principal_id: wqyl3-uvtrm-5lhi3-rjcas-ntrhs-bimkv-viu7b-2tff6-ervao-u2cjg-wqe, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:wrg4t-j7q47-ujpct-veypa-6s2w7-6jw5o-z4iec-wc7er-egjlo-t4kza-7qe NodeOperator { node_operator_principal_id: wrg4t-j7q47-ujpct-veypa-6s2w7-6jw5o-z4iec-wc7er-egjlo-t4kza-7qe, node_allowance: 0, node_provider_principal_id: 2wxzd-qrbrs-ailta-kdtyb-ucg35-xcxd4-txevb-ot7hx-wiyus-szcca-nqe, dc_id: to1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in to1 DC: reward 304640000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:wtsc7-nooey-5r454-alljc-g2thc-i52hy-acwfo-y2oub-vthqx-3wpy2-fqe NodeOperator { node_operator_principal_id: wtsc7-nooey-5r454-alljc-g2thc-i52hy-acwfo-y2oub-vthqx-3wpy2-fqe, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: ma3, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ma3 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ma3 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:wuhly-wzzty-vwzqm-47prf-tidoe-bfiay-f66cb-f4y4a-qle2m-6afa2-cqe NodeOperator { node_operator_principal_id: wuhly-wzzty-vwzqm-47prf-tidoe-bfiay-f66cb-f4y4a-qle2m-6afa2-cqe, node_allowance: 28, node_provider_principal_id: 6nbcy-kprg6-ax3db-kh3cz-7jllk-oceyh-jznhs-riguq-fvk6z-6tsds-rqe, dc_id: sg1, rewardable_nodes: {"type1.1": 2}, ipv6: None, max_rewardable_nodes: {"type1.1": 3} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 2 type1.1 nodes in sg1 DC: reward 24680000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:x7fjr-ngws7-jpjtq-e3c7s-735uk-gyusv-ppoeh-n4xhg-fwjck-um6pf-fae NodeOperator { node_operator_principal_id: x7fjr-ngws7-jpjtq-e3c7s-735uk-gyusv-ppoeh-n4xhg-fwjck-um6pf-fae, node_allowance: 1, node_provider_principal_id: py2kr-ipr2p-ryh66-x3a3v-5ts6u-7rfhf-alkna-ueffh-hz5ox-lt6du-qqe, dc_id: ct2, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in ct2 DC: rewarded 23106250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in ct2 DC: rewarded 21950937 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in ct2 DC: rewarded 20853390 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in ct2 DC: rewarded 19810721 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in ct2 DC: rewarded 18820185 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in ct2 DC: rewarded 17879175 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in ct2 DC: reward 122420658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xbvdm-vrdwg-wcvpo-dwsdp-akpmo-sresk-53cg5-mwpn3-adhco-rwzym-gqe NodeOperator { node_operator_principal_id: xbvdm-vrdwg-wcvpo-dwsdp-akpmo-sresk-53cg5-mwpn3-adhco-rwzym-gqe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: li1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in li1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in li1 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xcne4-m67do-bnrkt-ny5xy-gxepb-5jycf-kcuvt-bdmh6-w565c-fvmdo-oae NodeOperator { node_operator_principal_id: xcne4-m67do-bnrkt-ny5xy-gxepb-5jycf-kcuvt-bdmh6-w565c-fvmdo-oae, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xdara-l6rzn-6rkv5-lwrfr-6idlg-nptsg-7x64q-w4vfd-dhwre-2pkwz-qqe NodeOperator { node_operator_principal_id: xdara-l6rzn-6rkv5-lwrfr-6idlg-nptsg-7x64q-w4vfd-dhwre-2pkwz-qqe, node_allowance: 0, node_provider_principal_id: w4buy-lgwzr-pccs7-huzhh-qqnws-rns75-iaoox-jolrm-xs2ra-vdu3o-2qe, dc_id: ge1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in ge1 DC: reward 159040000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xh7oz-ir657-v4jec-houqx-fzjww-cdhhn-mock3-e5eat-4a4pb-yxljv-mqe NodeOperator { node_operator_principal_id: xh7oz-ir657-v4jec-houqx-fzjww-cdhhn-mock3-e5eat-4a4pb-yxljv-mqe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: ta1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ta1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ta1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xph6u-z3z2t-s7hh7-gtlxh-bbgbx-aatlm-eab4o-bsank-nqruh-3ub4q-sae NodeOperator { node_operator_principal_id: xph6u-z3z2t-s7hh7-gtlxh-bbgbx-aatlm-eab4o-bsank-nqruh-3ub4q-sae, node_allowance: 0, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: se1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type0": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xr5zy-ul4p7-jknh5-gvj4s-z5k3u-tufip-hwpdl-dfeh7-flo7e-sxqgi-pqe NodeOperator { node_operator_principal_id: xr5zy-ul4p7-jknh5-gvj4s-z5k3u-tufip-hwpdl-dfeh7-flo7e-sxqgi-pqe, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: bt1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in bt1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in bt1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:xva5m-wnbzg-6ean2-jy7nd-x45u2-2nyym-meijo-f5qek-raubh-3n76g-jqe NodeOperator { node_operator_principal_id: xva5m-wnbzg-6ean2-jy7nd-x45u2-2nyym-meijo-f5qek-raubh-3n76g-jqe, node_allowance: 0, node_provider_principal_id: ss6oe-fm7b2-b5r57-y3x74-omrz5-d5pgy-5iwtw-4aew5-aqj3l-6ydra-wqe, dc_id: ch2, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in ch2 DC: reward 281120000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:y2spu-chbfj-rqcqx-dt6yl-eni7b-knczq-afpyy-tm65i-kzrlx-fjdtc-oqe NodeOperator { node_operator_principal_id: y2spu-chbfj-rqcqx-dt6yl-eni7b-knczq-afpyy-tm65i-kzrlx-fjdtc-oqe, node_allowance: 0, node_provider_principal_id: diyay-s4rfq-xnx23-zczwi-nptra-5254n-e4zn6-p7tqe-vqhzr-sd4gd-bqe, dc_id: li1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in li1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in li1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:y3du2-sq3a6-77vah-wj3cb-r72q2-lxo4k-t2fxb-odc7n-xyf7n-zbnkd-vae NodeOperator { node_operator_principal_id: y3du2-sq3a6-77vah-wj3cb-r72q2-lxo4k-t2fxb-odc7n-xyf7n-zbnkd-vae, node_allowance: 0, node_provider_principal_id: ivf2y-crxj4-y6ewo-un35q-a7pum-wqmbw-pkepy-d6uew-bfmff-g5yxe-eae, dc_id: bt1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in bt1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in bt1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:y3nsb-fnmit-izacl-h6xxg-djjye-lgpll-hpsot-oztv7-ezzge-7w2ot-nqe NodeOperator { node_operator_principal_id: y3nsb-fnmit-izacl-h6xxg-djjye-lgpll-hpsot-oztv7-ezzge-7w2ot-nqe, node_allowance: 0, node_provider_principal_id: 3oqw6-vmpk2-mlwlx-52z5x-e3p7u-fjlcw-yxc34-lf2zq-6ub2f-v63hk-lae, dc_id: ta2, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ta2 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ta2 DC: reward 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:y4c7z-5wyt7-h4dtr-s77cd-t5pue-ajl7h-65ct4-ab5dr-fjaqa-x63kh-xqe NodeOperator { node_operator_principal_id: y4c7z-5wyt7-h4dtr-s77cd-t5pue-ajl7h-65ct4-ab5dr-fjaqa-x63kh-xqe, node_allowance: 1, node_provider_principal_id: bvcsg-3od6r-jnydw-eysln-aql7w-td5zn-ay5m6-sibd2-jzojt-anwag-mqe, dc_id: zh2, rewardable_nodes: {"type1.1": 1}, ipv6: None, max_rewardable_nodes: {"type1.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type1.1 nodes in zh2 DC: reward 11360000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:yedtm-rm5av-s256v-zzi4w-7lxen-koqg6-pzak3-rjzko-xfu2c-dw7eo-bae NodeOperator { node_operator_principal_id: yedtm-rm5av-s256v-zzi4w-7lxen-koqg6-pzak3-rjzko-xfu2c-dw7eo-bae, node_allowance: 1, node_provider_principal_id: hycj4-e3jwh-l2bqz-ohuxh-tu4af-agzov-uugg6-j57rk-b6opc-fx3ml-kqe, dc_id: ag1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:yhfy4-ny5ww-huz33-bkxym-eu27d-htlt4-yi77a-hvdqb-wpdlv-2cky7-uae NodeOperator { node_operator_principal_id: yhfy4-ny5ww-huz33-bkxym-eu27d-htlt4-yi77a-hvdqb-wpdlv-2cky7-uae, node_allowance: 0, node_provider_principal_id: vegae-c4chr-aetfj-7gzuh-c23sx-u2paz-vmvbn-bcage-pu7lu-mptnn-eqe, dc_id: tb1, rewardable_nodes: {"type3.1": 18}, ipv6: None, max_rewardable_nodes: {"type3.1": 18} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/18 type3.1 node in tb1 DC: rewarded 23939583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/18 type3.1 node in tb1 DC: rewarded 22742603 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/18 type3.1 node in tb1 DC: rewarded 21605473 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/18 type3.1 node in tb1 DC: rewarded 20525199 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/18 type3.1 node in tb1 DC: rewarded 19498939 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/18 type3.1 node in tb1 DC: rewarded 18523992 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/18 type3.1 node in tb1 DC: rewarded 17597793 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/18 type3.1 node in tb1 DC: rewarded 16717903 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/18 type3.1 node in tb1 DC: rewarded 15882008 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/18 type3.1 node in tb1 DC: rewarded 15087908 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 10/18 type3.1 node in tb1 DC: rewarded 14333512 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 11/18 type3.1 node in tb1 DC: rewarded 13616837 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 12/18 type3.1 node in tb1 DC: rewarded 12935995 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 13/18 type3.1 node in tb1 DC: rewarded 12289195 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 14/18 type3.1 node in tb1 DC: rewarded 11674735 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 15/18 type3.1 node in tb1 DC: rewarded 11090998 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 16/18 type3.1 node in tb1 DC: rewarded 10536448 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 17/18 type3.1 node in tb1 DC: rewarded 10009626 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 18 type3.1 nodes in tb1 DC: reward 288608747 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ylbc3-d72nf-cv76h-era7m-zefob-r5kyw-kvdtp-xq4ep-nthfy-ml5ua-iae NodeOperator { node_operator_principal_id: ylbc3-d72nf-cv76h-era7m-zefob-r5kyw-kvdtp-xq4ep-nthfy-ml5ua-iae, node_allowance: 3, node_provider_principal_id: glrjs-2dbzh-owbdd-fpp5e-eweoz-nsuto-e3jmk-tl42c-wem4f-qfpfa-qqe, dc_id: im2, rewardable_nodes: {"type1.1": 42}, ipv6: None, max_rewardable_nodes: {"type1.1": 42} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 42 type1.1 nodes in im2 DC: reward 569940000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ymenq-4sr5h-3imm6-kjjw6-2knuy-ntmlu-oqf5k-vdnzv-z427q-gqdot-sae NodeOperator { node_operator_principal_id: ymenq-4sr5h-3imm6-kjjw6-2knuy-ntmlu-oqf5k-vdnzv-z427q-gqdot-sae, node_allowance: 0, node_provider_principal_id: mme7u-zxs3z-jq3un-fbaly-nllcz-toct2-l2kp3-larrb-gti4r-u2bmo-dae, dc_id: jb3, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in jb3 DC: rewarded 23106250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in jb3 DC: rewarded 21950937 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in jb3 DC: rewarded 20853390 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in jb3 DC: rewarded 19810721 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in jb3 DC: rewarded 18820185 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in jb3 DC: rewarded 17879175 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in jb3 DC: reward 122420658 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:yngfj-akg4s-nectt-whzgk-5zqbw-z3e5u-zuycn-zqygi-xz4vt-244v6-zae NodeOperator { node_operator_principal_id: yngfj-akg4s-nectt-whzgk-5zqbw-z3e5u-zuycn-zqygi-xz4vt-244v6-zae, node_allowance: 14, node_provider_principal_id: 7ryes-jnj73-bsyu4-lo6h7-lbxk5-x4ien-lylws-5qwzl-hxd5f-xjh3w-mqe, dc_id: ge1, rewardable_nodes: {"type1.1": 14}, ipv6: None, max_rewardable_nodes: {"type1.1": 14} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 14 type1.1 nodes in ge1 DC: reward 159040000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ywjtr-pq5wc-m6foq-tyxvk-2a3wc-dlg3k-aaebf-6rk2d-5yvn7-tf743-gqe NodeOperator { node_operator_principal_id: ywjtr-pq5wc-m6foq-tyxvk-2a3wc-dlg3k-aaebf-6rk2d-5yvn7-tf743-gqe, node_allowance: 4, node_provider_principal_id: eybf4-6t6bb-unfb2-h2hhn-rrfi2-cd2vs-phksn-jdmbn-i463m-4lzds-vqe, dc_id: cm1, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in cm1 DC: rewarded 22000000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in cm1 DC: rewarded 20900000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in cm1 DC: rewarded 19855000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in cm1 DC: rewarded 18862249 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in cm1 DC: rewarded 17919137 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in cm1 DC: rewarded 17023180 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in cm1 DC: reward 116559566 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:z2o65-c4ahi-sayhz-f5hnm-rbb56-4py6j-grmqx-ixfly-velus-4duua-7ae NodeOperator { node_operator_principal_id: z2o65-c4ahi-sayhz-f5hnm-rbb56-4py6j-grmqx-ixfly-velus-4duua-7ae, node_allowance: 28, node_provider_principal_id: sixix-2nyqd-t2k2v-vlsyz-dssko-ls4hl-hyij4-y7mdp-ja6cj-nsmpf-yae, dc_id: ty1, rewardable_nodes: {"type1.1": 13}, ipv6: None, max_rewardable_nodes: {"type1.1": 13} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 13 type1.1 nodes in ty1 DC: reward 154440000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:z4wll-7faab-6nzvh-bongq-wk46y-3y5th-ou7ft-lwlmf-35vzy-3bmqo-3qe NodeOperator { node_operator_principal_id: z4wll-7faab-6nzvh-bongq-wk46y-3y5th-ou7ft-lwlmf-35vzy-3bmqo-3qe, node_allowance: 1, node_provider_principal_id: acqus-l4yyc-h44lw-grfxw-h7jqf-mtvt3-huwmj-4s372-sc5db-5nsfr-2ae, dc_id: an1, rewardable_nodes: {"type1.1": 28}, ipv6: None, max_rewardable_nodes: {"type1.1": 28} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 28 type1.1 nodes in an1 DC: reward 297080000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:z6cfb-dbya3-nh4pm-nyteq-76n7d-xzi27-tf3cg-t7sz7-244qt-6rnjy-3ae NodeOperator { node_operator_principal_id: z6cfb-dbya3-nh4pm-nyteq-76n7d-xzi27-tf3cg-t7sz7-244qt-6rnjy-3ae, node_allowance: 0, node_provider_principal_id: g2ax6-jrkmb-3zuh3-jibtb-q5xoq-njrgo-5utbc-j2o7g-zfq2w-yyhky-dqe, dc_id: hk1, rewardable_nodes: {"type3.1": 10}, ipv6: None, max_rewardable_nodes: {"type3.1": 10} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/10 type3.1 node in hk1 DC: rewarded 19225417 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/10 type3.1 node in hk1 DC: rewarded 18264146 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/10 type3.1 node in hk1 DC: rewarded 17350938 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/10 type3.1 node in hk1 DC: rewarded 16483391 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/10 type3.1 node in hk1 DC: rewarded 15659222 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/10 type3.1 node in hk1 DC: rewarded 14876261 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 6/10 type3.1 node in hk1 DC: rewarded 14132448 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 7/10 type3.1 node in hk1 DC: rewarded 13425825 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 8/10 type3.1 node in hk1 DC: rewarded 12754534 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 9/10 type3.1 node in hk1 DC: rewarded 12116807 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 10 type3.1 nodes in hk1 DC: reward 154288989 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:z7r2x-uehbj-zovap-p6tvn-m6fso-uzoyx-coz3y-pc6gh-k2boc-aphlm-bae NodeOperator { node_operator_principal_id: z7r2x-uehbj-zovap-p6tvn-m6fso-uzoyx-coz3y-pc6gh-k2boc-aphlm-bae, node_allowance: 0, node_provider_principal_id: 4r6qy-tljxg-slziw-zoteo-pboxh-vlctz-hkv2d-7zior-u3pxm-mmuxb-cae, dc_id: ta1, rewardable_nodes: {"type3.1": 1}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3.1 node in ta1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3.1 nodes in ta1 DC: reward 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:zc635-ppr46-ap6eg-pghtn-wtnxz-6czvv-a4uxm-adjgb-wtoh4-2ddnl-uae NodeOperator { node_operator_principal_id: zc635-ppr46-ap6eg-pghtn-wtnxz-6czvv-a4uxm-adjgb-wtoh4-2ddnl-uae, node_allowance: 0, node_provider_principal_id: efem5-kmwaw-xose7-zzhgg-6bfif-twmcw-csg7a-lmqvn-wrdou-mjwlb-vqe, dc_id: bn1, rewardable_nodes: {"type3.1": 6}, ipv6: None, max_rewardable_nodes: {"type3.1": 6} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/6 type3.1 node in bn1 DC: rewarded 15415000 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 1/6 type3.1 node in bn1 DC: rewarded 14644250 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 2/6 type3.1 node in bn1 DC: rewarded 13912037 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 3/6 type3.1 node in bn1 DC: rewarded 13216435 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 4/6 type3.1 node in bn1 DC: rewarded 12555613 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 5/6 type3.1 node in bn1 DC: rewarded 11927833 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 6 type3.1 nodes in bn1 DC: reward 81671168 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:zhlzs-2otly-4u7vw-qkz7m-2m7aw-bhwmv-yylta-7w4zi-yrrpj-g7eoa-2qe NodeOperator { node_operator_principal_id: zhlzs-2otly-4u7vw-qkz7m-2m7aw-bhwmv-yylta-7w4zi-yrrpj-g7eoa-2qe, node_allowance: 2, node_provider_principal_id: ulyfm-vkxtj-o42dg-e4nam-l4tzf-37wci-ggntw-4ma7y-d267g-ywxi6-iae, dc_id: mtl1, rewardable_nodes: {"type3": 1}, ipv6: None, max_rewardable_nodes: {"type3": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] 0/1 type3 node in mtl1 DC: rewarded 15429583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] Rewards for all 1 type3 nodes in mtl1 DC: reward 15429583 +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:ziab5-kch42-6jhxt-26xf7-wej5v-xw4oh-36m5y-yba7v-xrtpv-pobv3-fqe NodeOperator { node_operator_principal_id: ziab5-kch42-6jhxt-26xf7-wej5v-xw4oh-36m5y-yba7v-xrtpv-pobv3-fqe, node_allowance: 1, node_provider_principal_id: qpwbv-tu7uj-vpndf-talpd-zufus-itpe5-n66ua-yahhs-ttiu5-ileoc-2qe, dc_id: fl1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {"type3.1": 1} } +2026-01-03 20:36:18.948932921 UTC: [Canister sgymv-uiaaa-aaaaa-aaaia-cai] node operator with key:zsywq-v573p-pkz7x-qqkdd-34sdg-6y3f2-37cdu-y7xe5-kcxj6-23eoz-pae NodeOperator { node_operator_principal_id: zsywq-v573p-pkz7x-qqkdd-34sdg-6y3f2-37cdu-y7xe5-kcxj6-23eoz-pae, node_allowance: 28, node_provider_principal_id: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dc_id: br1, rewardable_nodes: {}, ipv6: None, max_rewardable_nodes: {} } +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 687759068234458157 }, subaccount: Subaccount([65, 157, 217, 138, 211, 107, 71, 153, 88, 107, 23, 45, 104, 119, 84, 74, 98, 195, 65, 90, 252, 6, 231, 207, 144, 105, 55, 129, 35, 166, 207, 104]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957954 }, hot_keys: [], cached_neuron_stake_e8s: 1113935453, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353154, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353154, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 733029070889328719 }, subaccount: Subaccount([28, 45, 231, 135, 64, 241, 99, 77, 77, 19, 245, 164, 183, 110, 143, 129, 219, 240, 84, 223, 109, 99, 161, 124, 187, 169, 203, 5, 77, 241, 176, 108]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302402 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697602, spawn_at_timestamp_seconds: Some(1765302402), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 9409280779, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697602, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 733029070889328719 }, subaccount: Subaccount([28, 45, 231, 135, 64, 241, 99, 77, 77, 19, 245, 164, 183, 110, 143, 129, 219, 240, 84, 223, 109, 99, 161, 124, 187, 169, 203, 5, 77, 241, 176, 108]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302402 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 9818584492, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697602, spawn_at_timestamp_seconds: None, followees: {13: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697602, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 736996440180822856 }, subaccount: Subaccount([140, 185, 251, 96, 19, 175, 111, 169, 246, 253, 80, 169, 145, 232, 232, 28, 42, 129, 148, 135, 113, 94, 140, 122, 159, 156, 30, 39, 13, 100, 235, 244]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765137544 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764532744, spawn_at_timestamp_seconds: Some(1765137544), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113821782, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764532744, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 736996440180822856 }, subaccount: Subaccount([140, 185, 251, 96, 19, 175, 111, 169, 246, 253, 80, 169, 145, 232, 232, 28, 42, 129, 148, 135, 113, 94, 140, 122, 159, 156, 30, 39, 13, 100, 235, 244]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765137544 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 118773029, neuron_fees_e8s: 0, created_timestamp_seconds: 1764532744, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764532744, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 878383597411834448 }, subaccount: Subaccount([193, 196, 48, 95, 212, 152, 244, 206, 128, 107, 18, 34, 89, 160, 171, 251, 15, 231, 164, 28, 162, 139, 75, 67, 72, 138, 99, 254, 67, 7, 124, 243]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225185 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620385, spawn_at_timestamp_seconds: Some(1765225185), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33439145575, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620385, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 878383597411834448 }, subaccount: Subaccount([193, 196, 48, 95, 212, 152, 244, 206, 128, 107, 18, 34, 89, 160, 171, 251, 15, 231, 164, 28, 162, 139, 75, 67, 72, 138, 99, 254, 67, 7, 124, 243]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225185 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 34893748407, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620385, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620385, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 904420497259851999 }, subaccount: Subaccount([68, 107, 151, 171, 197, 51, 171, 245, 25, 57, 186, 243, 153, 52, 19, 11, 65, 39, 22, 124, 154, 76, 247, 221, 247, 91, 46, 78, 107, 184, 192, 203]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217306 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612506, spawn_at_timestamp_seconds: Some(1765217306), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695168, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612506, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 904420497259851999 }, subaccount: Subaccount([68, 107, 151, 171, 197, 51, 171, 245, 25, 57, 186, 243, 153, 52, 19, 11, 65, 39, 22, 124, 154, 76, 247, 221, 247, 91, 46, 78, 107, 184, 192, 203]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217306 }, hot_keys: [], cached_neuron_stake_e8s: 667521907, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612506, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612506, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 935395091369369704 }, subaccount: Subaccount([13, 28, 208, 230, 135, 105, 133, 118, 145, 30, 53, 103, 225, 110, 231, 108, 20, 193, 247, 91, 214, 82, 95, 163, 178, 69, 63, 145, 108, 62, 34, 158]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302183 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697383, spawn_at_timestamp_seconds: Some(1765302183), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 102440409853, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697383, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 935395091369369704 }, subaccount: Subaccount([13, 28, 208, 230, 135, 105, 133, 118, 145, 30, 53, 103, 225, 110, 231, 108, 20, 193, 247, 91, 214, 82, 95, 163, 178, 69, 63, 145, 108, 62, 34, 158]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302183 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 106896567681, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697383, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697383, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1021751682278017666 }, subaccount: Subaccount([230, 178, 137, 54, 248, 73, 18, 185, 23, 147, 33, 186, 103, 2, 142, 234, 124, 238, 32, 56, 25, 29, 21, 225, 60, 227, 1, 230, 103, 101, 246, 217]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217904 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613104, spawn_at_timestamp_seconds: Some(1765217904), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696869, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613104, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1021751682278017666 }, subaccount: Subaccount([230, 178, 137, 54, 248, 73, 18, 185, 23, 147, 33, 186, 103, 2, 142, 234, 124, 238, 32, 56, 25, 29, 21, 225, 60, 227, 1, 230, 103, 101, 246, 217]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217904 }, hot_keys: [], cached_neuron_stake_e8s: 667523682, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613104, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613104, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1147620705961822703 }, subaccount: Subaccount([147, 163, 210, 99, 91, 3, 13, 16, 201, 175, 176, 76, 100, 76, 65, 170, 91, 155, 252, 209, 13, 192, 132, 108, 54, 93, 104, 107, 86, 120, 36, 38]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765102561 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764497761, spawn_at_timestamp_seconds: Some(1765102561), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 47726717283, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764497761, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1147620705961822703 }, subaccount: Subaccount([147, 163, 210, 99, 91, 3, 13, 16, 201, 175, 176, 76, 100, 76, 65, 170, 91, 155, 252, 209, 13, 192, 132, 108, 54, 93, 104, 107, 86, 120, 36, 38]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765102561 }, hot_keys: [], cached_neuron_stake_e8s: 49802829484, neuron_fees_e8s: 0, created_timestamp_seconds: 1764497761, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764497761, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1203166161364339646 }, subaccount: Subaccount([68, 198, 37, 118, 93, 175, 23, 61, 56, 97, 117, 204, 86, 133, 184, 58, 224, 130, 84, 61, 169, 224, 166, 34, 236, 183, 142, 193, 156, 83, 132, 134]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216866 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612066, spawn_at_timestamp_seconds: Some(1765216866), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 529155661, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612066, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1203166161364339646 }, subaccount: Subaccount([68, 198, 37, 118, 93, 175, 23, 61, 56, 97, 117, 204, 86, 133, 184, 58, 224, 130, 84, 61, 169, 224, 166, 34, 236, 183, 142, 193, 156, 83, 132, 134]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216866 }, hot_keys: [], cached_neuron_stake_e8s: 552173932, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612066, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612066, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1252608305785725674 }, subaccount: Subaccount([21, 71, 228, 10, 191, 221, 60, 221, 97, 32, 177, 30, 252, 252, 1, 184, 249, 28, 100, 170, 219, 136, 197, 119, 112, 90, 171, 54, 142, 117, 5, 7]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765012654 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae, jymhz-oed4t-36d2v-egxa3-rxmvs-qas3f-prhxi-szqly-uoqu2-culwx-kae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764407854, spawn_at_timestamp_seconds: Some(1765012654), followees: {4: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 934066154708, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764407854, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1252608305785725674 }, subaccount: Subaccount([21, 71, 228, 10, 191, 221, 60, 221, 97, 32, 177, 30, 252, 252, 1, 184, 249, 28, 100, 170, 219, 136, 197, 119, 112, 90, 171, 54, 142, 117, 5, 7]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765012654 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae, jymhz-oed4t-36d2v-egxa3-rxmvs-qas3f-prhxi-szqly-uoqu2-culwx-kae], cached_neuron_stake_e8s: 974698032437, neuron_fees_e8s: 0, created_timestamp_seconds: 1764407854, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5728549712200490799 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764407854, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1337908632085252828 }, subaccount: Subaccount([181, 125, 95, 81, 228, 106, 163, 133, 37, 120, 170, 16, 224, 249, 13, 15, 240, 152, 165, 71, 39, 24, 218, 210, 21, 100, 3, 137, 217, 129, 202, 51]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 20262947534, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1337908632085252828 }, subaccount: Subaccount([181, 125, 95, 81, 228, 106, 163, 133, 37, 120, 170, 16, 224, 249, 13, 15, 240, 152, 165, 71, 39, 24, 218, 210, 21, 100, 3, 137, 217, 129, 202, 51]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 21144385751, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1360471043018553360 }, subaccount: Subaccount([199, 200, 74, 56, 91, 148, 184, 174, 251, 138, 83, 233, 16, 127, 81, 243, 251, 60, 24, 141, 69, 73, 222, 134, 234, 94, 227, 28, 114, 152, 13, 102]), controller: axagc-3o77c-z6bfb-mps5f-dhdnx-a2wm5-sjwlt-uhcjd-jknc7-s4qzm-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765133228 }, hot_keys: [3ocvx-ugavg-nerwb-3fkqw-a6acd-4cmk7-udsry-qz6hy-7dci3-e6xfc-vqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764528428, spawn_at_timestamp_seconds: Some(1765133228), followees: {9: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1011997441, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764528428, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1360471043018553360 }, subaccount: Subaccount([199, 200, 74, 56, 91, 148, 184, 174, 251, 138, 83, 233, 16, 127, 81, 243, 251, 60, 24, 141, 69, 73, 222, 134, 234, 94, 227, 28, 114, 152, 13, 102]), controller: axagc-3o77c-z6bfb-mps5f-dhdnx-a2wm5-sjwlt-uhcjd-jknc7-s4qzm-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765133228 }, hot_keys: [3ocvx-ugavg-nerwb-3fkqw-a6acd-4cmk7-udsry-qz6hy-7dci3-e6xfc-vqe], cached_neuron_stake_e8s: 1056019329, neuron_fees_e8s: 0, created_timestamp_seconds: 1764528428, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 9: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764528428, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1382305734807839255 }, subaccount: Subaccount([189, 211, 159, 128, 177, 138, 204, 213, 73, 239, 15, 141, 101, 85, 41, 17, 116, 139, 83, 34, 9, 84, 220, 232, 51, 121, 151, 227, 82, 126, 26, 187]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957649 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352849, spawn_at_timestamp_seconds: Some(1764957649), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 883034925, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352849, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1382305734807839255 }, subaccount: Subaccount([189, 211, 159, 128, 177, 138, 204, 213, 73, 239, 15, 141, 101, 85, 41, 17, 116, 139, 83, 34, 9, 84, 220, 232, 51, 121, 151, 227, 82, 126, 26, 187]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957649 }, hot_keys: [], cached_neuron_stake_e8s: 921446944, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352849, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352849, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1415623055017466553 }, subaccount: Subaccount([37, 125, 169, 52, 152, 2, 177, 46, 7, 71, 116, 111, 202, 110, 98, 210, 65, 86, 68, 201, 250, 116, 61, 131, 116, 233, 153, 117, 248, 72, 229, 121]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225226 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620426, spawn_at_timestamp_seconds: Some(1765225226), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 25079359208, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620426, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1415623055017466553 }, subaccount: Subaccount([37, 125, 169, 52, 152, 2, 177, 46, 7, 71, 116, 111, 202, 110, 98, 210, 65, 86, 68, 201, 250, 116, 61, 131, 116, 233, 153, 117, 248, 72, 229, 121]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225226 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 26170311333, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620426, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620426, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1430519451481986081 }, subaccount: Subaccount([141, 187, 225, 79, 85, 151, 158, 254, 195, 215, 66, 10, 102, 79, 190, 60, 110, 50, 38, 11, 36, 17, 247, 250, 26, 95, 233, 226, 84, 60, 29, 210]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958960 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354160, spawn_at_timestamp_seconds: Some(1764958960), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1066803281, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354160, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1430519451481986081 }, subaccount: Subaccount([141, 187, 225, 79, 85, 151, 158, 254, 195, 215, 66, 10, 102, 79, 190, 60, 110, 50, 38, 11, 36, 17, 247, 250, 26, 95, 233, 226, 84, 60, 29, 210]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958960 }, hot_keys: [], cached_neuron_stake_e8s: 1113209223, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354160, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354160, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1460275417176889692 }, subaccount: Subaccount([10, 89, 197, 179, 213, 35, 255, 54, 216, 140, 200, 153, 13, 187, 1, 166, 87, 12, 224, 96, 131, 105, 90, 112, 153, 143, 47, 50, 86, 216, 151, 114]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216988 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612188, spawn_at_timestamp_seconds: Some(1765216988), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696113, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612188, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1460275417176889692 }, subaccount: Subaccount([10, 89, 197, 179, 213, 35, 255, 54, 216, 140, 200, 153, 13, 187, 1, 166, 87, 12, 224, 96, 131, 105, 90, 112, 153, 143, 47, 50, 86, 216, 151, 114]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216988 }, hot_keys: [], cached_neuron_stake_e8s: 667522893, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612188, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612188, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1658589554448961905 }, subaccount: Subaccount([76, 194, 71, 168, 228, 213, 89, 17, 56, 17, 195, 41, 78, 128, 9, 184, 173, 94, 4, 184, 221, 126, 8, 200, 93, 15, 55, 99, 221, 132, 154, 231]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 102075483109, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1658589554448961905 }, subaccount: Subaccount([76, 194, 71, 168, 228, 213, 89, 17, 56, 17, 195, 41, 78, 128, 9, 184, 173, 94, 4, 184, 221, 126, 8, 200, 93, 15, 55, 99, 221, 132, 154, 231]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 106515766624, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1852528872095690109 }, subaccount: Subaccount([254, 250, 165, 122, 164, 156, 111, 103, 242, 18, 239, 203, 29, 183, 165, 250, 9, 23, 198, 227, 103, 139, 223, 182, 247, 221, 225, 46, 4, 31, 217, 137]), controller: whvvf-u4r53-ari7u-4wsyy-cw5y6-lecst-uubjk-l6uxv-p6skj-i22bb-zqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951333 }, hot_keys: [bcrnj-hkrwx-pfvvq-svyqt-eqqqq-a3q7w-sspto-32n3n-wylty-inpkm-yae, d7s5c-4qud7-orm4a-krhr4-ezfjr-tv65a-ggvwp-rrvhz-zenjs-oudfe-gae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346533, spawn_at_timestamp_seconds: Some(1764951333), followees: {0: Followees { followees: [NeuronId { id: 15577001742239674798 }] }, 4: Followees { followees: [NeuronId { id: 15577001742239674798 }] }, 14: Followees { followees: [NeuronId { id: 15577001742239674798 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 314518201, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346533, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1852528872095690109 }, subaccount: Subaccount([254, 250, 165, 122, 164, 156, 111, 103, 242, 18, 239, 203, 29, 183, 165, 250, 9, 23, 198, 227, 103, 139, 223, 182, 247, 221, 225, 46, 4, 31, 217, 137]), controller: whvvf-u4r53-ari7u-4wsyy-cw5y6-lecst-uubjk-l6uxv-p6skj-i22bb-zqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951333 }, hot_keys: [bcrnj-hkrwx-pfvvq-svyqt-eqqqq-a3q7w-sspto-32n3n-wylty-inpkm-yae, d7s5c-4qud7-orm4a-krhr4-ezfjr-tv65a-ggvwp-rrvhz-zenjs-oudfe-gae], cached_neuron_stake_e8s: 328199742, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346533, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 15577001742239674798 }] }, 4: Followees { followees: [NeuronId { id: 15577001742239674798 }] }, 14: Followees { followees: [NeuronId { id: 15577001742239674798 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346533, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1892203644897639383 }, subaccount: Subaccount([48, 253, 7, 27, 255, 195, 117, 93, 15, 200, 30, 106, 150, 65, 250, 76, 175, 86, 185, 208, 135, 197, 108, 192, 2, 146, 235, 69, 82, 82, 67, 61]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 193921201628, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1892203644897639383 }, subaccount: Subaccount([48, 253, 7, 27, 255, 195, 117, 93, 15, 200, 30, 106, 150, 65, 250, 76, 175, 86, 185, 208, 135, 197, 108, 192, 2, 146, 235, 69, 82, 82, 67, 61]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 202356773898, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1906735796217344447 }, subaccount: Subaccount([236, 55, 155, 15, 93, 20, 229, 20, 71, 241, 230, 79, 223, 18, 147, 230, 37, 39, 190, 99, 111, 163, 191, 215, 99, 43, 196, 57, 91, 64, 183, 84]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765224871 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620071, spawn_at_timestamp_seconds: Some(1765224871), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33439145575, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620071, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1906735796217344447 }, subaccount: Subaccount([236, 55, 155, 15, 93, 20, 229, 20, 71, 241, 230, 79, 223, 18, 147, 230, 37, 39, 190, 99, 111, 163, 191, 215, 99, 43, 196, 57, 91, 64, 183, 84]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765224871 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 34893748407, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620071, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620071, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1910810213476400688 }, subaccount: Subaccount([62, 150, 186, 139, 152, 87, 45, 34, 61, 155, 190, 230, 144, 149, 179, 4, 171, 19, 84, 230, 146, 139, 158, 4, 221, 105, 102, 95, 231, 82, 18, 203]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958572 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353772, spawn_at_timestamp_seconds: Some(1764958572), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1051808698, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353772, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1910810213476400688 }, subaccount: Subaccount([62, 150, 186, 139, 152, 87, 45, 34, 61, 155, 190, 230, 144, 149, 179, 4, 171, 19, 84, 230, 146, 139, 158, 4, 221, 105, 102, 95, 231, 82, 18, 203]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958572 }, hot_keys: [], cached_neuron_stake_e8s: 1097562376, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353772, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353772, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1910980759781918873 }, subaccount: Subaccount([68, 122, 18, 14, 120, 227, 137, 76, 142, 250, 7, 144, 2, 43, 4, 82, 246, 207, 30, 22, 194, 254, 50, 195, 232, 22, 171, 5, 243, 47, 111, 236]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957683 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352883, spawn_at_timestamp_seconds: Some(1764957683), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 883034925, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352883, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1910980759781918873 }, subaccount: Subaccount([68, 122, 18, 14, 120, 227, 137, 76, 142, 250, 7, 144, 2, 43, 4, 82, 246, 207, 30, 22, 194, 254, 50, 195, 232, 22, 171, 5, 243, 47, 111, 236]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957683 }, hot_keys: [], cached_neuron_stake_e8s: 921446944, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352883, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352883, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 1988658853555811565 }, subaccount: Subaccount([178, 68, 19, 82, 68, 82, 105, 67, 39, 16, 227, 129, 82, 170, 92, 213, 123, 221, 247, 191, 133, 165, 7, 5, 223, 160, 138, 19, 210, 177, 224, 86]), controller: dt5rl-crwvb-2tim6-czyfn-5wdn5-fopzt-e5sse-4nldz-2xx4y-6aiw6-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218086 }, hot_keys: [eqpd6-h4ngz-xa4mo-wkiwb-dhziw-esnjo-j3nrj-j2aoo-eirl7-6ja4i-uqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613286, spawn_at_timestamp_seconds: Some(1765218086), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 7766735497505253681 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 10843833286193887500 }, NeuronId { id: 11053086394920719168 }, NeuronId { id: 12860062727199510685 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 114851708, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613286, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 1988658853555811565 }, subaccount: Subaccount([178, 68, 19, 82, 68, 82, 105, 67, 39, 16, 227, 129, 82, 170, 92, 213, 123, 221, 247, 191, 133, 165, 7, 5, 223, 160, 138, 19, 210, 177, 224, 86]), controller: dt5rl-crwvb-2tim6-czyfn-5wdn5-fopzt-e5sse-4nldz-2xx4y-6aiw6-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218086 }, hot_keys: [eqpd6-h4ngz-xa4mo-wkiwb-dhziw-esnjo-j3nrj-j2aoo-eirl7-6ja4i-uqe], cached_neuron_stake_e8s: 119847757, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613286, spawn_at_timestamp_seconds: None, followees: {8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 7766735497505253681 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 10843833286193887500 }, NeuronId { id: 11053086394920719168 }, NeuronId { id: 12860062727199510685 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613286, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2072444124203756711 }, subaccount: Subaccount([113, 17, 145, 81, 188, 98, 109, 183, 114, 16, 5, 38, 198, 13, 129, 29, 145, 136, 194, 97, 27, 80, 24, 151, 38, 85, 255, 43, 115, 110, 251, 185]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966240 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361440, spawn_at_timestamp_seconds: Some(1764966240), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 15714598226, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361440, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2072444124203756711 }, subaccount: Subaccount([113, 17, 145, 81, 188, 98, 109, 183, 114, 16, 5, 38, 198, 13, 129, 29, 145, 136, 194, 97, 27, 80, 24, 151, 38, 85, 255, 43, 115, 110, 251, 185]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966240 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 16398183248, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361440, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361440, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2112255000780903860 }, subaccount: Subaccount([156, 253, 243, 134, 11, 142, 56, 10, 12, 227, 99, 137, 26, 47, 222, 254, 141, 106, 31, 163, 135, 172, 135, 202, 231, 81, 237, 7, 47, 86, 124, 55]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 27207908025, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2112255000780903860 }, subaccount: Subaccount([156, 253, 243, 134, 11, 142, 56, 10, 12, 227, 99, 137, 26, 47, 222, 254, 141, 106, 31, 163, 135, 172, 135, 202, 231, 81, 237, 7, 47, 86, 124, 55]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 28391452024, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2215525034558094311 }, subaccount: Subaccount([212, 18, 206, 39, 18, 123, 132, 213, 10, 205, 120, 92, 250, 0, 22, 82, 43, 199, 61, 181, 154, 148, 82, 252, 34, 248, 141, 24, 51, 125, 104, 109]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 65227721760, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2215525034558094311 }, subaccount: Subaccount([212, 18, 206, 39, 18, 123, 132, 213, 10, 205, 120, 92, 250, 0, 22, 82, 43, 199, 61, 181, 154, 148, 82, 252, 34, 248, 141, 24, 51, 125, 104, 109]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 68065127656, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2250388208952073506 }, subaccount: Subaccount([143, 41, 162, 119, 106, 62, 35, 206, 250, 106, 48, 144, 60, 14, 32, 210, 22, 33, 185, 31, 71, 108, 84, 209, 237, 35, 199, 215, 99, 93, 226, 254]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302362 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697562, spawn_at_timestamp_seconds: Some(1765302362), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 9592018614, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697562, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2250388208952073506 }, subaccount: Subaccount([143, 41, 162, 119, 106, 62, 35, 206, 250, 106, 48, 144, 60, 14, 32, 210, 22, 33, 185, 31, 71, 108, 84, 209, 237, 35, 199, 215, 99, 93, 226, 254]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302362 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 10009271423, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697562, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697562, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2257563790831545497 }, subaccount: Subaccount([119, 220, 107, 78, 240, 250, 96, 176, 46, 63, 223, 201, 18, 91, 130, 251, 118, 75, 21, 161, 51, 213, 91, 124, 118, 153, 60, 61, 190, 168, 227, 160]), controller: lu7af-rrlp5-v52fs-s47cq-ujnkp-b54na-zc7qu-cm5hk-ui42m-r3i3d-6qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765116666 }, hot_keys: [w3thq-nod4t-6ffzu-yrfhs-aqwvj-nwsat-g4ejl-vau5w-6ncuj-4o4ox-lae, jct7x-4wsgq-bcjip-htkde-co4wr-e6xjw-l2est-4fdyb-r55c5-o65i5-fqe, vty4a-icwjj-acs66-vujdf-vwka4-mpqnd-436pi-ucqlm-cjtsi-fspuv-3ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764511866, spawn_at_timestamp_seconds: Some(1765116666), followees: {14: Followees { followees: [NeuronId { id: 10113435617292303472 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 10113435617292303472 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 3773781766, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764511866, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2257563790831545497 }, subaccount: Subaccount([119, 220, 107, 78, 240, 250, 96, 176, 46, 63, 223, 201, 18, 91, 130, 251, 118, 75, 21, 161, 51, 213, 91, 124, 118, 153, 60, 61, 190, 168, 227, 160]), controller: lu7af-rrlp5-v52fs-s47cq-ujnkp-b54na-zc7qu-cm5hk-ui42m-r3i3d-6qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765116666 }, hot_keys: [w3thq-nod4t-6ffzu-yrfhs-aqwvj-nwsat-g4ejl-vau5w-6ncuj-4o4ox-lae, jct7x-4wsgq-bcjip-htkde-co4wr-e6xjw-l2est-4fdyb-r55c5-o65i5-fqe, vty4a-icwjj-acs66-vujdf-vwka4-mpqnd-436pi-ucqlm-cjtsi-fspuv-3ae], cached_neuron_stake_e8s: 3937941272, neuron_fees_e8s: 0, created_timestamp_seconds: 1764511866, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 10113435617292303472 }] }, 4: Followees { followees: [NeuronId { id: 10113435617292303472 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764511866, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2285770805620680540 }, subaccount: Subaccount([240, 51, 165, 134, 159, 46, 109, 145, 176, 93, 55, 22, 239, 191, 159, 202, 73, 108, 156, 45, 167, 156, 252, 66, 112, 17, 60, 179, 185, 9, 150, 250]), controller: vnipv-cbxfq-hk7ns-fdqv6-6hqqw-5eyxo-wc7b2-7fmln-spaur-5glzt-rae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765392322 }, hot_keys: [mwzew-mrhxg-mj73e-pzk2u-qtu4s-amauc-x4ff7-3pm6c-wfgkc-cprhb-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764787522, spawn_at_timestamp_seconds: Some(1765392322), followees: {0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 7: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 9: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 13: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 6: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 8: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 12: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 5: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 108855570, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764787522, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2285770805620680540 }, subaccount: Subaccount([240, 51, 165, 134, 159, 46, 109, 145, 176, 93, 55, 22, 239, 191, 159, 202, 73, 108, 156, 45, 167, 156, 252, 66, 112, 17, 60, 179, 185, 9, 150, 250]), controller: vnipv-cbxfq-hk7ns-fdqv6-6hqqw-5eyxo-wc7b2-7fmln-spaur-5glzt-rae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765392322 }, hot_keys: [mwzew-mrhxg-mj73e-pzk2u-qtu4s-amauc-x4ff7-3pm6c-wfgkc-cprhb-7ae], cached_neuron_stake_e8s: 113590787, neuron_fees_e8s: 0, created_timestamp_seconds: 1764787522, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 7: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 8: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }] }, 6: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 9: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 5: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 12: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 13: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764787522, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2298156087264268523 }, subaccount: Subaccount([1, 45, 87, 72, 176, 11, 10, 147, 195, 151, 167, 202, 55, 27, 14, 172, 122, 197, 156, 126, 246, 46, 11, 71, 30, 250, 31, 193, 237, 178, 114, 132]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958447 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353647, spawn_at_timestamp_seconds: Some(1764958447), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498543, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353647, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2298156087264268523 }, subaccount: Subaccount([1, 45, 87, 72, 176, 11, 10, 147, 195, 151, 167, 202, 55, 27, 14, 172, 122, 197, 156, 126, 246, 46, 11, 71, 30, 250, 31, 193, 237, 178, 114, 132]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958447 }, hot_keys: [], cached_neuron_stake_e8s: 1113934729, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353647, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353647, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2366975169650707766 }, subaccount: Subaccount([164, 44, 247, 182, 195, 32, 29, 130, 85, 110, 179, 155, 53, 97, 250, 101, 35, 146, 222, 152, 243, 89, 18, 129, 208, 250, 230, 43, 149, 201, 53, 39]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957758 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352958, spawn_at_timestamp_seconds: Some(1764957758), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 883034925, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352958, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2366975169650707766 }, subaccount: Subaccount([164, 44, 247, 182, 195, 32, 29, 130, 85, 110, 179, 155, 53, 97, 250, 101, 35, 146, 222, 152, 243, 89, 18, 129, 208, 250, 230, 43, 149, 201, 53, 39]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957758 }, hot_keys: [], cached_neuron_stake_e8s: 921446944, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352958, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352958, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2448764558590994848 }, subaccount: Subaccount([177, 71, 110, 120, 97, 218, 84, 10, 83, 43, 76, 188, 64, 242, 140, 85, 160, 160, 218, 213, 236, 250, 170, 199, 24, 166, 10, 16, 204, 216, 141, 249]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 31865384800, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2448764558590994848 }, subaccount: Subaccount([177, 71, 110, 120, 97, 218, 84, 10, 83, 43, 76, 188, 64, 242, 140, 85, 160, 160, 218, 213, 236, 250, 170, 199, 24, 166, 10, 16, 204, 216, 141, 249]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 33251529038, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2487417306146671119 }, subaccount: Subaccount([77, 75, 191, 92, 165, 178, 90, 213, 226, 36, 198, 40, 60, 101, 220, 159, 230, 186, 46, 46, 216, 255, 176, 36, 237, 110, 64, 80, 98, 251, 110, 76]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 42508703151, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2487417306146671119 }, subaccount: Subaccount([77, 75, 191, 92, 165, 178, 90, 213, 226, 36, 198, 40, 60, 101, 220, 159, 230, 186, 46, 46, 216, 255, 176, 36, 237, 110, 64, 80, 98, 251, 110, 76]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 44357831738, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2525128745072926594 }, subaccount: Subaccount([224, 199, 125, 144, 231, 114, 206, 209, 18, 255, 210, 71, 97, 8, 137, 149, 113, 10, 198, 22, 171, 6, 252, 143, 49, 56, 75, 236, 157, 126, 87, 189]), controller: xyrvm-uyepf-dyray-kyutk-7p5qk-qi5oq-6hmse-y2u7b-4thg4-zmjuj-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283340 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678540, spawn_at_timestamp_seconds: Some(1765283340), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 459384446488, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678540, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2525128745072926594 }, subaccount: Subaccount([224, 199, 125, 144, 231, 114, 206, 209, 18, 255, 210, 71, 97, 8, 137, 149, 113, 10, 198, 22, 171, 6, 252, 143, 49, 56, 75, 236, 157, 126, 87, 189]), controller: xyrvm-uyepf-dyray-kyutk-7p5qk-qi5oq-6hmse-y2u7b-4thg4-zmjuj-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283340 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 479367669910, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678540, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678540, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2592912828617964465 }, subaccount: Subaccount([159, 194, 78, 149, 161, 188, 165, 129, 57, 184, 69, 242, 222, 206, 76, 12, 91, 39, 189, 213, 136, 154, 228, 185, 8, 174, 29, 94, 0, 55, 122, 178]), controller: hhlrh-t56ne-km2d2-ndnca-svib3-d4qzw-kxcbu-dhbfv-ho43j-n77qw-oqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765367062 }, hot_keys: [rgru5-vrrpf-rf3cj-2yygq-gsl5v-qbleu-rtqc6-zrm2b-ywv7o-3fazs-eae, r4rgo-msqvs-gqwa7-cv2qt-tg3ib-6exnu-p4ky3-vf2qf-xvljq-yfjxs-tae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764762262, spawn_at_timestamp_seconds: Some(1765367062), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 7727700346, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764762262, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2592912828617964465 }, subaccount: Subaccount([159, 194, 78, 149, 161, 188, 165, 129, 57, 184, 69, 242, 222, 206, 76, 12, 91, 39, 189, 213, 136, 154, 228, 185, 8, 174, 29, 94, 0, 55, 122, 178]), controller: hhlrh-t56ne-km2d2-ndnca-svib3-d4qzw-kxcbu-dhbfv-ho43j-n77qw-oqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765367062 }, hot_keys: [rgru5-vrrpf-rf3cj-2yygq-gsl5v-qbleu-rtqc6-zrm2b-ywv7o-3fazs-eae, r4rgo-msqvs-gqwa7-cv2qt-tg3ib-6exnu-p4ky3-vf2qf-xvljq-yfjxs-tae], cached_neuron_stake_e8s: 8063855311, neuron_fees_e8s: 0, created_timestamp_seconds: 1764762262, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764762262, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2651308288816571829 }, subaccount: Subaccount([94, 237, 216, 142, 30, 8, 108, 87, 97, 222, 211, 110, 105, 74, 41, 85, 190, 35, 185, 170, 215, 15, 193, 254, 143, 134, 135, 78, 4, 125, 159, 57]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 219839414620, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2651308288816571829 }, subaccount: Subaccount([94, 237, 216, 142, 30, 8, 108, 87, 97, 222, 211, 110, 105, 74, 41, 85, 190, 35, 185, 170, 215, 15, 193, 254, 143, 134, 135, 78, 4, 125, 159, 57]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 229402429155, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2793369094840107077 }, subaccount: Subaccount([77, 94, 216, 101, 23, 145, 10, 59, 200, 23, 111, 193, 250, 194, 192, 176, 189, 53, 168, 66, 252, 115, 129, 189, 73, 104, 126, 136, 164, 246, 102, 28]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764857231 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764252431, spawn_at_timestamp_seconds: Some(1764857231), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2868812352, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764252431, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2793369094840107077 }, subaccount: Subaccount([77, 94, 216, 101, 23, 145, 10, 59, 200, 23, 111, 193, 250, 194, 192, 176, 189, 53, 168, 66, 252, 115, 129, 189, 73, 104, 126, 136, 164, 246, 102, 28]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764857231 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 2993605689, neuron_fees_e8s: 0, created_timestamp_seconds: 1764252431, spawn_at_timestamp_seconds: None, followees: {6: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764252431, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2844119494746256093 }, subaccount: Subaccount([62, 192, 69, 71, 187, 194, 193, 28, 40, 8, 21, 144, 46, 179, 114, 110, 237, 163, 97, 194, 133, 108, 176, 57, 234, 22, 13, 98, 79, 125, 213, 116]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252818 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648018, spawn_at_timestamp_seconds: Some(1765252818), followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 174851757, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648018, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2844119494746256093 }, subaccount: Subaccount([62, 192, 69, 71, 187, 194, 193, 28, 40, 8, 21, 144, 46, 179, 114, 110, 237, 163, 97, 194, 133, 108, 176, 57, 234, 22, 13, 98, 79, 125, 213, 116]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252818 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 182457808, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648018, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648018, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2909016269134473166 }, subaccount: Subaccount([107, 114, 91, 193, 121, 205, 76, 62, 251, 248, 13, 191, 236, 67, 124, 127, 116, 111, 176, 7, 175, 76, 35, 142, 127, 67, 209, 49, 53, 107, 86, 222]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217686 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612886, spawn_at_timestamp_seconds: Some(1765217686), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695789, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612886, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2909016269134473166 }, subaccount: Subaccount([107, 114, 91, 193, 121, 205, 76, 62, 251, 248, 13, 191, 236, 67, 124, 127, 116, 111, 176, 7, 175, 76, 35, 142, 127, 67, 209, 49, 53, 107, 86, 222]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217686 }, hot_keys: [], cached_neuron_stake_e8s: 667522555, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612886, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612886, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2923008360588154694 }, subaccount: Subaccount([149, 143, 234, 77, 245, 191, 231, 6, 132, 191, 78, 71, 13, 59, 251, 197, 110, 58, 9, 112, 68, 159, 156, 136, 11, 204, 160, 147, 87, 126, 222, 127]), controller: 33n6s-lkinl-zkqp5-3irxh-xqeio-zy6fx-fcobb-2lhw3-fcqmk-gkwrt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765307148 }, hot_keys: [okh5z-5biee-j6jga-7kczf-bvza4-xjjze-wa337-6jxvu-fo3b5-ktn6a-xae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764702348, spawn_at_timestamp_seconds: Some(1765307148), followees: {2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1147129726, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764702348, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2923008360588154694 }, subaccount: Subaccount([149, 143, 234, 77, 245, 191, 231, 6, 132, 191, 78, 71, 13, 59, 251, 197, 110, 58, 9, 112, 68, 159, 156, 136, 11, 204, 160, 147, 87, 126, 222, 127]), controller: 33n6s-lkinl-zkqp5-3irxh-xqeio-zy6fx-fcobb-2lhw3-fcqmk-gkwrt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765307148 }, hot_keys: [okh5z-5biee-j6jga-7kczf-bvza4-xjjze-wa337-6jxvu-fo3b5-ktn6a-xae], cached_neuron_stake_e8s: 1197029869, neuron_fees_e8s: 0, created_timestamp_seconds: 1764702348, spawn_at_timestamp_seconds: None, followees: {8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764702348, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2934549393176151234 }, subaccount: Subaccount([130, 225, 117, 166, 122, 105, 122, 219, 213, 229, 138, 23, 81, 98, 176, 181, 200, 97, 187, 133, 151, 219, 166, 137, 216, 115, 59, 48, 100, 170, 52, 131]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 122702111870, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2934549393176151234 }, subaccount: Subaccount([130, 225, 117, 166, 122, 105, 122, 219, 213, 229, 138, 23, 81, 98, 176, 181, 200, 97, 187, 133, 151, 219, 166, 137, 216, 115, 59, 48, 100, 170, 52, 131]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 128039653736, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 2970023531272458401 }, subaccount: Subaccount([196, 94, 213, 130, 54, 16, 206, 159, 68, 34, 143, 59, 179, 133, 227, 150, 243, 240, 2, 164, 213, 2, 239, 160, 108, 41, 189, 123, 27, 169, 93, 78]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765338850 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764734050, spawn_at_timestamp_seconds: Some(1765338850), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 178102895, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764734050, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 2970023531272458401 }, subaccount: Subaccount([196, 94, 213, 130, 54, 16, 206, 159, 68, 34, 143, 59, 179, 133, 227, 150, 243, 240, 2, 164, 213, 2, 239, 160, 108, 41, 189, 123, 27, 169, 93, 78]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765338850 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 185850370, neuron_fees_e8s: 0, created_timestamp_seconds: 1764734050, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764734050, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3040941474694375484 }, subaccount: Subaccount([37, 121, 207, 168, 216, 110, 86, 150, 12, 37, 51, 212, 146, 247, 42, 213, 24, 32, 125, 111, 64, 94, 127, 242, 130, 50, 133, 25, 27, 166, 170, 108]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217970 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613170, spawn_at_timestamp_seconds: Some(1765217970), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639279006, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613170, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3040941474694375484 }, subaccount: Subaccount([37, 121, 207, 168, 216, 110, 86, 150, 12, 37, 51, 212, 146, 247, 42, 213, 24, 32, 125, 111, 64, 94, 127, 242, 130, 50, 133, 25, 27, 166, 170, 108]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217970 }, hot_keys: [], cached_neuron_stake_e8s: 667087642, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613170, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613170, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3068808836808525931 }, subaccount: Subaccount([74, 59, 47, 41, 112, 248, 173, 216, 228, 218, 31, 212, 61, 47, 168, 100, 23, 217, 136, 105, 41, 68, 234, 178, 77, 208, 3, 16, 39, 207, 224, 130]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218260 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613460, spawn_at_timestamp_seconds: Some(1765218260), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695927, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613460, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3068808836808525931 }, subaccount: Subaccount([74, 59, 47, 41, 112, 248, 173, 216, 228, 218, 31, 212, 61, 47, 168, 100, 23, 217, 136, 105, 41, 68, 234, 178, 77, 208, 3, 16, 39, 207, 224, 130]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218260 }, hot_keys: [], cached_neuron_stake_e8s: 667522699, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613460, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613460, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3089639714378398451 }, subaccount: Subaccount([160, 185, 41, 171, 48, 183, 18, 244, 99, 222, 104, 129, 162, 20, 47, 165, 225, 188, 201, 74, 103, 168, 11, 16, 245, 243, 12, 139, 179, 46, 153, 217]), controller: bukja-nrwr6-wkuya-kd2ld-7mtfh-4625i-ugtof-rsahe-advj2-hhxxq-zqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765048357 }, hot_keys: [jgdb6-ey7c5-yk7o3-v5cjg-psarc-df5yu-qape6-hfy4h-ufhlo-t3eso-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764443557, spawn_at_timestamp_seconds: Some(1765048357), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 25510480981, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764443557, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3089639714378398451 }, subaccount: Subaccount([160, 185, 41, 171, 48, 183, 18, 244, 99, 222, 104, 129, 162, 20, 47, 165, 225, 188, 201, 74, 103, 168, 11, 16, 245, 243, 12, 139, 179, 46, 153, 217]), controller: bukja-nrwr6-wkuya-kd2ld-7mtfh-4625i-ugtof-rsahe-advj2-hhxxq-zqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765048357 }, hot_keys: [jgdb6-ey7c5-yk7o3-v5cjg-psarc-df5yu-qape6-hfy4h-ufhlo-t3eso-7ae], cached_neuron_stake_e8s: 26620186903, neuron_fees_e8s: 0, created_timestamp_seconds: 1764443557, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764443557, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3112966555155567907 }, subaccount: Subaccount([181, 178, 111, 251, 207, 121, 70, 237, 232, 46, 30, 106, 195, 217, 148, 38, 159, 152, 142, 182, 174, 64, 171, 226, 127, 132, 108, 42, 9, 75, 76, 59]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765159844 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764555044, spawn_at_timestamp_seconds: Some(1765159844), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 869535455, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764555044, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3112966555155567907 }, subaccount: Subaccount([181, 178, 111, 251, 207, 121, 70, 237, 232, 46, 30, 106, 195, 217, 148, 38, 159, 152, 142, 182, 174, 64, 171, 226, 127, 132, 108, 42, 9, 75, 76, 59]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765159844 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 907360247, neuron_fees_e8s: 0, created_timestamp_seconds: 1764555044, spawn_at_timestamp_seconds: None, followees: {15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764555044, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3158519708676426103 }, subaccount: Subaccount([161, 239, 81, 183, 150, 108, 223, 193, 224, 15, 114, 211, 91, 0, 99, 168, 243, 54, 156, 21, 70, 28, 53, 55, 7, 72, 212, 235, 128, 202, 10, 159]), controller: fgszo-jhpm5-m437n-q2uip-q2v44-zhqcf-q5ngn-zoz2y-bstcf-ry2h6-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764949771 }, hot_keys: [nj64w-vmwrw-3oeyx-s4vlt-66u5c-3xtei-ovt66-mjopm-qyogz-yabqh-2qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764344971, spawn_at_timestamp_seconds: Some(1764949771), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1047931191, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764344971, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3158519708676426103 }, subaccount: Subaccount([161, 239, 81, 183, 150, 108, 223, 193, 224, 15, 114, 211, 91, 0, 99, 168, 243, 54, 156, 21, 70, 28, 53, 55, 7, 72, 212, 235, 128, 202, 10, 159]), controller: fgszo-jhpm5-m437n-q2uip-q2v44-zhqcf-q5ngn-zoz2y-bstcf-ry2h6-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764949771 }, hot_keys: [nj64w-vmwrw-3oeyx-s4vlt-66u5c-3xtei-ovt66-mjopm-qyogz-yabqh-2qe], cached_neuron_stake_e8s: 1093516197, neuron_fees_e8s: 0, created_timestamp_seconds: 1764344971, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764344971, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3336502935480827185 }, subaccount: Subaccount([201, 168, 222, 252, 235, 17, 44, 71, 15, 90, 124, 240, 104, 64, 57, 15, 143, 157, 93, 191, 48, 112, 224, 55, 177, 169, 179, 15, 135, 22, 4, 209]), controller: fwvwr-g2lym-yk5ad-j62gw-g557m-ruffn-otzid-euqps-275r5-ukdmr-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951393 }, hot_keys: [73iyv-lzpfu-4giab-mglsb-qrtbn-2whkw-e2aek-jdnxk-ldz3t-h6il6-zae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346593, spawn_at_timestamp_seconds: Some(1764951393), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 325455465, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346593, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3336502935480827185 }, subaccount: Subaccount([201, 168, 222, 252, 235, 17, 44, 71, 15, 90, 124, 240, 104, 64, 57, 15, 143, 157, 93, 191, 48, 112, 224, 55, 177, 169, 179, 15, 135, 22, 4, 209]), controller: fwvwr-g2lym-yk5ad-j62gw-g557m-ruffn-otzid-euqps-275r5-ukdmr-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951393 }, hot_keys: [73iyv-lzpfu-4giab-mglsb-qrtbn-2whkw-e2aek-jdnxk-ldz3t-h6il6-zae], cached_neuron_stake_e8s: 339612777, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346593, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346593, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3337741798558105598 }, subaccount: Subaccount([69, 152, 1, 37, 183, 232, 214, 161, 99, 31, 7, 35, 17, 191, 209, 215, 158, 238, 85, 193, 26, 200, 24, 148, 64, 219, 9, 175, 84, 64, 243, 115]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 102550362059, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3337741798558105598 }, subaccount: Subaccount([69, 152, 1, 37, 183, 232, 214, 161, 99, 31, 7, 35, 17, 191, 209, 215, 158, 238, 85, 193, 26, 200, 24, 148, 64, 219, 9, 175, 84, 64, 243, 115]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 107011302808, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3362072607143732173 }, subaccount: Subaccount([163, 55, 143, 214, 246, 168, 243, 151, 117, 169, 115, 189, 16, 52, 94, 63, 187, 237, 19, 211, 184, 92, 111, 154, 216, 130, 27, 7, 156, 10, 177, 76]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765435330 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764830530, spawn_at_timestamp_seconds: Some(1765435330), followees: {5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 558068257, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764830530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3362072607143732173 }, subaccount: Subaccount([163, 55, 143, 214, 246, 168, 243, 151, 117, 169, 115, 189, 16, 52, 94, 63, 187, 237, 19, 211, 184, 92, 111, 154, 216, 130, 27, 7, 156, 10, 177, 76]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765435330 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 582344226, neuron_fees_e8s: 0, created_timestamp_seconds: 1764830530, spawn_at_timestamp_seconds: None, followees: {7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764830530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3428387252174124335 }, subaccount: Subaccount([167, 123, 6, 166, 216, 7, 136, 173, 67, 197, 17, 171, 232, 237, 67, 235, 152, 116, 86, 214, 173, 61, 101, 96, 29, 197, 175, 93, 96, 1, 30, 84]), controller: ffp5l-nxd7u-vu4d7-ocq5v-onrds-wusfe-newyt-db7za-tx4ku-lp4vq-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225293 }, hot_keys: [epbco-dew2x-3tzee-lev63-nrizh-u4sja-yedki-q6grs-4xsf7-k77ym-yae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620493, spawn_at_timestamp_seconds: Some(1765225293), followees: {14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 62143774620, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620493, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3428387252174124335 }, subaccount: Subaccount([167, 123, 6, 166, 216, 7, 136, 173, 67, 197, 17, 171, 232, 237, 67, 235, 152, 116, 86, 214, 173, 61, 101, 96, 29, 197, 175, 93, 96, 1, 30, 84]), controller: ffp5l-nxd7u-vu4d7-ocq5v-onrds-wusfe-newyt-db7za-tx4ku-lp4vq-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225293 }, hot_keys: [epbco-dew2x-3tzee-lev63-nrizh-u4sja-yedki-q6grs-4xsf7-k77ym-yae], cached_neuron_stake_e8s: 64847028815, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620493, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620493, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3455296742911001939 }, subaccount: Subaccount([160, 189, 164, 191, 213, 87, 210, 211, 114, 13, 98, 233, 134, 13, 157, 31, 108, 72, 153, 109, 133, 189, 101, 247, 32, 63, 212, 31, 214, 169, 161, 180]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951825 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764347025, spawn_at_timestamp_seconds: Some(1764951825), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 341629895, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764347025, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3455296742911001939 }, subaccount: Subaccount([160, 189, 164, 191, 213, 87, 210, 211, 114, 13, 98, 233, 134, 13, 157, 31, 108, 72, 153, 109, 133, 189, 101, 247, 32, 63, 212, 31, 214, 169, 161, 180]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951825 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 356490795, neuron_fees_e8s: 0, created_timestamp_seconds: 1764347025, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764347025, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3498521050820092554 }, subaccount: Subaccount([144, 8, 172, 13, 56, 146, 237, 90, 106, 43, 238, 207, 185, 158, 99, 3, 183, 242, 177, 114, 86, 29, 60, 216, 226, 150, 88, 149, 58, 31, 80, 28]), controller: qdcn3-rei57-npp7o-no366-kwexy-ve3pv-rwzfq-qzpl7-ntjv2-l2jn4-hae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765108977 }, hot_keys: [zcgi5-5gjwv-qipmz-ry6rf-che74-rixs5-nn6by-h7bcd-sxkqx-ic2ys-nae, ot5ha-uhgkf-o4eb5-z7wum-x5rci-3bihk-uh5nm-fszex-erqay-7twwe-5ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764504177, spawn_at_timestamp_seconds: Some(1765108977), followees: {14: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 381699265, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764504177, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3498521050820092554 }, subaccount: Subaccount([144, 8, 172, 13, 56, 146, 237, 90, 106, 43, 238, 207, 185, 158, 99, 3, 183, 242, 177, 114, 86, 29, 60, 216, 226, 150, 88, 149, 58, 31, 80, 28]), controller: qdcn3-rei57-npp7o-no366-kwexy-ve3pv-rwzfq-qzpl7-ntjv2-l2jn4-hae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765108977 }, hot_keys: [zcgi5-5gjwv-qipmz-ry6rf-che74-rixs5-nn6by-h7bcd-sxkqx-ic2ys-nae, ot5ha-uhgkf-o4eb5-z7wum-x5rci-3bihk-uh5nm-fszex-erqay-7twwe-5ae], cached_neuron_stake_e8s: 398303183, neuron_fees_e8s: 0, created_timestamp_seconds: 1764504177, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764504177, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3505693326936522419 }, subaccount: Subaccount([159, 182, 15, 212, 77, 80, 249, 110, 249, 232, 168, 239, 22, 247, 106, 167, 90, 244, 26, 114, 249, 55, 81, 104, 170, 14, 106, 205, 170, 60, 215, 158]), controller: ptyxo-6ywen-ada3e-6qgb7-wnfa2-u3uyq-htebr-gf6g5-xm6f4-xsnou-cqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765282933 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678133, spawn_at_timestamp_seconds: Some(1765282933), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 497502973880, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678133, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3505693326936522419 }, subaccount: Subaccount([159, 182, 15, 212, 77, 80, 249, 110, 249, 232, 168, 239, 22, 247, 106, 167, 90, 244, 26, 114, 249, 55, 81, 104, 170, 14, 106, 205, 170, 60, 215, 158]), controller: ptyxo-6ywen-ada3e-6qgb7-wnfa2-u3uyq-htebr-gf6g5-xm6f4-xsnou-cqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765282933 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 519144353243, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678133, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678133, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3511305750877827972 }, subaccount: Subaccount([124, 4, 146, 200, 95, 73, 12, 193, 61, 213, 239, 217, 249, 60, 205, 233, 244, 22, 167, 89, 233, 115, 134, 27, 81, 24, 163, 231, 174, 211, 245, 90]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252816 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648016, spawn_at_timestamp_seconds: Some(1765252816), followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 174317716, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648016, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3511305750877827972 }, subaccount: Subaccount([124, 4, 146, 200, 95, 73, 12, 193, 61, 213, 239, 217, 249, 60, 205, 233, 244, 22, 167, 89, 233, 115, 134, 27, 81, 24, 163, 231, 174, 211, 245, 90]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252816 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 181900536, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648016, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648016, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3551648436416474573 }, subaccount: Subaccount([209, 185, 166, 22, 67, 96, 82, 158, 239, 49, 172, 29, 65, 208, 251, 238, 107, 204, 86, 103, 225, 227, 119, 88, 94, 72, 221, 157, 224, 71, 111, 15]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218156 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613356, spawn_at_timestamp_seconds: Some(1765218156), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696126, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613356, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3551648436416474573 }, subaccount: Subaccount([209, 185, 166, 22, 67, 96, 82, 158, 239, 49, 172, 29, 65, 208, 251, 238, 107, 204, 86, 103, 225, 227, 119, 88, 94, 72, 221, 157, 224, 71, 111, 15]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218156 }, hot_keys: [], cached_neuron_stake_e8s: 667522907, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613356, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613356, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3561431258158874606 }, subaccount: Subaccount([197, 177, 173, 209, 73, 13, 244, 212, 67, 171, 19, 207, 16, 130, 66, 149, 123, 109, 26, 61, 107, 139, 206, 129, 236, 152, 10, 127, 94, 244, 191, 49]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765232270 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764627470, spawn_at_timestamp_seconds: Some(1765232270), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 356436153, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764627470, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3561431258158874606 }, subaccount: Subaccount([197, 177, 173, 209, 73, 13, 244, 212, 67, 171, 19, 207, 16, 130, 66, 149, 123, 109, 26, 61, 107, 139, 206, 129, 236, 152, 10, 127, 94, 244, 191, 49]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765232270 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 371941125, neuron_fees_e8s: 0, created_timestamp_seconds: 1764627470, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764627470, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3669076991466039680 }, subaccount: Subaccount([206, 238, 121, 248, 32, 92, 231, 234, 203, 166, 189, 239, 230, 4, 123, 134, 70, 58, 77, 159, 247, 2, 205, 170, 123, 238, 172, 68, 149, 81, 254, 87]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 122793117748, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3669076991466039680 }, subaccount: Subaccount([206, 238, 121, 248, 32, 92, 231, 234, 203, 166, 189, 239, 230, 4, 123, 134, 70, 58, 77, 159, 247, 2, 205, 170, 123, 238, 172, 68, 149, 81, 254, 87]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 128134618370, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:18.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3954535722749358478 }, subaccount: Subaccount([28, 68, 175, 138, 2, 92, 91, 74, 34, 242, 107, 25, 120, 179, 3, 212, 54, 208, 254, 78, 233, 208, 55, 166, 178, 206, 42, 79, 199, 35, 255, 71]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765102566 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764497766, spawn_at_timestamp_seconds: Some(1765102566), followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 37697866471, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764497766, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3954535722749358478 }, subaccount: Subaccount([28, 68, 175, 138, 2, 92, 91, 74, 34, 242, 107, 25, 120, 179, 3, 212, 54, 208, 254, 78, 233, 208, 55, 166, 178, 206, 42, 79, 199, 35, 255, 71]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765102566 }, hot_keys: [], cached_neuron_stake_e8s: 39337723662, neuron_fees_e8s: 0, created_timestamp_seconds: 1764497766, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764497766, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3961644673864755449 }, subaccount: Subaccount([133, 105, 100, 202, 4, 97, 179, 109, 167, 41, 14, 171, 175, 103, 118, 120, 136, 117, 250, 138, 195, 9, 234, 71, 27, 138, 176, 64, 76, 151, 231, 142]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252825 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648025, spawn_at_timestamp_seconds: Some(1765252825), followees: {4: Followees { followees: [NeuronId { id: 14231996777861930328 }] }, 14: Followees { followees: [NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 172976810, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648025, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3961644673864755449 }, subaccount: Subaccount([133, 105, 100, 202, 4, 97, 179, 109, 167, 41, 14, 171, 175, 103, 118, 120, 136, 117, 250, 138, 195, 9, 234, 71, 27, 138, 176, 64, 76, 151, 231, 142]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252825 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 180501301, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648025, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 14231996777861930328 }] }, 14: Followees { followees: [NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648025, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 3982710759965907497 }, subaccount: Subaccount([201, 110, 167, 141, 58, 54, 254, 99, 22, 61, 250, 199, 54, 229, 42, 185, 210, 121, 142, 96, 139, 131, 104, 227, 17, 37, 53, 195, 50, 154, 239, 39]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252812 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648012, spawn_at_timestamp_seconds: Some(1765252812), followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 168204169, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648012, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 3982710759965907497 }, subaccount: Subaccount([201, 110, 167, 141, 58, 54, 254, 99, 22, 61, 250, 199, 54, 229, 42, 185, 210, 121, 142, 96, 139, 131, 104, 227, 17, 37, 53, 195, 50, 154, 239, 39]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252812 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 175521050, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648012, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648012, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4000464345905748427 }, subaccount: Subaccount([194, 43, 198, 131, 187, 89, 236, 114, 175, 55, 194, 230, 51, 184, 69, 206, 156, 194, 30, 161, 241, 143, 151, 246, 9, 58, 193, 140, 13, 2, 24, 214]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957709 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352909, spawn_at_timestamp_seconds: Some(1764957709), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 883034925, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352909, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4000464345905748427 }, subaccount: Subaccount([194, 43, 198, 131, 187, 89, 236, 114, 175, 55, 194, 230, 51, 184, 69, 206, 156, 194, 30, 161, 241, 143, 151, 246, 9, 58, 193, 140, 13, 2, 24, 214]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957709 }, hot_keys: [], cached_neuron_stake_e8s: 921446944, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352909, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352909, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4022637152142717344 }, subaccount: Subaccount([245, 235, 24, 65, 175, 53, 248, 110, 250, 155, 140, 53, 16, 59, 117, 23, 157, 212, 191, 198, 86, 129, 197, 1, 156, 114, 163, 184, 57, 186, 176, 145]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958993 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354193, spawn_at_timestamp_seconds: Some(1764958993), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1066803105, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354193, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4022637152142717344 }, subaccount: Subaccount([245, 235, 24, 65, 175, 53, 248, 110, 250, 155, 140, 53, 16, 59, 117, 23, 157, 212, 191, 198, 86, 129, 197, 1, 156, 114, 163, 184, 57, 186, 176, 145]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958993 }, hot_keys: [], cached_neuron_stake_e8s: 1113209040, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354193, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354193, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4033817620446833352 }, subaccount: Subaccount([117, 117, 110, 222, 84, 119, 8, 14, 37, 61, 14, 229, 145, 147, 95, 219, 11, 110, 148, 68, 29, 5, 233, 54, 154, 77, 114, 156, 173, 43, 77, 186]), controller: sjov3-tl3bn-xru6r-nb2bl-rcu5g-p6fej-hrvei-yexow-z74xc-yiwdr-qae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765310793 }, hot_keys: [45u6g-zj6ra-7ah3j-fmw7b-seffr-fygwi-nl5ng-of5ga-2jk43-6i5o3-mqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764705993, spawn_at_timestamp_seconds: Some(1765310793), followees: {12: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 117250430, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764705993, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4033817620446833352 }, subaccount: Subaccount([117, 117, 110, 222, 84, 119, 8, 14, 37, 61, 14, 229, 145, 147, 95, 219, 11, 110, 148, 68, 29, 5, 233, 54, 154, 77, 114, 156, 173, 43, 77, 186]), controller: sjov3-tl3bn-xru6r-nb2bl-rcu5g-p6fej-hrvei-yexow-z74xc-yiwdr-qae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765310793 }, hot_keys: [45u6g-zj6ra-7ah3j-fmw7b-seffr-fygwi-nl5ng-of5ga-2jk43-6i5o3-mqe], cached_neuron_stake_e8s: 122350823, neuron_fees_e8s: 0, created_timestamp_seconds: 1764705993, spawn_at_timestamp_seconds: None, followees: {13: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764705993, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4054916011787208961 }, subaccount: Subaccount([197, 128, 167, 75, 170, 244, 101, 102, 67, 129, 104, 241, 185, 61, 46, 147, 211, 151, 105, 0, 212, 119, 233, 40, 73, 10, 110, 195, 57, 194, 6, 174]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966322 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361522, spawn_at_timestamp_seconds: Some(1764966322), followees: {4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 3367413970, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361522, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4054916011787208961 }, subaccount: Subaccount([197, 128, 167, 75, 170, 244, 101, 102, 67, 129, 104, 241, 185, 61, 46, 147, 211, 151, 105, 0, 212, 119, 233, 40, 73, 10, 110, 195, 57, 194, 6, 174]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966322 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 3513896477, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361522, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361522, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4206523813454273090 }, subaccount: Subaccount([53, 41, 198, 224, 11, 249, 46, 38, 105, 36, 89, 20, 218, 96, 251, 189, 233, 221, 23, 190, 117, 51, 251, 81, 119, 47, 129, 132, 88, 130, 239, 76]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013470 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408670, spawn_at_timestamp_seconds: Some(1765013470), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 428687636340283207 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1139580081371, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408670, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4206523813454273090 }, subaccount: Subaccount([53, 41, 198, 224, 11, 249, 46, 38, 105, 36, 89, 20, 218, 96, 251, 189, 233, 221, 23, 190, 117, 51, 251, 81, 119, 47, 129, 132, 88, 130, 239, 76]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013470 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 1189151814910, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408670, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 428687636340283207 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408670, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4250847585273211557 }, subaccount: Subaccount([140, 228, 125, 186, 104, 87, 119, 110, 168, 129, 66, 70, 98, 225, 209, 138, 35, 6, 218, 181, 81, 155, 196, 45, 247, 72, 214, 18, 85, 135, 242, 23]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302495 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, fpxsu-ukxz6-llkhw-dxwhg-apufs-tfvcp-4ys4s-zvel7-qxzdu-lyed2-5ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697695, spawn_at_timestamp_seconds: Some(1765302495), followees: {10: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 12698512542, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697695, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4250847585273211557 }, subaccount: Subaccount([140, 228, 125, 186, 104, 87, 119, 110, 168, 129, 66, 70, 98, 225, 209, 138, 35, 6, 218, 181, 81, 155, 196, 45, 247, 72, 214, 18, 85, 135, 242, 23]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302495 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, fpxsu-ukxz6-llkhw-dxwhg-apufs-tfvcp-4ys4s-zvel7-qxzdu-lyed2-5ae], cached_neuron_stake_e8s: 13250897837, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697695, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697695, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4331359827765405692 }, subaccount: Subaccount([212, 201, 104, 211, 206, 70, 61, 36, 115, 164, 31, 129, 148, 128, 141, 87, 111, 112, 139, 94, 150, 180, 44, 181, 56, 214, 221, 166, 197, 116, 114, 191]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217514 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612714, spawn_at_timestamp_seconds: Some(1765217514), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695569, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612714, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4331359827765405692 }, subaccount: Subaccount([212, 201, 104, 211, 206, 70, 61, 36, 115, 164, 31, 129, 148, 128, 141, 87, 111, 112, 139, 94, 150, 180, 44, 181, 56, 214, 221, 166, 197, 116, 114, 191]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217514 }, hot_keys: [], cached_neuron_stake_e8s: 667522326, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612714, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612714, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4400890705003160356 }, subaccount: Subaccount([149, 215, 40, 31, 225, 85, 123, 222, 133, 27, 182, 209, 232, 201, 58, 183, 85, 211, 190, 19, 49, 132, 207, 155, 230, 53, 177, 106, 109, 187, 73, 234]), controller: 7cozg-lwcnk-3rxxg-xcvcm-xqbf2-ac5xp-wc4f5-2znit-bmsiw-imxr4-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765207142 }, hot_keys: [j4jiq-sqaaa-aaaap-ab23a-cai], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764602342, spawn_at_timestamp_seconds: Some(1765207142), followees: {4: Followees { followees: [NeuronId { id: 7446549063176501841 }] }, 14: Followees { followees: [NeuronId { id: 7446549063176501841 }] }, 0: Followees { followees: [NeuronId { id: 7446549063176501841 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 100915961912, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764602342, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4400890705003160356 }, subaccount: Subaccount([149, 215, 40, 31, 225, 85, 123, 222, 133, 27, 182, 209, 232, 201, 58, 183, 85, 211, 190, 19, 49, 132, 207, 155, 230, 53, 177, 106, 109, 187, 73, 234]), controller: 7cozg-lwcnk-3rxxg-xcvcm-xqbf2-ac5xp-wc4f5-2znit-bmsiw-imxr4-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765207142 }, hot_keys: [j4jiq-sqaaa-aaaap-ab23a-cai], cached_neuron_stake_e8s: 105305806255, neuron_fees_e8s: 0, created_timestamp_seconds: 1764602342, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 7446549063176501841 }] }, 14: Followees { followees: [NeuronId { id: 7446549063176501841 }] }, 4: Followees { followees: [NeuronId { id: 7446549063176501841 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764602342, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4406199811826358779 }, subaccount: Subaccount([243, 229, 225, 178, 21, 217, 96, 28, 82, 65, 56, 173, 37, 45, 110, 116, 178, 134, 136, 9, 68, 207, 165, 200, 140, 60, 107, 59, 232, 23, 146, 61]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302417 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697617, spawn_at_timestamp_seconds: Some(1765302417), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 10225741426, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697617, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4406199811826358779 }, subaccount: Subaccount([243, 229, 225, 178, 21, 217, 96, 28, 82, 65, 56, 173, 37, 45, 110, 116, 178, 134, 136, 9, 68, 207, 165, 200, 140, 60, 107, 59, 232, 23, 146, 61]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302417 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 10670561178, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697617, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697617, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4436843963457858928 }, subaccount: Subaccount([188, 50, 213, 129, 29, 73, 136, 88, 247, 140, 12, 42, 148, 189, 234, 121, 212, 22, 235, 119, 52, 158, 186, 191, 199, 168, 218, 161, 133, 30, 16, 27]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302347 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697547, spawn_at_timestamp_seconds: Some(1765302347), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 12753924004, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697547, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4436843963457858928 }, subaccount: Subaccount([188, 50, 213, 129, 29, 73, 136, 88, 247, 140, 12, 42, 148, 189, 234, 121, 212, 22, 235, 119, 52, 158, 186, 191, 199, 168, 218, 161, 133, 30, 16, 27]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302347 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 13308719698, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697547, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697547, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4455780037747023844 }, subaccount: Subaccount([206, 156, 152, 96, 179, 177, 149, 210, 7, 89, 71, 217, 121, 250, 217, 14, 222, 217, 0, 249, 220, 197, 141, 192, 196, 9, 94, 40, 150, 50, 134, 113]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765188981 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764584181, spawn_at_timestamp_seconds: Some(1765188981), followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 37693696168, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764584181, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4455780037747023844 }, subaccount: Subaccount([206, 156, 152, 96, 179, 177, 149, 210, 7, 89, 71, 217, 121, 250, 217, 14, 222, 217, 0, 249, 220, 197, 141, 192, 196, 9, 94, 40, 150, 50, 134, 113]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765188981 }, hot_keys: [], cached_neuron_stake_e8s: 39333371951, neuron_fees_e8s: 0, created_timestamp_seconds: 1764584181, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764584181, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4775228287388619194 }, subaccount: Subaccount([231, 53, 48, 142, 42, 24, 228, 165, 194, 148, 187, 212, 34, 60, 142, 183, 38, 254, 165, 180, 131, 159, 153, 36, 152, 128, 10, 75, 23, 86, 207, 37]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217489 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612689, spawn_at_timestamp_seconds: Some(1765217489), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695687, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612689, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4775228287388619194 }, subaccount: Subaccount([231, 53, 48, 142, 42, 24, 228, 165, 194, 148, 187, 212, 34, 60, 142, 183, 38, 254, 165, 180, 131, 159, 153, 36, 152, 128, 10, 75, 23, 86, 207, 37]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217489 }, hot_keys: [], cached_neuron_stake_e8s: 667522449, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612689, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612689, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 4822776706587446024 }, subaccount: Subaccount([80, 188, 119, 22, 22, 43, 6, 227, 15, 107, 237, 189, 114, 86, 252, 178, 97, 5, 244, 155, 176, 201, 17, 19, 193, 236, 215, 214, 224, 111, 86, 86]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765305865 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764701065, spawn_at_timestamp_seconds: Some(1765305865), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113793654, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764701065, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 4822776706587446024 }, subaccount: Subaccount([80, 188, 119, 22, 22, 43, 6, 227, 15, 107, 237, 189, 114, 86, 252, 178, 97, 5, 244, 155, 176, 201, 17, 19, 193, 236, 215, 214, 224, 111, 86, 86]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765305865 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 118743677, neuron_fees_e8s: 0, created_timestamp_seconds: 1764701065, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764701065, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5041044830087595774 }, subaccount: Subaccount([207, 222, 167, 76, 201, 86, 209, 97, 52, 147, 220, 140, 123, 28, 143, 162, 144, 236, 73, 68, 23, 161, 131, 75, 95, 227, 118, 121, 149, 52, 153, 88]), controller: knold-uv2qq-43uzr-zacjv-kdhny-22tbp-g5zqb-ebio5-bshbm-3nt42-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765123670 }, hot_keys: [r25el-sizze-jltp4-c5pmz-qgohu-hrezh-5m463-2hblu-putwc-hlxmi-nae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764518870, spawn_at_timestamp_seconds: Some(1765123670), followees: {5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2966415037, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764518870, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5041044830087595774 }, subaccount: Subaccount([207, 222, 167, 76, 201, 86, 209, 97, 52, 147, 220, 140, 123, 28, 143, 162, 144, 236, 73, 68, 23, 161, 131, 75, 95, 227, 118, 121, 149, 52, 153, 88]), controller: knold-uv2qq-43uzr-zacjv-kdhny-22tbp-g5zqb-ebio5-bshbm-3nt42-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765123670 }, hot_keys: [r25el-sizze-jltp4-c5pmz-qgohu-hrezh-5m463-2hblu-putwc-hlxmi-nae], cached_neuron_stake_e8s: 3095454091, neuron_fees_e8s: 0, created_timestamp_seconds: 1764518870, spawn_at_timestamp_seconds: None, followees: {13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764518870, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5110528415405960834 }, subaccount: Subaccount([249, 57, 110, 150, 117, 92, 128, 161, 99, 145, 1, 113, 203, 72, 178, 127, 171, 35, 222, 170, 80, 149, 138, 253, 75, 65, 86, 66, 176, 71, 22, 128]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217754 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612954, spawn_at_timestamp_seconds: Some(1765217754), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639698290, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612954, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5110528415405960834 }, subaccount: Subaccount([249, 57, 110, 150, 117, 92, 128, 161, 99, 145, 1, 113, 203, 72, 178, 127, 171, 35, 222, 170, 80, 149, 138, 253, 75, 65, 86, 66, 176, 71, 22, 128]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217754 }, hot_keys: [], cached_neuron_stake_e8s: 667525165, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612954, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612954, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5156484306400808809 }, subaccount: Subaccount([4, 189, 75, 127, 114, 204, 171, 103, 78, 25, 130, 118, 187, 137, 35, 183, 6, 55, 73, 161, 79, 115, 98, 64, 208, 14, 170, 147, 218, 194, 243, 98]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958330 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353530, spawn_at_timestamp_seconds: Some(1764958330), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499732, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5156484306400808809 }, subaccount: Subaccount([4, 189, 75, 127, 114, 204, 171, 103, 78, 25, 130, 118, 187, 137, 35, 183, 6, 55, 73, 161, 79, 115, 98, 64, 208, 14, 170, 147, 218, 194, 243, 98]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958330 }, hot_keys: [], cached_neuron_stake_e8s: 1113935970, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353530, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5252587268503913796 }, subaccount: Subaccount([133, 41, 159, 145, 115, 78, 7, 82, 22, 108, 160, 53, 101, 97, 77, 199, 213, 36, 207, 238, 231, 27, 250, 132, 10, 101, 43, 80, 137, 68, 226, 184]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959227 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354427, spawn_at_timestamp_seconds: Some(1764959227), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500621, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354427, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5252587268503913796 }, subaccount: Subaccount([133, 41, 159, 145, 115, 78, 7, 82, 22, 108, 160, 53, 101, 97, 77, 199, 213, 36, 207, 238, 231, 27, 250, 132, 10, 101, 43, 80, 137, 68, 226, 184]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959227 }, hot_keys: [], cached_neuron_stake_e8s: 1113936898, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354427, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354427, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5336637316204728005 }, subaccount: Subaccount([125, 151, 92, 157, 85, 214, 236, 61, 21, 191, 96, 192, 19, 83, 44, 38, 228, 215, 242, 2, 228, 38, 239, 74, 39, 83, 71, 188, 48, 81, 205, 33]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217330 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612530, spawn_at_timestamp_seconds: Some(1765217330), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695021, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5336637316204728005 }, subaccount: Subaccount([125, 151, 92, 157, 85, 214, 236, 61, 21, 191, 96, 192, 19, 83, 44, 38, 228, 215, 242, 2, 228, 38, 239, 74, 39, 83, 71, 188, 48, 81, 205, 33]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217330 }, hot_keys: [], cached_neuron_stake_e8s: 667521754, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612530, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612530, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5414903097385057521 }, subaccount: Subaccount([171, 135, 166, 152, 7, 19, 212, 194, 98, 178, 253, 208, 157, 227, 166, 149, 240, 7, 40, 185, 42, 97, 205, 247, 101, 64, 244, 249, 194, 46, 2, 213]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 80756461280, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5414903097385057521 }, subaccount: Subaccount([171, 135, 166, 152, 7, 19, 212, 194, 98, 178, 253, 208, 157, 227, 166, 149, 240, 7, 40, 185, 42, 97, 205, 247, 101, 64, 244, 249, 194, 46, 2, 213]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 84269367345, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5523271719561874560 }, subaccount: Subaccount([53, 158, 122, 56, 223, 24, 8, 82, 192, 44, 2, 34, 247, 209, 151, 73, 103, 107, 99, 103, 77, 182, 253, 3, 145, 169, 221, 239, 75, 200, 121, 206]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 115764576301, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5523271719561874560 }, subaccount: Subaccount([53, 158, 122, 56, 223, 24, 8, 82, 192, 44, 2, 34, 247, 209, 151, 73, 103, 107, 99, 103, 77, 182, 253, 3, 145, 169, 221, 239, 75, 200, 121, 206]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 120800335370, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5524380148310829961 }, subaccount: Subaccount([194, 65, 117, 134, 194, 244, 210, 244, 81, 53, 147, 15, 220, 175, 240, 195, 7, 128, 137, 222, 211, 218, 189, 126, 196, 5, 32, 8, 157, 82, 57, 175]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 145670896513, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5524380148310829961 }, subaccount: Subaccount([194, 65, 117, 134, 194, 244, 210, 244, 81, 53, 147, 15, 220, 175, 240, 195, 7, 128, 137, 222, 211, 218, 189, 126, 196, 5, 32, 8, 157, 82, 57, 175]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 152007580511, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5649806916011346054 }, subaccount: Subaccount([110, 19, 137, 225, 179, 128, 43, 162, 228, 80, 117, 207, 70, 204, 103, 71, 195, 213, 241, 98, 32, 155, 30, 2, 98, 255, 101, 92, 8, 117, 171, 79]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302457 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697657, spawn_at_timestamp_seconds: Some(1765302457), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 13770388006, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697657, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5649806916011346054 }, subaccount: Subaccount([110, 19, 137, 225, 179, 128, 43, 162, 228, 80, 117, 207, 70, 204, 103, 71, 195, 213, 241, 98, 32, 155, 30, 2, 98, 255, 101, 92, 8, 117, 171, 79]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302457 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 14369399884, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697657, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697657, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5685978651818082727 }, subaccount: Subaccount([218, 230, 89, 221, 222, 113, 221, 237, 190, 255, 202, 214, 180, 7, 32, 223, 208, 52, 18, 187, 74, 192, 152, 221, 254, 246, 110, 153, 3, 199, 145, 244]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958833 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354033, spawn_at_timestamp_seconds: Some(1764958833), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067501904, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354033, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister q3fc5-haaaa-aaaaa-aaahq-cai] [archive node] remaining_capacity: 9058243877 bytes +2026-01-03 20:36:19.948932921 UTC: [Canister q3fc5-haaaa-aaaaa-aaahq-cai] [archive node] append_blocks(): archive size: 10739178 blocks, appending 839 blocks +2026-01-03 20:36:19.948932921 UTC: [Canister q3fc5-haaaa-aaaaa-aaahq-cai] [archive node] append_blocks(): done. archive size: 10740017 blocks +2026-01-03 20:36:19.948932921 UTC: [Canister q3fc5-haaaa-aaaaa-aaahq-cai] [archive node] append_blocks(): archive size: 10740017 blocks, appending 161 blocks +2026-01-03 20:36:19.948932921 UTC: [Canister q3fc5-haaaa-aaaaa-aaahq-cai] [archive node] append_blocks(): done. archive size: 10740178 blocks +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5685978651818082727 }, subaccount: Subaccount([218, 230, 89, 221, 222, 113, 221, 237, 190, 255, 202, 214, 180, 7, 32, 223, 208, 52, 18, 187, 74, 192, 152, 221, 254, 246, 110, 153, 3, 199, 145, 244]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958833 }, hot_keys: [], cached_neuron_stake_e8s: 1113938236, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354033, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354033, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5825885293931434858 }, subaccount: Subaccount([229, 150, 99, 161, 248, 5, 200, 88, 13, 163, 128, 106, 131, 50, 228, 157, 77, 245, 145, 195, 24, 235, 242, 218, 124, 56, 233, 255, 208, 150, 119, 186]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252827 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648027, spawn_at_timestamp_seconds: Some(1765252827), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 178839956, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648027, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5825885293931434858 }, subaccount: Subaccount([229, 150, 99, 161, 248, 5, 200, 88, 13, 163, 128, 106, 131, 50, 228, 157, 77, 245, 145, 195, 24, 235, 242, 218, 124, 56, 233, 255, 208, 150, 119, 186]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252827 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 186619494, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648027, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648027, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5846589431087477800 }, subaccount: Subaccount([141, 241, 63, 183, 26, 242, 211, 182, 199, 144, 46, 138, 192, 221, 139, 197, 61, 184, 167, 165, 223, 168, 90, 113, 10, 167, 163, 59, 29, 11, 240, 162]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958722 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353922, spawn_at_timestamp_seconds: Some(1764958722), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067504275, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353922, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5846589431087477800 }, subaccount: Subaccount([141, 241, 63, 183, 26, 242, 211, 182, 199, 144, 46, 138, 192, 221, 139, 197, 61, 184, 167, 165, 223, 168, 90, 113, 10, 167, 163, 59, 29, 11, 240, 162]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958722 }, hot_keys: [], cached_neuron_stake_e8s: 1113940710, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353922, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353922, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:19.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 5955034122603234434 }, subaccount: Subaccount([213, 131, 34, 238, 217, 219, 30, 173, 100, 173, 204, 198, 210, 238, 221, 121, 73, 150, 227, 76, 255, 15, 9, 158, 41, 43, 151, 115, 68, 13, 172, 49]), controller: 6kw4v-nyvyh-yrqgb-jmkii-cfpho-4lgnt-33jv4-36uvl-ht65l-ibxdp-pae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764976948 }, hot_keys: [yhlhq-25tu6-ppbbc-psrnc-mno46-t7gxy-5jmux-sogtf-rdr5s-jkcuk-fqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764372148, spawn_at_timestamp_seconds: Some(1764976948), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1041052281, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764372148, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 5955034122603234434 }, subaccount: Subaccount([213, 131, 34, 238, 217, 219, 30, 173, 100, 173, 204, 198, 210, 238, 221, 121, 73, 150, 227, 76, 255, 15, 9, 158, 41, 43, 151, 115, 68, 13, 172, 49]), controller: 6kw4v-nyvyh-yrqgb-jmkii-cfpho-4lgnt-33jv4-36uvl-ht65l-ibxdp-pae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764976948 }, hot_keys: [yhlhq-25tu6-ppbbc-psrnc-mno46-t7gxy-5jmux-sogtf-rdr5s-jkcuk-fqe], cached_neuron_stake_e8s: 1086338055, neuron_fees_e8s: 0, created_timestamp_seconds: 1764372148, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764372148, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6093129252762822276 }, subaccount: Subaccount([208, 35, 67, 24, 15, 218, 160, 200, 50, 187, 76, 208, 137, 208, 42, 245, 23, 19, 204, 54, 132, 212, 39, 80, 12, 89, 88, 173, 8, 24, 54, 129]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 105211218156, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6093129252762822276 }, subaccount: Subaccount([208, 35, 67, 24, 15, 218, 160, 200, 50, 187, 76, 208, 137, 208, 42, 245, 23, 19, 204, 54, 132, 212, 39, 80, 12, 89, 88, 173, 8, 24, 54, 129]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 109787906145, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6139564352953196299 }, subaccount: Subaccount([19, 27, 129, 217, 145, 26, 200, 225, 171, 103, 44, 10, 106, 200, 157, 32, 202, 127, 59, 1, 58, 177, 41, 29, 240, 245, 77, 243, 226, 232, 152, 182]), controller: hyhrd-ncmke-lehtj-zn5jy-v77af-yvswy-bpt6o-u7jhx-y2gbc-fvglj-aae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765406868 }, hot_keys: [hi7cd-ivran-sjuyi-6ongr-nlzye-jbkck-a4kvt-itej4-xav5e-kvab3-5ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764802068, spawn_at_timestamp_seconds: Some(1765406868), followees: {7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 16737374299031693047 }, NeuronId { id: 5944070935127277981 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 16737374299031693047 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 16737374299031693047 }, NeuronId { id: 5944070935127277981 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1365570081, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764802068, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6139564352953196299 }, subaccount: Subaccount([19, 27, 129, 217, 145, 26, 200, 225, 171, 103, 44, 10, 106, 200, 157, 32, 202, 127, 59, 1, 58, 177, 41, 29, 240, 245, 77, 243, 226, 232, 152, 182]), controller: hyhrd-ncmke-lehtj-zn5jy-v77af-yvswy-bpt6o-u7jhx-y2gbc-fvglj-aae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765406868 }, hot_keys: [hi7cd-ivran-sjuyi-6ongr-nlzye-jbkck-a4kvt-itej4-xav5e-kvab3-5ae], cached_neuron_stake_e8s: 1424972379, neuron_fees_e8s: 0, created_timestamp_seconds: 1764802068, spawn_at_timestamp_seconds: None, followees: {3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 16737374299031693047 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 16737374299031693047 }, NeuronId { id: 5944070935127277981 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }, NeuronId { id: 16737374299031693047 }, NeuronId { id: 5944070935127277981 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764802068, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6215784269859121441 }, subaccount: Subaccount([140, 84, 105, 181, 85, 83, 252, 87, 97, 116, 178, 195, 10, 135, 6, 24, 188, 30, 56, 94, 154, 75, 19, 199, 199, 243, 254, 124, 205, 133, 39, 81]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959089 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354289, spawn_at_timestamp_seconds: Some(1764959089), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500665, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354289, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6215784269859121441 }, subaccount: Subaccount([140, 84, 105, 181, 85, 83, 252, 87, 97, 116, 178, 195, 10, 135, 6, 24, 188, 30, 56, 94, 154, 75, 19, 199, 199, 243, 254, 124, 205, 133, 39, 81]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959089 }, hot_keys: [], cached_neuron_stake_e8s: 1113936943, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354289, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354289, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6604330778793977766 }, subaccount: Subaccount([67, 80, 229, 208, 228, 47, 104, 128, 179, 20, 24, 61, 219, 92, 127, 0, 244, 245, 119, 98, 78, 242, 74, 108, 151, 191, 147, 142, 145, 204, 193, 16]), controller: ewoh6-72w3y-bbvz2-c6cl6-defce-rv47f-y4rjc-gcewx-hgspu-6re7f-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765108856 }, hot_keys: [4r2ux-frvu7-xerkv-cidb5-jedbz-cdd26-d76fy-6oew3-r7adm-6qwhq-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764504056, spawn_at_timestamp_seconds: Some(1765108856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1252973439, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764504056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6604330778793977766 }, subaccount: Subaccount([67, 80, 229, 208, 228, 47, 104, 128, 179, 20, 24, 61, 219, 92, 127, 0, 244, 245, 119, 98, 78, 242, 74, 108, 151, 191, 147, 142, 145, 204, 193, 16]), controller: ewoh6-72w3y-bbvz2-c6cl6-defce-rv47f-y4rjc-gcewx-hgspu-6re7f-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765108856 }, hot_keys: [4r2ux-frvu7-xerkv-cidb5-jedbz-cdd26-d76fy-6oew3-r7adm-6qwhq-4ae], cached_neuron_stake_e8s: 1307477783, neuron_fees_e8s: 0, created_timestamp_seconds: 1764504056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764504056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6650454279113990750 }, subaccount: Subaccount([34, 119, 70, 64, 173, 201, 70, 146, 16, 191, 57, 80, 195, 136, 110, 215, 145, 162, 190, 206, 192, 60, 49, 114, 18, 182, 57, 229, 151, 251, 71, 0]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217792 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612992, spawn_at_timestamp_seconds: Some(1765217792), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639697925, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612992, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6650454279113990750 }, subaccount: Subaccount([34, 119, 70, 64, 173, 201, 70, 146, 16, 191, 57, 80, 195, 136, 110, 215, 145, 162, 190, 206, 192, 60, 49, 114, 18, 182, 57, 229, 151, 251, 71, 0]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217792 }, hot_keys: [], cached_neuron_stake_e8s: 667524784, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612992, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612992, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6712230046694703360 }, subaccount: Subaccount([229, 130, 201, 119, 3, 32, 244, 245, 131, 68, 51, 195, 216, 4, 26, 15, 82, 68, 24, 60, 24, 194, 40, 73, 237, 175, 46, 177, 220, 174, 133, 32]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 109277720676, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6712230046694703360 }, subaccount: Subaccount([229, 130, 201, 119, 3, 32, 244, 245, 131, 68, 51, 195, 216, 4, 26, 15, 82, 68, 24, 60, 24, 194, 40, 73, 237, 175, 46, 177, 220, 174, 133, 32]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 114031301525, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 6844660080225334632 }, subaccount: Subaccount([223, 219, 60, 149, 104, 173, 72, 119, 222, 246, 6, 53, 149, 51, 169, 39, 103, 42, 34, 4, 52, 207, 103, 204, 10, 195, 128, 156, 5, 134, 199, 166]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302398 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697598, spawn_at_timestamp_seconds: Some(1765302398), followees: {13: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 24772697864, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697598, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 6844660080225334632 }, subaccount: Subaccount([223, 219, 60, 149, 104, 173, 72, 119, 222, 246, 6, 53, 149, 51, 169, 39, 103, 42, 34, 4, 52, 207, 103, 204, 10, 195, 128, 156, 5, 134, 199, 166]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302398 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 25850310221, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697598, spawn_at_timestamp_seconds: None, followees: {12: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697598, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7000097866215980860 }, subaccount: Subaccount([232, 105, 10, 107, 49, 110, 220, 119, 64, 94, 219, 149, 6, 159, 105, 18, 57, 86, 99, 20, 151, 120, 209, 19, 224, 45, 228, 197, 124, 82, 144, 126]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302484 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697684, spawn_at_timestamp_seconds: Some(1765302484), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 12421245072, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697684, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7000097866215980860 }, subaccount: Subaccount([232, 105, 10, 107, 49, 110, 220, 119, 64, 94, 219, 149, 6, 159, 105, 18, 57, 86, 99, 20, 151, 120, 209, 19, 224, 45, 228, 197, 124, 82, 144, 126]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302484 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 12961569232, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697684, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697684, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7042832270620111898 }, subaccount: Subaccount([0, 25, 20, 253, 144, 22, 227, 8, 95, 77, 70, 101, 160, 35, 48, 67, 22, 113, 165, 206, 169, 214, 146, 92, 236, 23, 160, 102, 239, 120, 60, 38]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958341 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353541, spawn_at_timestamp_seconds: Some(1764958341), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067502023, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353541, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7042832270620111898 }, subaccount: Subaccount([0, 25, 20, 253, 144, 22, 227, 8, 95, 77, 70, 101, 160, 35, 48, 67, 22, 113, 165, 206, 169, 214, 146, 92, 236, 23, 160, 102, 239, 120, 60, 38]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958341 }, hot_keys: [], cached_neuron_stake_e8s: 1113938361, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353541, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353541, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7085657910697699964 }, subaccount: Subaccount([239, 136, 152, 226, 123, 162, 169, 206, 247, 70, 202, 43, 106, 5, 142, 187, 178, 215, 136, 55, 188, 140, 158, 148, 190, 106, 116, 183, 211, 91, 226, 100]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958051 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353251, spawn_at_timestamp_seconds: Some(1764958051), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498717, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353251, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7085657910697699964 }, subaccount: Subaccount([239, 136, 152, 226, 123, 162, 169, 206, 247, 70, 202, 43, 106, 5, 142, 187, 178, 215, 136, 55, 188, 140, 158, 148, 190, 106, 116, 183, 211, 91, 226, 100]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958051 }, hot_keys: [], cached_neuron_stake_e8s: 1113934911, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353251, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353251, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7262271815798775395 }, subaccount: Subaccount([183, 102, 217, 47, 20, 86, 174, 204, 234, 44, 110, 172, 39, 11, 157, 131, 128, 239, 115, 76, 182, 218, 235, 157, 184, 22, 71, 80, 163, 10, 242, 71]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958015 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353215, spawn_at_timestamp_seconds: Some(1764958015), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499053, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353215, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7262271815798775395 }, subaccount: Subaccount([183, 102, 217, 47, 20, 86, 174, 204, 234, 44, 110, 172, 39, 11, 157, 131, 128, 239, 115, 76, 182, 218, 235, 157, 184, 22, 71, 80, 163, 10, 242, 71]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958015 }, hot_keys: [], cached_neuron_stake_e8s: 1113935261, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353215, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353215, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7310800066546807618 }, subaccount: Subaccount([63, 45, 116, 142, 11, 214, 162, 63, 147, 199, 99, 251, 232, 135, 9, 149, 105, 45, 112, 168, 42, 134, 10, 132, 26, 166, 110, 211, 155, 233, 214, 138]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 474778432288, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7310800066546807618 }, subaccount: Subaccount([63, 45, 116, 142, 11, 214, 162, 63, 147, 199, 99, 251, 232, 135, 9, 149, 105, 45, 112, 168, 42, 134, 10, 132, 26, 166, 110, 211, 155, 233, 214, 138]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 495431294092, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7446699449103767816 }, subaccount: Subaccount([158, 121, 109, 30, 224, 102, 79, 160, 151, 71, 183, 191, 61, 4, 239, 101, 141, 244, 197, 158, 27, 95, 250, 175, 124, 99, 125, 75, 118, 147, 154, 174]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958752 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353952, spawn_at_timestamp_seconds: Some(1764958752), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067503666, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353952, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7446699449103767816 }, subaccount: Subaccount([158, 121, 109, 30, 224, 102, 79, 160, 151, 71, 183, 191, 61, 4, 239, 101, 141, 244, 197, 158, 27, 95, 250, 175, 124, 99, 125, 75, 118, 147, 154, 174]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958752 }, hot_keys: [], cached_neuron_stake_e8s: 1113940075, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353952, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353952, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7511771779508890303 }, subaccount: Subaccount([156, 186, 245, 6, 140, 209, 2, 156, 31, 101, 98, 35, 126, 197, 154, 168, 116, 77, 79, 26, 249, 155, 231, 118, 248, 139, 209, 15, 255, 198, 203, 72]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046301 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441501, spawn_at_timestamp_seconds: Some(1765046301), followees: {8: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2833737372, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441501, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7511771779508890303 }, subaccount: Subaccount([156, 186, 245, 6, 140, 209, 2, 156, 31, 101, 98, 35, 126, 197, 154, 168, 116, 77, 79, 26, 249, 155, 231, 118, 248, 139, 209, 15, 255, 198, 203, 72]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046301 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 2957004947, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441501, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441501, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7569267851459707896 }, subaccount: Subaccount([170, 75, 146, 167, 1, 168, 67, 216, 1, 205, 232, 217, 171, 203, 21, 230, 152, 106, 50, 58, 147, 144, 45, 116, 27, 77, 204, 120, 169, 118, 62, 1]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957879 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353079, spawn_at_timestamp_seconds: Some(1764957879), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1051588155, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353079, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7569267851459707896 }, subaccount: Subaccount([170, 75, 146, 167, 1, 168, 67, 216, 1, 205, 232, 217, 171, 203, 21, 230, 152, 106, 50, 58, 147, 144, 45, 116, 27, 77, 204, 120, 169, 118, 62, 1]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957879 }, hot_keys: [], cached_neuron_stake_e8s: 1097332239, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353079, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353079, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7638461118002128642 }, subaccount: Subaccount([12, 108, 215, 214, 60, 66, 6, 49, 122, 75, 227, 226, 138, 8, 126, 141, 5, 170, 168, 187, 163, 36, 191, 200, 95, 8, 238, 190, 153, 200, 44, 26]), controller: bvljx-ypdoo-zrr5l-goay5-ckrb5-gmq3v-22nm3-ggkcd-57qwq-w5uu7-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765085476 }, hot_keys: [63xuz-ap5mh-s2jlq-xzp4x-creoy-5iv3w-rx6n7-xjnif-i6mbt-dla6w-sqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764480676, spawn_at_timestamp_seconds: Some(1765085476), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 13538714184009896865 }] }, 14: Followees { followees: [NeuronId { id: 5132308922522452058 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 8911972533, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764480676, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7638461118002128642 }, subaccount: Subaccount([12, 108, 215, 214, 60, 66, 6, 49, 122, 75, 227, 226, 138, 8, 126, 141, 5, 170, 168, 187, 163, 36, 191, 200, 95, 8, 238, 190, 153, 200, 44, 26]), controller: bvljx-ypdoo-zrr5l-goay5-ckrb5-gmq3v-22nm3-ggkcd-57qwq-w5uu7-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765085476 }, hot_keys: [63xuz-ap5mh-s2jlq-xzp4x-creoy-5iv3w-rx6n7-xjnif-i6mbt-dla6w-sqe], cached_neuron_stake_e8s: 9299643338, neuron_fees_e8s: 0, created_timestamp_seconds: 1764480676, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5132308922522452058 }] }, 0: Followees { followees: [NeuronId { id: 13538714184009896865 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764480676, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 7851047659397828860 }, subaccount: Subaccount([83, 135, 10, 76, 182, 142, 187, 73, 242, 178, 249, 44, 194, 126, 186, 233, 6, 250, 187, 177, 98, 30, 155, 118, 41, 41, 226, 180, 20, 217, 64, 226]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217357 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612557, spawn_at_timestamp_seconds: Some(1765217357), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695050, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612557, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 7851047659397828860 }, subaccount: Subaccount([83, 135, 10, 76, 182, 142, 187, 73, 242, 178, 249, 44, 194, 126, 186, 233, 6, 250, 187, 177, 98, 30, 155, 118, 41, 41, 226, 180, 20, 217, 64, 226]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217357 }, hot_keys: [], cached_neuron_stake_e8s: 667521784, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612557, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612557, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8079527375369967164 }, subaccount: Subaccount([91, 206, 21, 40, 245, 172, 122, 105, 3, 64, 243, 31, 33, 90, 127, 120, 71, 80, 136, 248, 139, 183, 191, 47, 252, 132, 143, 212, 160, 233, 76, 94]), controller: y2ovg-swcnq-urgwv-do3rd-jdhf4-vfa3u-cc4ep-azh4b-5vuf7-mr6gj-5ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764870007 }, hot_keys: [wum7b-rv44f-t23tg-mybge-5jbkx-3j6es-xxmwq-2x6yn-dp4pq-tfq72-fae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764265207, spawn_at_timestamp_seconds: Some(1764870007), followees: {2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 12890113924500239096 }] }, 13: Followees { followees: [NeuronId { id: 28 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 305948537, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764265207, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8079527375369967164 }, subaccount: Subaccount([91, 206, 21, 40, 245, 172, 122, 105, 3, 64, 243, 31, 33, 90, 127, 120, 71, 80, 136, 248, 139, 183, 191, 47, 252, 132, 143, 212, 160, 233, 76, 94]), controller: y2ovg-swcnq-urgwv-do3rd-jdhf4-vfa3u-cc4ep-azh4b-5vuf7-mr6gj-5ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764870007 }, hot_keys: [wum7b-rv44f-t23tg-mybge-5jbkx-3j6es-xxmwq-2x6yn-dp4pq-tfq72-fae], cached_neuron_stake_e8s: 319257298, neuron_fees_e8s: 0, created_timestamp_seconds: 1764265207, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 9: Followees { followees: [NeuronId { id: 12890113924500239096 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 28 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764265207, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8084024471179115290 }, subaccount: Subaccount([179, 175, 45, 184, 204, 13, 71, 176, 108, 71, 255, 92, 241, 178, 180, 184, 208, 225, 108, 3, 87, 45, 128, 162, 99, 172, 40, 222, 157, 80, 188, 10]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302474 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697674, spawn_at_timestamp_seconds: Some(1765302474), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 14047793253, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697674, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8084024471179115290 }, subaccount: Subaccount([179, 175, 45, 184, 204, 13, 71, 176, 108, 71, 255, 92, 241, 178, 180, 184, 208, 225, 108, 3, 87, 45, 128, 162, 99, 172, 40, 222, 157, 80, 188, 10]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302474 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 14658872259, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697674, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697674, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8088044649733593594 }, subaccount: Subaccount([51, 16, 154, 190, 118, 49, 110, 210, 41, 129, 189, 82, 51, 123, 55, 118, 41, 106, 88, 14, 36, 153, 103, 99, 217, 196, 28, 202, 163, 209, 26, 9]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 218351535450, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8088044649733593594 }, subaccount: Subaccount([51, 16, 154, 190, 118, 49, 110, 210, 41, 129, 189, 82, 51, 123, 55, 118, 41, 106, 88, 14, 36, 153, 103, 99, 217, 196, 28, 202, 163, 209, 26, 9]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 227849827242, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8130328733978688571 }, subaccount: Subaccount([6, 116, 39, 16, 98, 33, 129, 130, 250, 140, 138, 56, 164, 204, 111, 1, 81, 28, 91, 168, 112, 168, 216, 33, 104, 149, 29, 192, 162, 122, 154, 73]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302350 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697550, spawn_at_timestamp_seconds: Some(1765302350), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 18579521432, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697550, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8130328733978688571 }, subaccount: Subaccount([6, 116, 39, 16, 98, 33, 129, 130, 250, 140, 138, 56, 164, 204, 111, 1, 81, 28, 91, 168, 112, 168, 216, 33, 104, 149, 29, 192, 162, 122, 154, 73]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302350 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 19387730614, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697550, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697550, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8218930601439451576 }, subaccount: Subaccount([42, 223, 248, 223, 238, 166, 161, 191, 116, 193, 178, 32, 51, 216, 10, 120, 177, 129, 165, 197, 200, 39, 116, 187, 109, 181, 140, 1, 24, 241, 11, 51]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765016153 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764411353, spawn_at_timestamp_seconds: Some(1765016153), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 142973406638, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764411353, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8218930601439451576 }, subaccount: Subaccount([42, 223, 248, 223, 238, 166, 161, 191, 116, 193, 178, 32, 51, 216, 10, 120, 177, 129, 165, 197, 200, 39, 116, 187, 109, 181, 140, 1, 24, 241, 11, 51]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765016153 }, hot_keys: [], cached_neuron_stake_e8s: 149192749826, neuron_fees_e8s: 0, created_timestamp_seconds: 1764411353, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764411353, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8237322272764750500 }, subaccount: Subaccount([19, 208, 81, 51, 138, 51, 14, 239, 216, 111, 57, 41, 1, 240, 48, 61, 39, 4, 152, 183, 173, 186, 230, 127, 198, 128, 90, 168, 218, 237, 57, 150]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765361793 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764756993, spawn_at_timestamp_seconds: Some(1765361793), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 47744405180, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764756993, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8237322272764750500 }, subaccount: Subaccount([19, 208, 81, 51, 138, 51, 14, 239, 216, 111, 57, 41, 1, 240, 48, 61, 39, 4, 152, 183, 173, 186, 230, 127, 198, 128, 90, 168, 218, 237, 57, 150]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765361793 }, hot_keys: [], cached_neuron_stake_e8s: 49821286805, neuron_fees_e8s: 0, created_timestamp_seconds: 1764756993, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764756993, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8294829223051226616 }, subaccount: Subaccount([129, 193, 151, 97, 30, 224, 11, 173, 226, 11, 129, 207, 100, 188, 23, 23, 112, 191, 1, 252, 51, 48, 243, 83, 97, 186, 28, 189, 186, 47, 112, 44]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 47270940758, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8294829223051226616 }, subaccount: Subaccount([129, 193, 151, 97, 30, 224, 11, 173, 226, 11, 129, 207, 100, 188, 23, 23, 112, 191, 1, 252, 51, 48, 243, 83, 97, 186, 28, 189, 186, 47, 112, 44]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 49327226680, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8309497267295083434 }, subaccount: Subaccount([141, 236, 34, 88, 43, 59, 17, 88, 9, 134, 141, 103, 55, 38, 90, 79, 203, 117, 28, 244, 172, 235, 167, 103, 127, 86, 125, 167, 122, 110, 53, 89]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765103276 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764498476, spawn_at_timestamp_seconds: Some(1765103276), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113835995, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764498476, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8309497267295083434 }, subaccount: Subaccount([141, 236, 34, 88, 43, 59, 17, 88, 9, 134, 141, 103, 55, 38, 90, 79, 203, 117, 28, 244, 172, 235, 167, 103, 127, 86, 125, 167, 122, 110, 53, 89]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765103276 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 118787860, neuron_fees_e8s: 0, created_timestamp_seconds: 1764498476, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764498476, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8347498857598482506 }, subaccount: Subaccount([113, 181, 199, 198, 168, 24, 120, 83, 191, 16, 213, 35, 116, 164, 229, 85, 182, 13, 3, 184, 178, 197, 70, 227, 75, 173, 196, 103, 72, 41, 113, 100]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218180 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613380, spawn_at_timestamp_seconds: Some(1765218180), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696576, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613380, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8347498857598482506 }, subaccount: Subaccount([113, 181, 199, 198, 168, 24, 120, 83, 191, 16, 213, 35, 116, 164, 229, 85, 182, 13, 3, 184, 178, 197, 70, 227, 75, 173, 196, 103, 72, 41, 113, 100]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218180 }, hot_keys: [], cached_neuron_stake_e8s: 667523377, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613380, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613380, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8410988644367368151 }, subaccount: Subaccount([90, 235, 26, 189, 113, 130, 238, 4, 126, 125, 120, 87, 117, 65, 173, 15, 203, 60, 105, 18, 123, 226, 210, 144, 62, 200, 196, 203, 105, 46, 82, 21]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 31498878171, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8410988644367368151 }, subaccount: Subaccount([90, 235, 26, 189, 113, 130, 238, 4, 126, 125, 120, 87, 117, 65, 173, 15, 203, 60, 105, 18, 123, 226, 210, 144, 62, 200, 196, 203, 105, 46, 82, 21]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 32869079371, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8425261509151011862 }, subaccount: Subaccount([147, 36, 76, 168, 132, 194, 190, 145, 248, 43, 214, 33, 156, 67, 150, 12, 154, 65, 126, 207, 217, 26, 85, 38, 14, 240, 246, 201, 40, 235, 17, 69]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765069983 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764465183, spawn_at_timestamp_seconds: Some(1765069983), followees: {0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 215997819493, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764465183, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8425261509151011862 }, subaccount: Subaccount([147, 36, 76, 168, 132, 194, 190, 145, 248, 43, 214, 33, 156, 67, 150, 12, 154, 65, 126, 207, 217, 26, 85, 38, 14, 240, 246, 201, 40, 235, 17, 69]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765069983 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 225393724640, neuron_fees_e8s: 0, created_timestamp_seconds: 1764465183, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764465183, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8494982691517537502 }, subaccount: Subaccount([1, 24, 53, 33, 177, 107, 206, 67, 137, 231, 164, 89, 40, 14, 174, 147, 73, 153, 6, 2, 206, 101, 210, 246, 244, 204, 254, 67, 35, 140, 84, 16]), controller: mwn4i-w4w24-3etkq-bwq3m-c3prx-yc4tv-3zb2c-t4k4n-nirsm-3eeia-qqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765139416 }, hot_keys: [uxsly-i6urs-qb4bs-oqz7e-w7phn-l3ok6-iwiqi-zda7g-wkjhy-ivzq7-4ae, mwn4i-w4w24-3etkq-bwq3m-c3prx-yc4tv-3zb2c-t4k4n-nirsm-3eeia-qqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764534616, spawn_at_timestamp_seconds: Some(1765139416), followees: {9: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 428687636340283207 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 323287966, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764534616, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8494982691517537502 }, subaccount: Subaccount([1, 24, 53, 33, 177, 107, 206, 67, 137, 231, 164, 89, 40, 14, 174, 147, 73, 153, 6, 2, 206, 101, 210, 246, 244, 204, 254, 67, 35, 140, 84, 16]), controller: mwn4i-w4w24-3etkq-bwq3m-c3prx-yc4tv-3zb2c-t4k4n-nirsm-3eeia-qqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765139416 }, hot_keys: [uxsly-i6urs-qb4bs-oqz7e-w7phn-l3ok6-iwiqi-zda7g-wkjhy-ivzq7-4ae, mwn4i-w4w24-3etkq-bwq3m-c3prx-yc4tv-3zb2c-t4k4n-nirsm-3eeia-qqe], cached_neuron_stake_e8s: 337350992, neuron_fees_e8s: 0, created_timestamp_seconds: 1764534616, spawn_at_timestamp_seconds: None, followees: {9: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 428687636340283207 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764534616, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8564016620251231208 }, subaccount: Subaccount([30, 71, 215, 67, 38, 149, 253, 76, 34, 66, 183, 249, 37, 191, 152, 105, 133, 40, 197, 77, 28, 29, 46, 53, 100, 217, 110, 252, 104, 61, 14, 10]), controller: qgvh7-c2r5c-uannv-lpchp-cbo34-a43vv-pqkg2-4odal-35wxn-e73u6-tae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765085789 }, hot_keys: [qoqms-mbuzq-6q3wi-y7jge-3ay56-a3rox-mqazq-yaeyh-eyzn7-dfec5-sae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764480989, spawn_at_timestamp_seconds: Some(1765085789), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 6899669485, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764480989, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8564016620251231208 }, subaccount: Subaccount([30, 71, 215, 67, 38, 149, 253, 76, 34, 66, 183, 249, 37, 191, 152, 105, 133, 40, 197, 77, 28, 29, 46, 53, 100, 217, 110, 252, 104, 61, 14, 10]), controller: qgvh7-c2r5c-uannv-lpchp-cbo34-a43vv-pqkg2-4odal-35wxn-e73u6-tae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765085789 }, hot_keys: [qoqms-mbuzq-6q3wi-y7jge-3ay56-a3rox-mqazq-yaeyh-eyzn7-dfec5-sae], cached_neuron_stake_e8s: 7199805107, neuron_fees_e8s: 0, created_timestamp_seconds: 1764480989, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 13538714184009896865 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764480989, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8602315267007171424 }, subaccount: Subaccount([136, 229, 106, 195, 65, 97, 160, 107, 44, 77, 25, 1, 104, 179, 80, 217, 212, 46, 188, 243, 93, 245, 60, 133, 229, 249, 43, 248, 26, 15, 18, 222]), controller: 5qbka-ahbp4-kzlnp-xeq5b-zuwcb-t7pjp-cekjc-x6q7e-qi2ei-54mdc-5qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765141297 }, hot_keys: [jvmdn-pc44c-rn7jn-3ldy5-mmjdq-2d7sr-w73ap-4d3h5-ugpqz-stz7g-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764536497, spawn_at_timestamp_seconds: Some(1765141297), followees: {7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2137687508, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764536497, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8602315267007171424 }, subaccount: Subaccount([136, 229, 106, 195, 65, 97, 160, 107, 44, 77, 25, 1, 104, 179, 80, 217, 212, 46, 188, 243, 93, 245, 60, 133, 229, 249, 43, 248, 26, 15, 18, 222]), controller: 5qbka-ahbp4-kzlnp-xeq5b-zuwcb-t7pjp-cekjc-x6q7e-qi2ei-54mdc-5qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765141297 }, hot_keys: [jvmdn-pc44c-rn7jn-3ldy5-mmjdq-2d7sr-w73ap-4d3h5-ugpqz-stz7g-7qe], cached_neuron_stake_e8s: 2230676914, neuron_fees_e8s: 0, created_timestamp_seconds: 1764536497, spawn_at_timestamp_seconds: None, followees: {12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764536497, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8643007553858823409 }, subaccount: Subaccount([240, 78, 230, 1, 218, 246, 2, 166, 69, 72, 233, 72, 24, 147, 192, 216, 223, 33, 244, 169, 107, 226, 89, 123, 224, 61, 64, 201, 74, 132, 220, 15]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765141169 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764536369, spawn_at_timestamp_seconds: Some(1765141169), followees: {4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 372770873, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764536369, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8643007553858823409 }, subaccount: Subaccount([240, 78, 230, 1, 218, 246, 2, 166, 69, 72, 233, 72, 24, 147, 192, 216, 223, 33, 244, 169, 107, 226, 89, 123, 224, 61, 64, 201, 74, 132, 220, 15]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765141169 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 388986405, neuron_fees_e8s: 0, created_timestamp_seconds: 1764536369, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764536369, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8655902373988326524 }, subaccount: Subaccount([44, 1, 215, 227, 163, 183, 31, 0, 122, 1, 3, 165, 177, 110, 11, 182, 215, 4, 8, 147, 132, 126, 248, 75, 96, 192, 234, 155, 177, 76, 124, 77]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765001566 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764396766, spawn_at_timestamp_seconds: Some(1765001566), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498819, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764396766, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8655902373988326524 }, subaccount: Subaccount([44, 1, 215, 227, 163, 183, 31, 0, 122, 1, 3, 165, 177, 110, 11, 182, 215, 4, 8, 147, 132, 126, 248, 75, 96, 192, 234, 155, 177, 76, 124, 77]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765001566 }, hot_keys: [], cached_neuron_stake_e8s: 1113935017, neuron_fees_e8s: 0, created_timestamp_seconds: 1764396766, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764396766, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8685593849203696996 }, subaccount: Subaccount([46, 14, 51, 82, 180, 2, 161, 72, 197, 156, 228, 202, 146, 92, 126, 135, 235, 83, 152, 36, 91, 13, 137, 155, 225, 148, 224, 16, 76, 222, 233, 240]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958692 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353892, spawn_at_timestamp_seconds: Some(1764958692), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067503295, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353892, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8685593849203696996 }, subaccount: Subaccount([46, 14, 51, 82, 180, 2, 161, 72, 197, 156, 228, 202, 146, 92, 126, 135, 235, 83, 152, 36, 91, 13, 137, 155, 225, 148, 224, 16, 76, 222, 233, 240]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958692 }, hot_keys: [], cached_neuron_stake_e8s: 1113939688, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353892, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353892, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 8873988275734820910 }, subaccount: Subaccount([37, 215, 89, 124, 141, 33, 78, 236, 220, 5, 136, 101, 214, 161, 91, 53, 45, 147, 16, 110, 65, 76, 177, 203, 50, 138, 135, 109, 245, 19, 150, 121]), controller: gzxep-rtwvy-cg4nb-afmrn-qpboc-plinf-w5f77-sensn-zblvv-4tdg3-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765044439 }, hot_keys: [2ax7y-ev7rx-gvd3e-sy5y3-pv75g-hhrb7-k7xbf-dw6yq-eq5zu-jjinh-zqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764439639, spawn_at_timestamp_seconds: Some(1765044439), followees: {16: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 7446549063176501841 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 8571487073262291504 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 7446549063176501841 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 451848571, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764439639, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 8873988275734820910 }, subaccount: Subaccount([37, 215, 89, 124, 141, 33, 78, 236, 220, 5, 136, 101, 214, 161, 91, 53, 45, 147, 16, 110, 65, 76, 177, 203, 50, 138, 135, 109, 245, 19, 150, 121]), controller: gzxep-rtwvy-cg4nb-afmrn-qpboc-plinf-w5f77-sensn-zblvv-4tdg3-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765044439 }, hot_keys: [2ax7y-ev7rx-gvd3e-sy5y3-pv75g-hhrb7-k7xbf-dw6yq-eq5zu-jjinh-zqe], cached_neuron_stake_e8s: 471503983, neuron_fees_e8s: 0, created_timestamp_seconds: 1764439639, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 1767081890685465163 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 7446549063176501841 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 8571487073262291504 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 7446549063176501841 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764439639, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9074460117615128405 }, subaccount: Subaccount([199, 129, 242, 214, 159, 213, 208, 10, 139, 20, 65, 48, 164, 164, 151, 185, 145, 182, 93, 127, 184, 34, 109, 102, 169, 198, 121, 181, 183, 224, 142, 251]), controller: fjxym-be7ko-74bk5-jcajj-mqpct-5b2mi-ypnio-ofb7p-tvqik-zhfzw-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283397 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae, 2pdvh-73rxu-xjmbn-t6n3j-iuptj-lqq3l-dubf5-b3xgn-aai7v-zulj3-yae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678597, spawn_at_timestamp_seconds: Some(1765283397), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 645008418428, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678597, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9074460117615128405 }, subaccount: Subaccount([199, 129, 242, 214, 159, 213, 208, 10, 139, 20, 65, 48, 164, 164, 151, 185, 145, 182, 93, 127, 184, 34, 109, 102, 169, 198, 121, 181, 183, 224, 142, 251]), controller: fjxym-be7ko-74bk5-jcajj-mqpct-5b2mi-ypnio-ofb7p-tvqik-zhfzw-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283397 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae, 2pdvh-73rxu-xjmbn-t6n3j-iuptj-lqq3l-dubf5-b3xgn-aai7v-zulj3-yae], cached_neuron_stake_e8s: 673066284629, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678597, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678597, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9091274253163829905 }, subaccount: Subaccount([14, 210, 127, 156, 126, 159, 240, 83, 241, 126, 62, 33, 77, 33, 186, 193, 97, 68, 180, 131, 245, 188, 33, 106, 84, 127, 34, 4, 216, 132, 86, 111]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764950480 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764345680, spawn_at_timestamp_seconds: Some(1764950480), followees: {15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 616622685, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764345680, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9091274253163829905 }, subaccount: Subaccount([14, 210, 127, 156, 126, 159, 240, 83, 241, 126, 62, 33, 77, 33, 186, 193, 97, 68, 180, 131, 245, 188, 33, 106, 84, 127, 34, 4, 216, 132, 86, 111]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764950480 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 643445771, neuron_fees_e8s: 0, created_timestamp_seconds: 1764345680, spawn_at_timestamp_seconds: None, followees: {2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764345680, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9122338052657558505 }, subaccount: Subaccount([162, 57, 226, 161, 226, 233, 233, 68, 69, 115, 33, 188, 223, 78, 86, 1, 164, 92, 212, 2, 90, 68, 20, 44, 140, 153, 35, 220, 109, 255, 31, 55]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217181 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612381, spawn_at_timestamp_seconds: Some(1765217181), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695270, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612381, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9122338052657558505 }, subaccount: Subaccount([162, 57, 226, 161, 226, 233, 233, 68, 69, 115, 33, 188, 223, 78, 86, 1, 164, 92, 212, 2, 90, 68, 20, 44, 140, 153, 35, 220, 109, 255, 31, 55]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217181 }, hot_keys: [], cached_neuron_stake_e8s: 667522014, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612381, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612381, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9247354341855836508 }, subaccount: Subaccount([119, 71, 140, 43, 170, 46, 56, 173, 154, 120, 168, 150, 26, 21, 48, 211, 49, 143, 252, 87, 94, 194, 226, 156, 154, 61, 61, 109, 148, 44, 200, 30]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217999 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613199, spawn_at_timestamp_seconds: Some(1765217999), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639278936, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613199, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9247354341855836508 }, subaccount: Subaccount([119, 71, 140, 43, 170, 46, 56, 173, 154, 120, 168, 150, 26, 21, 48, 211, 49, 143, 252, 87, 94, 194, 226, 156, 154, 61, 61, 109, 148, 44, 200, 30]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217999 }, hot_keys: [], cached_neuron_stake_e8s: 667087569, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613199, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613199, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9311711408835755784 }, subaccount: Subaccount([169, 186, 218, 37, 25, 50, 116, 30, 94, 30, 84, 249, 144, 73, 66, 14, 156, 129, 189, 102, 236, 197, 142, 124, 239, 180, 56, 211, 245, 219, 171, 141]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 99667637348, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9311711408835755784 }, subaccount: Subaccount([169, 186, 218, 37, 25, 50, 116, 30, 94, 30, 84, 249, 144, 73, 66, 14, 156, 129, 189, 102, 236, 197, 142, 124, 239, 180, 56, 211, 245, 219, 171, 141]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 104003179572, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9337031673198515662 }, subaccount: Subaccount([93, 43, 166, 144, 43, 68, 204, 236, 189, 40, 149, 220, 33, 201, 53, 93, 100, 25, 48, 245, 136, 217, 199, 175, 54, 119, 120, 234, 191, 76, 106, 39]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765389121 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764784321, spawn_at_timestamp_seconds: Some(1765389121), followees: {4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1118168750, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764784321, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9337031673198515662 }, subaccount: Subaccount([93, 43, 166, 144, 43, 68, 204, 236, 189, 40, 149, 220, 33, 201, 53, 93, 100, 25, 48, 245, 136, 217, 199, 175, 54, 119, 120, 234, 191, 76, 106, 39]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765389121 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 1166809090, neuron_fees_e8s: 0, created_timestamp_seconds: 1764784321, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764784321, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9406140170113107171 }, subaccount: Subaccount([167, 120, 132, 124, 165, 97, 214, 22, 161, 21, 108, 134, 92, 195, 35, 187, 148, 136, 236, 100, 143, 22, 247, 250, 100, 141, 140, 130, 180, 92, 167, 230]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33771326631, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9406140170113107171 }, subaccount: Subaccount([167, 120, 132, 124, 165, 97, 214, 22, 161, 21, 108, 134, 92, 195, 35, 187, 148, 136, 236, 100, 143, 22, 247, 250, 100, 141, 140, 130, 180, 92, 167, 230]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 35240379339, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9425499314934386643 }, subaccount: Subaccount([91, 177, 169, 144, 71, 33, 61, 157, 106, 129, 107, 78, 129, 16, 2, 151, 135, 17, 14, 103, 92, 227, 114, 144, 172, 89, 101, 25, 131, 119, 108, 4]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959056 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354256, spawn_at_timestamp_seconds: Some(1764959056), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067501834, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354256, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9425499314934386643 }, subaccount: Subaccount([91, 177, 169, 144, 71, 33, 61, 157, 106, 129, 107, 78, 129, 16, 2, 151, 135, 17, 14, 103, 92, 227, 114, 144, 172, 89, 101, 25, 131, 119, 108, 4]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959056 }, hot_keys: [], cached_neuron_stake_e8s: 1113938163, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354256, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354256, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9444755877855534844 }, subaccount: Subaccount([72, 69, 22, 28, 60, 241, 198, 8, 163, 203, 226, 198, 110, 77, 97, 42, 239, 21, 236, 103, 20, 119, 107, 236, 245, 49, 59, 5, 129, 15, 239, 108]), controller: 342yc-jab3h-xojlm-aczkb-mnfb6-sc5lz-tsyqr-ennts-37r23-6uxlh-yqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765377335 }, hot_keys: [lhndc-wzwfz-te7rt-u66uv-ip2f6-muwvd-moxpz-fxu4w-p2344-tg7f2-hqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764772535, spawn_at_timestamp_seconds: Some(1765377335), followees: {5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 14: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 8: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 16: Followees { followees: [NeuronId { id: 55674167450360693 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 17: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 15: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 473479970, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764772535, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9444755877855534844 }, subaccount: Subaccount([72, 69, 22, 28, 60, 241, 198, 8, 163, 203, 226, 198, 110, 77, 97, 42, 239, 21, 236, 103, 20, 119, 107, 236, 245, 49, 59, 5, 129, 15, 239, 108]), controller: 342yc-jab3h-xojlm-aczkb-mnfb6-sc5lz-tsyqr-ennts-37r23-6uxlh-yqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765377335 }, hot_keys: [lhndc-wzwfz-te7rt-u66uv-ip2f6-muwvd-moxpz-fxu4w-p2344-tg7f2-hqe], cached_neuron_stake_e8s: 494076348, neuron_fees_e8s: 0, created_timestamp_seconds: 1764772535, spawn_at_timestamp_seconds: None, followees: {8: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 6: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 17: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764772535, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9474114325553871349 }, subaccount: Subaccount([230, 153, 84, 59, 157, 105, 211, 50, 121, 197, 223, 53, 168, 240, 208, 237, 177, 75, 238, 87, 88, 103, 72, 172, 216, 149, 31, 226, 15, 178, 48, 143]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302188 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697388, spawn_at_timestamp_seconds: Some(1765302188), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 44836921841, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697388, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9474114325553871349 }, subaccount: Subaccount([230, 153, 84, 59, 157, 105, 211, 50, 121, 197, 223, 53, 168, 240, 208, 237, 177, 75, 238, 87, 88, 103, 72, 172, 216, 149, 31, 226, 15, 178, 48, 143]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302188 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 46787327941, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697388, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697388, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9514480957882104672 }, subaccount: Subaccount([40, 228, 74, 176, 179, 154, 253, 237, 226, 149, 194, 46, 160, 126, 10, 249, 17, 115, 147, 206, 117, 118, 73, 104, 12, 126, 139, 26, 36, 1, 134, 250]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302467 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697667, spawn_at_timestamp_seconds: Some(1765302467), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1312101634, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697667, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9514480957882104672 }, subaccount: Subaccount([40, 228, 74, 176, 179, 154, 253, 237, 226, 149, 194, 46, 160, 126, 10, 249, 17, 115, 147, 206, 117, 118, 73, 104, 12, 126, 139, 26, 36, 1, 134, 250]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302467 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 1369178055, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697667, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697667, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9557059582041114824 }, subaccount: Subaccount([47, 241, 176, 171, 29, 147, 72, 94, 130, 80, 240, 20, 171, 43, 86, 32, 216, 144, 139, 157, 80, 135, 107, 66, 9, 157, 166, 64, 251, 168, 136, 16]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217053 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612253, spawn_at_timestamp_seconds: Some(1765217053), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696133, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612253, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9557059582041114824 }, subaccount: Subaccount([47, 241, 176, 171, 29, 147, 72, 94, 130, 80, 240, 20, 171, 43, 86, 32, 216, 144, 139, 157, 80, 135, 107, 66, 9, 157, 166, 64, 251, 168, 136, 16]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217053 }, hot_keys: [], cached_neuron_stake_e8s: 667522914, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612253, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612253, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9636903414500174746 }, subaccount: Subaccount([50, 228, 95, 250, 251, 196, 107, 241, 80, 16, 148, 113, 108, 95, 252, 98, 21, 151, 109, 163, 85, 186, 230, 109, 14, 155, 250, 109, 195, 176, 44, 146]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958245 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353445, spawn_at_timestamp_seconds: Some(1764958245), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499857, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353445, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9636903414500174746 }, subaccount: Subaccount([50, 228, 95, 250, 251, 196, 107, 241, 80, 16, 148, 113, 108, 95, 252, 98, 21, 151, 109, 163, 85, 186, 230, 109, 14, 155, 250, 109, 195, 176, 44, 146]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958245 }, hot_keys: [], cached_neuron_stake_e8s: 1113936100, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353445, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353445, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9668930958275616910 }, subaccount: Subaccount([150, 21, 103, 74, 9, 90, 131, 214, 58, 235, 187, 105, 35, 30, 22, 70, 39, 156, 53, 114, 186, 206, 53, 29, 243, 249, 216, 59, 41, 180, 175, 98]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302098 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697298, spawn_at_timestamp_seconds: Some(1765302098), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 162132965592, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697298, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9668930958275616910 }, subaccount: Subaccount([150, 21, 103, 74, 9, 90, 131, 214, 58, 235, 187, 105, 35, 30, 22, 70, 39, 156, 53, 114, 186, 206, 53, 29, 243, 249, 216, 59, 41, 180, 175, 98]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302098 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 169185749595, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697298, spawn_at_timestamp_seconds: None, followees: {2: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697298, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9677412992863071396 }, subaccount: Subaccount([221, 86, 183, 204, 159, 117, 73, 143, 128, 254, 162, 228, 88, 230, 10, 170, 98, 64, 235, 163, 147, 24, 223, 168, 197, 106, 135, 227, 43, 243, 127, 250]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217221 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612421, spawn_at_timestamp_seconds: Some(1765217221), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639694886, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612421, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9677412992863071396 }, subaccount: Subaccount([221, 86, 183, 204, 159, 117, 73, 143, 128, 254, 162, 228, 88, 230, 10, 170, 98, 64, 235, 163, 147, 24, 223, 168, 197, 106, 135, 227, 43, 243, 127, 250]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217221 }, hot_keys: [], cached_neuron_stake_e8s: 667521613, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612421, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612421, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9693730769039087664 }, subaccount: Subaccount([3, 236, 235, 102, 254, 244, 174, 20, 107, 229, 144, 23, 68, 102, 49, 255, 216, 199, 174, 21, 130, 220, 18, 244, 140, 202, 105, 195, 238, 187, 159, 45]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302174 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697374, spawn_at_timestamp_seconds: Some(1765302174), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 9013456205391096227 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1096018745063, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697374, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9693730769039087664 }, subaccount: Subaccount([3, 236, 235, 102, 254, 244, 174, 20, 107, 229, 144, 23, 68, 102, 49, 255, 216, 199, 174, 21, 130, 220, 18, 244, 140, 202, 105, 195, 238, 187, 159, 45]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302174 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 1143695560473, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697374, spawn_at_timestamp_seconds: None, followees: {12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 4: Followees { followees: [NeuronId { id: 9013456205391096227 }, NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697374, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9737411092670322660 }, subaccount: Subaccount([81, 3, 108, 228, 61, 71, 63, 197, 167, 125, 116, 168, 124, 10, 117, 91, 62, 133, 29, 104, 41, 63, 132, 176, 225, 108, 247, 29, 129, 39, 2, 238]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958470 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353670, spawn_at_timestamp_seconds: Some(1764958470), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498539, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353670, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9737411092670322660 }, subaccount: Subaccount([81, 3, 108, 228, 61, 71, 63, 197, 167, 125, 116, 168, 124, 10, 117, 91, 62, 133, 29, 104, 41, 63, 132, 176, 225, 108, 247, 29, 129, 39, 2, 238]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958470 }, hot_keys: [], cached_neuron_stake_e8s: 1113934725, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353670, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353670, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9782510276169963984 }, subaccount: Subaccount([183, 96, 144, 109, 64, 68, 112, 154, 15, 5, 175, 37, 54, 16, 239, 164, 231, 202, 231, 234, 242, 157, 74, 250, 72, 64, 136, 51, 114, 229, 18, 72]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 56248323450, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9782510276169963984 }, subaccount: Subaccount([183, 96, 144, 109, 64, 68, 112, 154, 15, 5, 175, 37, 54, 16, 239, 164, 231, 202, 231, 234, 242, 157, 74, 250, 72, 64, 136, 51, 114, 229, 18, 72]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 58695125520, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9819387950198137792 }, subaccount: Subaccount([246, 6, 252, 42, 172, 217, 113, 88, 205, 3, 148, 95, 45, 40, 53, 55, 89, 15, 236, 223, 250, 138, 51, 101, 135, 192, 172, 139, 168, 188, 68, 41]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216893 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612093, spawn_at_timestamp_seconds: Some(1765216893), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 529155661, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612093, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9819387950198137792 }, subaccount: Subaccount([246, 6, 252, 42, 172, 217, 113, 88, 205, 3, 148, 95, 45, 40, 53, 55, 89, 15, 236, 223, 250, 138, 51, 101, 135, 192, 172, 139, 168, 188, 68, 41]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216893 }, hot_keys: [], cached_neuron_stake_e8s: 552173932, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612093, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612093, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9889456615774572491 }, subaccount: Subaccount([62, 61, 224, 181, 127, 12, 157, 95, 13, 38, 26, 90, 53, 218, 200, 248, 212, 175, 144, 26, 148, 56, 176, 98, 227, 5, 172, 162, 148, 216, 43, 208]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 94283505724, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9889456615774572491 }, subaccount: Subaccount([62, 61, 224, 181, 127, 12, 157, 95, 13, 38, 26, 90, 53, 218, 200, 248, 212, 175, 144, 26, 148, 56, 176, 98, 227, 5, 172, 162, 148, 216, 43, 208]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 98384838222, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 9948055866199465985 }, subaccount: Subaccount([6, 251, 84, 223, 62, 61, 181, 121, 17, 30, 236, 83, 90, 215, 2, 172, 34, 53, 188, 178, 21, 74, 29, 115, 228, 46, 97, 72, 188, 197, 18, 70]), controller: ml2ex-qavms-sufat-4p7lm-dg4p3-wdjih-a6omt-x3ops-yh6il-zseu7-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225202 }, hot_keys: [laaqc-u4idy-lbzfs-dgoqi-uhkyr-esebn-owixt-7j5ow-ycbxk-6aec4-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620402, spawn_at_timestamp_seconds: Some(1765225202), followees: {4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 67613354865, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620402, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 9948055866199465985 }, subaccount: Subaccount([6, 251, 84, 223, 62, 61, 181, 121, 17, 30, 236, 83, 90, 215, 2, 172, 34, 53, 188, 178, 21, 74, 29, 115, 228, 46, 97, 72, 188, 197, 18, 70]), controller: ml2ex-qavms-sufat-4p7lm-dg4p3-wdjih-a6omt-x3ops-yh6il-zseu7-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225202 }, hot_keys: [laaqc-u4idy-lbzfs-dgoqi-uhkyr-esebn-owixt-7j5ow-ycbxk-6aec4-7ae], cached_neuron_stake_e8s: 70554535801, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620402, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620402, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10042070327470949641 }, subaccount: Subaccount([13, 225, 157, 8, 139, 170, 162, 75, 27, 52, 81, 173, 210, 154, 15, 238, 97, 148, 154, 248, 139, 78, 142, 10, 213, 157, 218, 71, 154, 23, 22, 44]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217422 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612622, spawn_at_timestamp_seconds: Some(1765217422), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695642, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612622, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10042070327470949641 }, subaccount: Subaccount([13, 225, 157, 8, 139, 170, 162, 75, 27, 52, 81, 173, 210, 154, 15, 238, 97, 148, 154, 248, 139, 78, 142, 10, 213, 157, 218, 71, 154, 23, 22, 44]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217422 }, hot_keys: [], cached_neuron_stake_e8s: 667522402, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612622, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612622, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10193764269423702480 }, subaccount: Subaccount([136, 140, 63, 80, 60, 110, 156, 11, 165, 187, 53, 20, 243, 76, 55, 79, 92, 34, 168, 194, 232, 229, 93, 50, 73, 106, 193, 151, 187, 222, 202, 181]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765387237 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764782437, spawn_at_timestamp_seconds: Some(1765387237), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113820721, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764782437, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10193764269423702480 }, subaccount: Subaccount([136, 140, 63, 80, 60, 110, 156, 11, 165, 187, 53, 20, 243, 76, 55, 79, 92, 34, 168, 194, 232, 229, 93, 50, 73, 106, 193, 151, 187, 222, 202, 181]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765387237 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 118771922, neuron_fees_e8s: 0, created_timestamp_seconds: 1764782437, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764782437, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10362158936237621814 }, subaccount: Subaccount([243, 63, 120, 230, 122, 55, 106, 20, 83, 73, 31, 128, 76, 47, 144, 207, 139, 121, 164, 49, 192, 98, 250, 67, 222, 197, 252, 131, 70, 200, 154, 100]), controller: q526d-qxigx-4pxn7-piur3-qzn25-xrznn-gasfs-adngu-pfvxv-mo6op-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765015283 }, hot_keys: [4kbqr-6xal3-qxuai-sca26-2tw6x-vgura-b7l47-iwyma-6t6p3-m2ajz-sae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764410483, spawn_at_timestamp_seconds: Some(1765015283), followees: {4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 3164348425, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764410483, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10362158936237621814 }, subaccount: Subaccount([243, 63, 120, 230, 122, 55, 106, 20, 83, 73, 31, 128, 76, 47, 144, 207, 139, 121, 164, 49, 192, 98, 250, 67, 222, 197, 252, 131, 70, 200, 154, 100]), controller: q526d-qxigx-4pxn7-piur3-qzn25-xrznn-gasfs-adngu-pfvxv-mo6op-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765015283 }, hot_keys: [4kbqr-6xal3-qxuai-sca26-2tw6x-vgura-b7l47-iwyma-6t6p3-m2ajz-sae], cached_neuron_stake_e8s: 3301997581, neuron_fees_e8s: 0, created_timestamp_seconds: 1764410483, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764410483, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10384944603699408268 }, subaccount: Subaccount([36, 101, 48, 52, 102, 116, 196, 49, 54, 178, 47, 167, 145, 17, 184, 99, 200, 23, 225, 157, 160, 91, 214, 188, 118, 159, 141, 59, 230, 117, 235, 140]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217594 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612794, spawn_at_timestamp_seconds: Some(1765217594), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639694970, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612794, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10384944603699408268 }, subaccount: Subaccount([36, 101, 48, 52, 102, 116, 196, 49, 54, 178, 47, 167, 145, 17, 184, 99, 200, 23, 225, 157, 160, 91, 214, 188, 118, 159, 141, 59, 230, 117, 235, 140]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217594 }, hot_keys: [], cached_neuron_stake_e8s: 667521701, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612794, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612794, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10399634437774710923 }, subaccount: Subaccount([26, 248, 133, 5, 30, 146, 18, 35, 216, 72, 89, 124, 161, 27, 109, 32, 138, 180, 56, 198, 190, 143, 0, 87, 166, 154, 104, 174, 19, 240, 154, 128]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 56891154277, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10399634437774710923 }, subaccount: Subaccount([26, 248, 133, 5, 30, 146, 18, 35, 216, 72, 89, 124, 161, 27, 109, 32, 138, 180, 56, 198, 190, 143, 0, 87, 166, 154, 104, 174, 19, 240, 154, 128]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 59365919488, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10406142352702664400 }, subaccount: Subaccount([132, 164, 156, 160, 127, 89, 194, 30, 190, 250, 95, 114, 176, 106, 179, 150, 242, 144, 161, 167, 41, 168, 235, 120, 27, 203, 38, 193, 253, 250, 94, 102]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958366 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353566, spawn_at_timestamp_seconds: Some(1764958366), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499930, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353566, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10406142352702664400 }, subaccount: Subaccount([132, 164, 156, 160, 127, 89, 194, 30, 190, 250, 95, 114, 176, 106, 179, 150, 242, 144, 161, 167, 41, 168, 235, 120, 27, 203, 38, 193, 253, 250, 94, 102]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958366 }, hot_keys: [], cached_neuron_stake_e8s: 1113936176, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353566, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353566, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10449232099731264788 }, subaccount: Subaccount([234, 67, 184, 223, 169, 91, 107, 180, 76, 160, 31, 28, 69, 50, 177, 70, 155, 1, 107, 177, 58, 85, 227, 55, 136, 0, 133, 66, 37, 139, 121, 208]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217157 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612357, spawn_at_timestamp_seconds: Some(1765217157), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696012, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612357, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10449232099731264788 }, subaccount: Subaccount([234, 67, 184, 223, 169, 91, 107, 180, 76, 160, 31, 28, 69, 50, 177, 70, 155, 1, 107, 177, 58, 85, 227, 55, 136, 0, 133, 66, 37, 139, 121, 208]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217157 }, hot_keys: [], cached_neuron_stake_e8s: 667522788, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612357, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612357, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10511070543543203342 }, subaccount: Subaccount([135, 158, 93, 105, 129, 129, 219, 130, 158, 89, 63, 150, 49, 44, 56, 106, 192, 100, 236, 165, 53, 201, 77, 80, 232, 53, 138, 88, 90, 252, 165, 126]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765230743 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764625943, spawn_at_timestamp_seconds: Some(1765230743), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113805469, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764625943, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10511070543543203342 }, subaccount: Subaccount([135, 158, 93, 105, 129, 129, 219, 130, 158, 89, 63, 150, 49, 44, 56, 106, 192, 100, 236, 165, 53, 201, 77, 80, 232, 53, 138, 88, 90, 252, 165, 126]), controller: jz7ox-4wfal-extor-py4qk-lsgz7-jfkrs-osqk4-tbnse-ys7pd-ckugf-eae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765230743 }, hot_keys: [mknru-gfl4c-adv43-jr53q-euqch-7mw4j-nel3v-txwth-oluct-ssjjs-7qe], cached_neuron_stake_e8s: 118756006, neuron_fees_e8s: 0, created_timestamp_seconds: 1764625943, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764625943, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10545047301745635441 }, subaccount: Subaccount([143, 74, 8, 67, 211, 242, 208, 61, 152, 103, 63, 227, 164, 176, 245, 194, 75, 238, 53, 58, 49, 60, 196, 15, 136, 70, 60, 242, 75, 0, 183, 87]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 167606995250, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10545047301745635441 }, subaccount: Subaccount([143, 74, 8, 67, 211, 242, 208, 61, 152, 103, 63, 227, 164, 176, 245, 194, 75, 238, 53, 58, 49, 60, 196, 15, 136, 70, 60, 242, 75, 0, 183, 87]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 174897899543, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10546936990926138515 }, subaccount: Subaccount([229, 208, 40, 36, 228, 243, 144, 50, 86, 143, 56, 22, 129, 76, 43, 35, 89, 31, 194, 45, 12, 243, 170, 227, 47, 36, 227, 6, 145, 191, 99, 200]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218209 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613409, spawn_at_timestamp_seconds: Some(1765218209), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696940, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613409, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10546936990926138515 }, subaccount: Subaccount([229, 208, 40, 36, 228, 243, 144, 50, 86, 143, 56, 22, 129, 76, 43, 35, 89, 31, 194, 45, 12, 243, 170, 227, 47, 36, 227, 6, 145, 191, 99, 200]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218209 }, hot_keys: [], cached_neuron_stake_e8s: 667523756, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613409, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613409, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10584089599226509927 }, subaccount: Subaccount([243, 45, 248, 175, 85, 242, 234, 164, 238, 255, 120, 68, 237, 30, 174, 237, 157, 230, 57, 12, 33, 200, 144, 73, 92, 188, 67, 234, 225, 182, 166, 191]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302453 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697653, spawn_at_timestamp_seconds: Some(1765302453), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 49917652058, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697653, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10584089599226509927 }, subaccount: Subaccount([243, 45, 248, 175, 85, 242, 234, 164, 238, 255, 120, 68, 237, 30, 174, 237, 157, 230, 57, 12, 33, 200, 144, 73, 92, 188, 67, 234, 225, 182, 166, 191]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302453 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 52089069922, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697653, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697653, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10710636318319125248 }, subaccount: Subaccount([193, 32, 71, 224, 107, 70, 255, 238, 215, 208, 100, 121, 215, 83, 86, 145, 56, 243, 35, 166, 53, 93, 136, 86, 239, 107, 39, 222, 122, 56, 45, 13]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958898 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354098, spawn_at_timestamp_seconds: Some(1764958898), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1066804591, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354098, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10710636318319125248 }, subaccount: Subaccount([193, 32, 71, 224, 107, 70, 255, 238, 215, 208, 100, 121, 215, 83, 86, 145, 56, 243, 35, 166, 53, 93, 136, 86, 239, 107, 39, 222, 122, 56, 45, 13]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958898 }, hot_keys: [], cached_neuron_stake_e8s: 1113210590, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354098, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354098, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10760540768641907404 }, subaccount: Subaccount([191, 186, 107, 237, 131, 70, 172, 20, 3, 6, 167, 35, 183, 219, 193, 114, 26, 201, 254, 224, 234, 35, 89, 151, 96, 70, 78, 159, 205, 44, 96, 194]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302385 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697585, spawn_at_timestamp_seconds: Some(1765302385), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 12804271021, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697585, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10760540768641907404 }, subaccount: Subaccount([191, 186, 107, 237, 131, 70, 172, 20, 3, 6, 167, 35, 183, 219, 193, 114, 26, 201, 254, 224, 234, 35, 89, 151, 96, 70, 78, 159, 205, 44, 96, 194]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302385 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 13361256810, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697585, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697585, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10785049496376678479 }, subaccount: Subaccount([87, 167, 241, 46, 62, 119, 51, 156, 229, 65, 213, 84, 99, 46, 164, 110, 151, 230, 96, 229, 107, 182, 113, 213, 65, 142, 201, 134, 160, 209, 48, 177]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302373 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697573, spawn_at_timestamp_seconds: Some(1765302373), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 6994143135, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697573, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10785049496376678479 }, subaccount: Subaccount([87, 167, 241, 46, 62, 119, 51, 156, 229, 65, 213, 84, 99, 46, 164, 110, 151, 230, 96, 229, 107, 182, 113, 213, 65, 142, 201, 134, 160, 209, 48, 177]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302373 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 7298388361, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697573, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697573, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10846240966234529086 }, subaccount: Subaccount([222, 55, 229, 218, 199, 47, 63, 124, 110, 251, 35, 71, 43, 35, 196, 117, 145, 142, 160, 187, 48, 242, 170, 241, 104, 232, 25, 206, 221, 195, 169, 185]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 115863699733, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10846240966234529086 }, subaccount: Subaccount([222, 55, 229, 218, 199, 47, 63, 124, 110, 251, 35, 71, 43, 35, 196, 117, 145, 142, 160, 187, 48, 242, 170, 241, 104, 232, 25, 206, 221, 195, 169, 185]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 120903770671, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10894487619194197428 }, subaccount: Subaccount([8, 237, 77, 0, 95, 31, 46, 200, 29, 75, 198, 123, 66, 3, 56, 10, 107, 210, 137, 240, 126, 215, 40, 223, 93, 153, 135, 101, 65, 143, 175, 190]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765063060 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764458260, spawn_at_timestamp_seconds: Some(1765063060), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 178387033, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764458260, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10894487619194197428 }, subaccount: Subaccount([8, 237, 77, 0, 95, 31, 46, 200, 29, 75, 198, 123, 66, 3, 56, 10, 107, 210, 137, 240, 126, 215, 40, 223, 93, 153, 135, 101, 65, 143, 175, 190]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765063060 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 186146868, neuron_fees_e8s: 0, created_timestamp_seconds: 1764458260, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764458260, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10970297401367796227 }, subaccount: Subaccount([207, 182, 164, 96, 147, 230, 30, 41, 165, 223, 3, 84, 171, 171, 84, 137, 72, 218, 109, 111, 22, 122, 17, 9, 119, 169, 75, 222, 47, 196, 221, 111]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958601 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353801, spawn_at_timestamp_seconds: Some(1764958601), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500772, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353801, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10970297401367796227 }, subaccount: Subaccount([207, 182, 164, 96, 147, 230, 30, 41, 165, 223, 3, 84, 171, 171, 84, 137, 72, 218, 109, 111, 22, 122, 17, 9, 119, 169, 75, 222, 47, 196, 221, 111]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958601 }, hot_keys: [], cached_neuron_stake_e8s: 1113937055, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353801, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353801, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 10987268434913150788 }, subaccount: Subaccount([63, 126, 54, 166, 34, 149, 175, 253, 83, 238, 101, 150, 0, 88, 238, 22, 124, 103, 122, 106, 162, 222, 229, 219, 190, 250, 4, 198, 246, 167, 112, 46]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958801 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354001, spawn_at_timestamp_seconds: Some(1764958801), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067502363, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354001, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 10987268434913150788 }, subaccount: Subaccount([63, 126, 54, 166, 34, 149, 175, 253, 83, 238, 101, 150, 0, 88, 238, 22, 124, 103, 122, 106, 162, 222, 229, 219, 190, 250, 4, 198, 246, 167, 112, 46]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958801 }, hot_keys: [], cached_neuron_stake_e8s: 1113938715, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354001, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354001, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11031637677859326447 }, subaccount: Subaccount([74, 142, 75, 6, 179, 14, 117, 242, 7, 224, 5, 78, 184, 1, 73, 169, 8, 98, 235, 210, 243, 173, 182, 3, 231, 101, 53, 178, 175, 216, 73, 61]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217277 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612477, spawn_at_timestamp_seconds: Some(1765217277), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639694958, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612477, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11031637677859326447 }, subaccount: Subaccount([74, 142, 75, 6, 179, 14, 117, 242, 7, 224, 5, 78, 184, 1, 73, 169, 8, 98, 235, 210, 243, 173, 182, 3, 231, 101, 53, 178, 175, 216, 73, 61]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217277 }, hot_keys: [], cached_neuron_stake_e8s: 667521688, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612477, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612477, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11038830465061615611 }, subaccount: Subaccount([132, 88, 13, 60, 16, 99, 202, 230, 192, 80, 34, 200, 87, 39, 162, 63, 98, 250, 206, 113, 4, 93, 193, 166, 101, 174, 193, 173, 141, 149, 181, 20]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217250 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612450, spawn_at_timestamp_seconds: Some(1765217250), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695159, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612450, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11038830465061615611 }, subaccount: Subaccount([132, 88, 13, 60, 16, 99, 202, 230, 192, 80, 34, 200, 87, 39, 162, 63, 98, 250, 206, 113, 4, 93, 193, 166, 101, 174, 193, 173, 141, 149, 181, 20]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217250 }, hot_keys: [], cached_neuron_stake_e8s: 667521898, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612450, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612450, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11070240125690807756 }, subaccount: Subaccount([170, 252, 55, 236, 101, 154, 54, 247, 248, 151, 161, 65, 213, 73, 123, 197, 176, 252, 30, 188, 193, 226, 105, 185, 145, 243, 144, 112, 167, 225, 88, 167]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217094 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612294, spawn_at_timestamp_seconds: Some(1765217094), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 630160609, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612294, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11070240125690807756 }, subaccount: Subaccount([170, 252, 55, 236, 101, 154, 54, 247, 248, 151, 161, 65, 213, 73, 123, 197, 176, 252, 30, 188, 193, 226, 105, 185, 145, 243, 144, 112, 167, 225, 88, 167]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217094 }, hot_keys: [], cached_neuron_stake_e8s: 657572595, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612294, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612294, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11138813277324606423 }, subaccount: Subaccount([188, 221, 60, 50, 139, 114, 45, 218, 155, 203, 194, 225, 210, 227, 38, 183, 49, 198, 72, 42, 140, 39, 152, 242, 149, 210, 94, 107, 129, 173, 52, 205]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958644 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353844, spawn_at_timestamp_seconds: Some(1764958644), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500103, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353844, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11138813277324606423 }, subaccount: Subaccount([188, 221, 60, 50, 139, 114, 45, 218, 155, 203, 194, 225, 210, 227, 38, 183, 49, 198, 72, 42, 140, 39, 152, 242, 149, 210, 94, 107, 129, 173, 52, 205]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958644 }, hot_keys: [], cached_neuron_stake_e8s: 1113936357, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353844, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353844, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11209265687510536219 }, subaccount: Subaccount([200, 103, 83, 199, 157, 165, 25, 191, 72, 141, 232, 221, 170, 34, 22, 244, 192, 142, 173, 120, 155, 47, 36, 13, 39, 72, 185, 104, 64, 114, 97, 101]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 56231998394, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11209265687510536219 }, subaccount: Subaccount([200, 103, 83, 199, 157, 165, 25, 191, 72, 141, 232, 221, 170, 34, 22, 244, 192, 142, 173, 120, 155, 47, 36, 13, 39, 72, 185, 104, 64, 114, 97, 101]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 58678090324, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11255146650276905739 }, subaccount: Subaccount([178, 79, 113, 21, 61, 195, 250, 215, 186, 99, 108, 157, 156, 140, 204, 5, 215, 73, 46, 48, 203, 193, 178, 48, 163, 64, 41, 126, 242, 136, 230, 65]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957855 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353055, spawn_at_timestamp_seconds: Some(1764957855), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500676, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353055, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11255146650276905739 }, subaccount: Subaccount([178, 79, 113, 21, 61, 195, 250, 215, 186, 99, 108, 157, 156, 140, 204, 5, 215, 73, 46, 48, 203, 193, 178, 48, 163, 64, 41, 126, 242, 136, 230, 65]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957855 }, hot_keys: [], cached_neuron_stake_e8s: 1113936955, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353055, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353055, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11370605022182745920 }, subaccount: Subaccount([80, 182, 57, 48, 58, 7, 26, 180, 116, 176, 164, 15, 241, 97, 231, 136, 50, 162, 151, 88, 118, 101, 27, 234, 16, 53, 218, 15, 214, 50, 192, 32]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 14: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 317321719621, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11370605022182745920 }, subaccount: Subaccount([80, 182, 57, 48, 58, 7, 26, 180, 116, 176, 164, 15, 241, 97, 231, 136, 50, 162, 151, 88, 118, 101, 27, 234, 16, 53, 218, 15, 214, 50, 192, 32]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 331125214424, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11400953897925318870 }, subaccount: Subaccount([222, 246, 190, 140, 201, 161, 191, 164, 138, 65, 34, 80, 88, 182, 204, 92, 103, 97, 243, 249, 4, 175, 2, 138, 0, 93, 60, 143, 185, 127, 144, 198]), controller: de2mf-aoczz-mnisy-yv2np-uf7fx-wjz3m-ryk5e-sj2x6-d3r67-lji4k-wae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765029759 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764424959, spawn_at_timestamp_seconds: Some(1765029759), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 426787730085, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764424959, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11400953897925318870 }, subaccount: Subaccount([222, 246, 190, 140, 201, 161, 191, 164, 138, 65, 34, 80, 88, 182, 204, 92, 103, 97, 243, 249, 4, 175, 2, 138, 0, 93, 60, 143, 185, 127, 144, 198]), controller: de2mf-aoczz-mnisy-yv2np-uf7fx-wjz3m-ryk5e-sj2x6-d3r67-lji4k-wae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765029759 }, hot_keys: [], cached_neuron_stake_e8s: 445352996343, neuron_fees_e8s: 0, created_timestamp_seconds: 1764424959, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764424959, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:20.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11467081083804960236 }, subaccount: Subaccount([3, 138, 122, 244, 214, 187, 20, 154, 43, 162, 46, 229, 124, 145, 166, 211, 140, 209, 55, 21, 14, 35, 7, 59, 68, 41, 201, 102, 17, 231, 131, 95]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 147934715377, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:21.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11467081083804960236 }, subaccount: Subaccount([3, 138, 122, 244, 214, 187, 20, 154, 43, 162, 46, 229, 124, 145, 166, 211, 140, 209, 55, 21, 14, 35, 7, 59, 68, 41, 201, 102, 17, 231, 131, 95]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 154369875495, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:21.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11475352262869766996 }, subaccount: Subaccount([196, 248, 242, 110, 60, 236, 133, 141, 163, 196, 159, 24, 57, 67, 230, 106, 34, 11, 180, 124, 106, 150, 246, 4, 44, 59, 20, 34, 198, 230, 121, 213]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046319 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441519, spawn_at_timestamp_seconds: Some(1765046319), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1487809584, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441519, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:21.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11475352262869766996 }, subaccount: Subaccount([196, 248, 242, 110, 60, 236, 133, 141, 163, 196, 159, 24, 57, 67, 230, 106, 34, 11, 180, 124, 106, 150, 246, 4, 44, 59, 20, 34, 198, 230, 121, 213]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046319 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 1552529300, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441519, spawn_at_timestamp_seconds: None, followees: {16: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441519, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:21.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11505946568682704249 }, subaccount: Subaccount([158, 63, 253, 210, 233, 163, 226, 232, 27, 226, 111, 96, 139, 121, 52, 225, 253, 198, 139, 8, 194, 116, 48, 45, 224, 162, 114, 142, 178, 74, 245, 193]), controller: i6uga-zkiuv-hzz73-atza6-7abum-vyqtp-75sni-45pe3-bpdps-b3p75-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764964208 }, hot_keys: [x5o4h-ga5xg-hzss3-2m553-baq5j-atj4r-fddwb-b2437-crsik-lcimf-eae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764359408, spawn_at_timestamp_seconds: Some(1764964208), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 474873022, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764359408, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:26.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11505946568682704249 }, subaccount: Subaccount([158, 63, 253, 210, 233, 163, 226, 232, 27, 226, 111, 96, 139, 121, 52, 225, 253, 198, 139, 8, 194, 116, 48, 45, 224, 162, 114, 142, 178, 74, 245, 193]), controller: i6uga-zkiuv-hzz73-atza6-7abum-vyqtp-75sni-45pe3-bpdps-b3p75-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764964208 }, hot_keys: [x5o4h-ga5xg-hzss3-2m553-baq5j-atj4r-fddwb-b2437-crsik-lcimf-eae], cached_neuron_stake_e8s: 495529998, neuron_fees_e8s: 0, created_timestamp_seconds: 1764359408, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764359408, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:26.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11546955140851473754 }, subaccount: Subaccount([251, 78, 190, 64, 123, 172, 188, 29, 180, 37, 228, 124, 129, 161, 235, 213, 106, 1, 106, 28, 23, 113, 73, 50, 171, 129, 214, 130, 49, 58, 11, 118]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 74506628627, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11546955140851473754 }, subaccount: Subaccount([251, 78, 190, 64, 123, 172, 188, 29, 180, 37, 228, 124, 129, 161, 235, 213, 106, 1, 106, 28, 23, 113, 73, 50, 171, 129, 214, 130, 49, 58, 11, 118]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 77747666972, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11624918490347025118 }, subaccount: Subaccount([211, 181, 165, 3, 122, 159, 85, 80, 216, 232, 193, 240, 18, 250, 166, 255, 76, 136, 146, 203, 46, 131, 74, 49, 26, 60, 197, 176, 192, 36, 40, 33]), controller: lqmzt-5nrui-hcqn6-vz5vj-wnps5-asfzj-h6kbm-zgvvq-ozmus-vm5m6-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764933159 }, hot_keys: [yg4qk-lvsxt-jyetu-qtmde-oqijl-hwlis-vrwpf-irfzm-d6scp-xkcrc-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764328359, spawn_at_timestamp_seconds: Some(1764933159), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 16122208542864232355 }, NeuronId { id: 33138099823745946 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 21387850902, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764328359, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11624918490347025118 }, subaccount: Subaccount([211, 181, 165, 3, 122, 159, 85, 80, 216, 232, 193, 240, 18, 250, 166, 255, 76, 136, 146, 203, 46, 131, 74, 49, 26, 60, 197, 176, 192, 36, 40, 33]), controller: lqmzt-5nrui-hcqn6-vz5vj-wnps5-asfzj-h6kbm-zgvvq-ozmus-vm5m6-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764933159 }, hot_keys: [yg4qk-lvsxt-jyetu-qtmde-oqijl-hwlis-vrwpf-irfzm-d6scp-xkcrc-lqe], cached_neuron_stake_e8s: 22318222416, neuron_fees_e8s: 0, created_timestamp_seconds: 1764328359, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 16122208542864232355 }, NeuronId { id: 33138099823745946 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764328359, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11632815624439290916 }, subaccount: Subaccount([87, 95, 197, 207, 35, 92, 77, 170, 190, 156, 243, 14, 103, 182, 68, 19, 229, 235, 224, 255, 244, 131, 248, 216, 59, 99, 245, 180, 70, 29, 83, 59]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216839 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612039, spawn_at_timestamp_seconds: Some(1765216839), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 529155661, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612039, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Updated daily maturity modulation rate to (in basis points): 435, at: 1767472587. Last updated: Some(1764810118) +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11632815624439290916 }, subaccount: Subaccount([87, 95, 197, 207, 35, 92, 77, 170, 190, 156, 243, 14, 103, 182, 68, 19, 229, 235, 224, 255, 244, 131, 248, 216, 59, 99, 245, 180, 70, 29, 83, 59]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216839 }, hot_keys: [], cached_neuron_stake_e8s: 552173932, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612039, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612039, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11649619341181700600 }, subaccount: Subaccount([204, 179, 229, 125, 57, 33, 197, 132, 80, 183, 70, 40, 208, 166, 95, 190, 99, 70, 48, 173, 61, 204, 161, 16, 220, 88, 169, 166, 89, 117, 113, 119]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218074 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613274, spawn_at_timestamp_seconds: Some(1765218074), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639278116, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613274, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11649619341181700600 }, subaccount: Subaccount([204, 179, 229, 125, 57, 33, 197, 132, 80, 183, 70, 40, 208, 166, 95, 190, 99, 70, 48, 173, 61, 204, 161, 16, 220, 88, 169, 166, 89, 117, 113, 119]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218074 }, hot_keys: [], cached_neuron_stake_e8s: 667086714, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613274, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613274, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11848711705740354855 }, subaccount: Subaccount([207, 181, 12, 255, 72, 217, 180, 28, 167, 111, 101, 38, 151, 137, 117, 160, 27, 136, 79, 184, 114, 41, 10, 37, 60, 237, 183, 253, 221, 169, 100, 1]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 56243471188, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11848711705740354855 }, subaccount: Subaccount([207, 181, 12, 255, 72, 217, 180, 28, 167, 111, 101, 38, 151, 137, 117, 160, 27, 136, 79, 184, 114, 41, 10, 37, 60, 237, 183, 253, 221, 169, 100, 1]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 58690062184, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11904567633903983481 }, subaccount: Subaccount([178, 222, 163, 253, 222, 243, 148, 160, 127, 236, 175, 122, 51, 110, 2, 21, 52, 148, 168, 12, 65, 217, 254, 159, 142, 18, 35, 220, 144, 92, 169, 6]), controller: 4hpfp-ebm6v-v365q-ispli-5w77m-k3m3x-vkefc-eemgt-yo4xm-mfaye-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765244773 }, hot_keys: [vi53b-wnxbz-fw37p-7x55b-gdaeh-rderw-wdgv4-p3vlj-bcdw2-fgeqi-tae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764639973, spawn_at_timestamp_seconds: Some(1765244773), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 10843833286193887500 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 2776371642396604393 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 16335946240875077438 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 13538714184009896865 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 253334442, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764639973, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11904567633903983481 }, subaccount: Subaccount([178, 222, 163, 253, 222, 243, 148, 160, 127, 236, 175, 122, 51, 110, 2, 21, 52, 148, 168, 12, 65, 217, 254, 159, 142, 18, 35, 220, 144, 92, 169, 6]), controller: 4hpfp-ebm6v-v365q-ispli-5w77m-k3m3x-vkefc-eemgt-yo4xm-mfaye-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765244773 }, hot_keys: [vi53b-wnxbz-fw37p-7x55b-gdaeh-rderw-wdgv4-p3vlj-bcdw2-fgeqi-tae], cached_neuron_stake_e8s: 264354490, neuron_fees_e8s: 0, created_timestamp_seconds: 1764639973, spawn_at_timestamp_seconds: None, followees: {7: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 2776371642396604393 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 10843833286193887500 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 13538714184009896865 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 16335946240875077438 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764639973, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 11998053510468618892 }, subaccount: Subaccount([173, 118, 57, 143, 85, 120, 176, 168, 166, 192, 238, 65, 22, 194, 41, 159, 215, 202, 194, 213, 134, 86, 201, 184, 3, 202, 230, 60, 165, 115, 141, 123]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765016157 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764411357, spawn_at_timestamp_seconds: Some(1765016157), followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 113132671895, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764411357, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 11998053510468618892 }, subaccount: Subaccount([173, 118, 57, 143, 85, 120, 176, 168, 166, 192, 238, 65, 22, 194, 41, 159, 215, 202, 194, 213, 134, 86, 201, 184, 3, 202, 230, 60, 165, 115, 141, 123]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765016157 }, hot_keys: [], cached_neuron_stake_e8s: 118053943122, neuron_fees_e8s: 0, created_timestamp_seconds: 1764411357, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764411357, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12090327227656954451 }, subaccount: Subaccount([12, 134, 97, 167, 91, 187, 126, 222, 98, 125, 252, 112, 34, 106, 80, 193, 53, 52, 41, 188, 11, 15, 104, 221, 23, 100, 72, 28, 157, 60, 219, 36]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218102 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613302, spawn_at_timestamp_seconds: Some(1765218102), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696788, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613302, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12090327227656954451 }, subaccount: Subaccount([12, 134, 97, 167, 91, 187, 126, 222, 98, 125, 252, 112, 34, 106, 80, 193, 53, 52, 41, 188, 11, 15, 104, 221, 23, 100, 72, 28, 157, 60, 219, 36]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218102 }, hot_keys: [], cached_neuron_stake_e8s: 667523598, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613302, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613302, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12319336364679605893 }, subaccount: Subaccount([145, 86, 244, 232, 25, 16, 198, 48, 78, 173, 253, 79, 159, 251, 183, 108, 65, 153, 122, 162, 143, 178, 249, 254, 178, 23, 208, 21, 234, 239, 78, 109]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216815 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612015, spawn_at_timestamp_seconds: Some(1765216815), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 528872651, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612015, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12319336364679605893 }, subaccount: Subaccount([145, 86, 244, 232, 25, 16, 198, 48, 78, 173, 253, 79, 159, 251, 183, 108, 65, 153, 122, 162, 143, 178, 249, 254, 178, 23, 208, 21, 234, 239, 78, 109]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216815 }, hot_keys: [], cached_neuron_stake_e8s: 551878611, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612015, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612015, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12340970685899847876 }, subaccount: Subaccount([123, 201, 154, 47, 218, 35, 2, 220, 221, 78, 71, 3, 9, 157, 211, 93, 152, 80, 5, 81, 93, 172, 219, 177, 110, 236, 26, 44, 152, 214, 233, 127]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046336 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441536, spawn_at_timestamp_seconds: Some(1765046336), followees: {9: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 428687636340283207 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1328988002, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441536, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12340970685899847876 }, subaccount: Subaccount([123, 201, 154, 47, 218, 35, 2, 220, 221, 78, 71, 3, 9, 157, 211, 93, 152, 80, 5, 81, 93, 172, 219, 177, 110, 236, 26, 44, 152, 214, 233, 127]), controller: jpqei-ilzkz-bfeig-qo74v-jtmg6-brhpe-ekgqs-hsq5p-twgul-hm5tj-cae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765046336 }, hot_keys: [kxzoh-ynfuy-rjyxp-fp5ue-vic5y-jolis-jdnck-vby7q-nequo-i3grn-fqe], cached_neuron_stake_e8s: 1386798980, neuron_fees_e8s: 0, created_timestamp_seconds: 1764441536, spawn_at_timestamp_seconds: None, followees: {6: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 428687636340283207 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764441536, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12347461850961725125 }, subaccount: Subaccount([159, 133, 140, 119, 209, 109, 148, 120, 252, 112, 196, 226, 217, 50, 17, 134, 50, 111, 192, 222, 169, 140, 177, 201, 236, 44, 219, 68, 193, 209, 242, 144]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958931 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354131, spawn_at_timestamp_seconds: Some(1764958931), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1066804473, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354131, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12347461850961725125 }, subaccount: Subaccount([159, 133, 140, 119, 209, 109, 148, 120, 252, 112, 196, 226, 217, 50, 17, 134, 50, 111, 192, 222, 169, 140, 177, 201, 236, 44, 219, 68, 193, 209, 242, 144]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958931 }, hot_keys: [], cached_neuron_stake_e8s: 1113210467, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354131, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354131, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12542820551756997774 }, subaccount: Subaccount([66, 51, 138, 133, 26, 228, 210, 116, 48, 214, 13, 55, 233, 42, 12, 224, 20, 175, 213, 44, 185, 187, 0, 134, 250, 5, 117, 35, 46, 135, 212, 212]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218230 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613430, spawn_at_timestamp_seconds: Some(1765218230), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696068, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613430, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12542820551756997774 }, subaccount: Subaccount([66, 51, 138, 133, 26, 228, 210, 116, 48, 214, 13, 55, 233, 42, 12, 224, 20, 175, 213, 44, 185, 187, 0, 134, 250, 5, 117, 35, 46, 135, 212, 212]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218230 }, hot_keys: [], cached_neuron_stake_e8s: 667522846, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613430, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613430, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12551192470104214985 }, subaccount: Subaccount([241, 100, 84, 36, 171, 230, 93, 116, 224, 61, 130, 180, 194, 240, 183, 70, 182, 170, 178, 140, 229, 230, 183, 247, 1, 120, 226, 63, 76, 26, 201, 218]), controller: xamhr-2zj4f-h4n2f-hawzt-e5rcj-bsdih-4nowb-mxodr-b7dxz-56aar-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283456 }, hot_keys: [5w4pr-joxnq-pw5t6-fcvad-lzjh2-jgagr-f2auu-duci4-jkalw-s243w-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678656, spawn_at_timestamp_seconds: Some(1765283456), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2414187078, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678656, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12551192470104214985 }, subaccount: Subaccount([241, 100, 84, 36, 171, 230, 93, 116, 224, 61, 130, 180, 194, 240, 183, 70, 182, 170, 178, 140, 229, 230, 183, 247, 1, 120, 226, 63, 76, 26, 201, 218]), controller: xamhr-2zj4f-h4n2f-hawzt-e5rcj-bsdih-4nowb-mxodr-b7dxz-56aar-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283456 }, hot_keys: [5w4pr-joxnq-pw5t6-fcvad-lzjh2-jgagr-f2auu-duci4-jkalw-s243w-oae], cached_neuron_stake_e8s: 2519204215, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678656, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678656, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12826512254686223859 }, subaccount: Subaccount([233, 111, 146, 57, 174, 70, 153, 204, 146, 168, 169, 142, 169, 165, 152, 159, 73, 177, 163, 141, 113, 63, 198, 165, 241, 52, 140, 112, 182, 48, 60, 37]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764962164 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764357364, spawn_at_timestamp_seconds: Some(1764962164), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 535607726, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764357364, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12826512254686223859 }, subaccount: Subaccount([233, 111, 146, 57, 174, 70, 153, 204, 146, 168, 169, 142, 169, 165, 152, 159, 73, 177, 163, 141, 113, 63, 198, 165, 241, 52, 140, 112, 182, 48, 60, 37]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764962164 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 558906662, neuron_fees_e8s: 0, created_timestamp_seconds: 1764357364, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764357364, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12913015691526839398 }, subaccount: Subaccount([87, 109, 65, 235, 239, 143, 126, 90, 218, 9, 68, 201, 214, 255, 79, 70, 79, 127, 90, 245, 221, 242, 72, 226, 164, 159, 244, 99, 67, 160, 17, 51]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217654 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612854, spawn_at_timestamp_seconds: Some(1765217654), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696191, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612854, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12913015691526839398 }, subaccount: Subaccount([87, 109, 65, 235, 239, 143, 126, 90, 218, 9, 68, 201, 214, 255, 79, 70, 79, 127, 90, 245, 221, 242, 72, 226, 164, 159, 244, 99, 67, 160, 17, 51]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217654 }, hot_keys: [], cached_neuron_stake_e8s: 667522975, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612854, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612854, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12924891314547842437 }, subaccount: Subaccount([33, 22, 40, 89, 54, 124, 233, 16, 51, 118, 192, 18, 198, 193, 245, 161, 190, 161, 22, 248, 203, 171, 6, 174, 235, 246, 203, 58, 84, 181, 99, 181]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959194 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354394, spawn_at_timestamp_seconds: Some(1764959194), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500519, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354394, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12924891314547842437 }, subaccount: Subaccount([33, 22, 40, 89, 54, 124, 233, 16, 51, 118, 192, 18, 198, 193, 245, 161, 190, 161, 22, 248, 203, 171, 6, 174, 235, 246, 203, 58, 84, 181, 99, 181]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959194 }, hot_keys: [], cached_neuron_stake_e8s: 1113936791, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354394, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354394, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12942674706991589513 }, subaccount: Subaccount([41, 190, 221, 90, 52, 114, 67, 97, 205, 190, 0, 132, 86, 94, 30, 179, 98, 126, 211, 216, 97, 109, 98, 110, 233, 110, 59, 36, 163, 240, 114, 129]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302410 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697610, spawn_at_timestamp_seconds: Some(1765302410), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 8212363368, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697610, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12942674706991589513 }, subaccount: Subaccount([41, 190, 221, 90, 52, 114, 67, 97, 205, 190, 0, 132, 86, 94, 30, 179, 98, 126, 211, 216, 97, 109, 98, 110, 233, 110, 59, 36, 163, 240, 114, 129]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302410 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 8569601174, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697610, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697610, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12950103754285419063 }, subaccount: Subaccount([7, 87, 196, 115, 99, 246, 226, 202, 139, 142, 8, 241, 158, 70, 98, 245, 189, 180, 153, 118, 181, 229, 142, 248, 234, 41, 49, 178, 251, 212, 12, 224]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765365616 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764760816, spawn_at_timestamp_seconds: Some(1765365616), followees: {2: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 10: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 572784656, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764760816, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12950103754285419063 }, subaccount: Subaccount([7, 87, 196, 115, 99, 246, 226, 202, 139, 142, 8, 241, 158, 70, 98, 245, 189, 180, 153, 118, 181, 229, 142, 248, 234, 41, 49, 178, 251, 212, 12, 224]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765365616 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 597700788, neuron_fees_e8s: 0, created_timestamp_seconds: 1764760816, spawn_at_timestamp_seconds: None, followees: {2: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 10: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764760816, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 12998981439779940477 }, subaccount: Subaccount([95, 39, 100, 179, 223, 238, 97, 203, 92, 156, 178, 73, 171, 167, 171, 181, 51, 82, 83, 224, 151, 74, 25, 32, 18, 8, 147, 220, 25, 243, 103, 16]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966284 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361484, spawn_at_timestamp_seconds: Some(1764966284), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 7857299157, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361484, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 12998981439779940477 }, subaccount: Subaccount([95, 39, 100, 179, 223, 238, 97, 203, 92, 156, 178, 73, 171, 167, 171, 181, 51, 82, 83, 224, 151, 74, 25, 32, 18, 8, 147, 220, 25, 243, 103, 16]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966284 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 8199091670, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361484, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361484, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13049763986280458969 }, subaccount: Subaccount([86, 190, 8, 140, 48, 82, 24, 242, 23, 26, 65, 225, 164, 113, 235, 192, 6, 16, 215, 6, 148, 110, 115, 248, 12, 226, 224, 111, 214, 53, 84, 167]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765361799 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764756999, spawn_at_timestamp_seconds: Some(1765361799), followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 37684951576, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764756999, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13049763986280458969 }, subaccount: Subaccount([86, 190, 8, 140, 48, 82, 24, 242, 23, 26, 65, 225, 164, 113, 235, 192, 6, 16, 215, 6, 148, 110, 115, 248, 12, 226, 224, 111, 214, 53, 84, 167]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765361799 }, hot_keys: [], cached_neuron_stake_e8s: 39324246969, neuron_fees_e8s: 0, created_timestamp_seconds: 1764756999, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764756999, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13320264388708418897 }, subaccount: Subaccount([108, 114, 29, 208, 235, 67, 8, 197, 66, 174, 54, 112, 169, 131, 164, 227, 121, 181, 141, 61, 155, 123, 29, 37, 70, 230, 30, 243, 217, 120, 72, 247]), controller: e4n5t-54phs-pq6qn-3zadr-l5eym-chsmw-4stsp-imaeu-4y66a-g62d5-5qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765006256 }, hot_keys: [w7gfl-loxpo-gpqiy-loytq-z6izf-gwm6m-pt3g7-52h4l-copmg-rndwz-uqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764401456, spawn_at_timestamp_seconds: Some(1765006256), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2662212248, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764401456, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13320264388708418897 }, subaccount: Subaccount([108, 114, 29, 208, 235, 67, 8, 197, 66, 174, 54, 112, 169, 131, 164, 227, 121, 181, 141, 61, 155, 123, 29, 37, 70, 230, 30, 243, 217, 120, 72, 247]), controller: e4n5t-54phs-pq6qn-3zadr-l5eym-chsmw-4stsp-imaeu-4y66a-g62d5-5qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765006256 }, hot_keys: [w7gfl-loxpo-gpqiy-loytq-z6izf-gwm6m-pt3g7-52h4l-copmg-rndwz-uqe], cached_neuron_stake_e8s: 2778018480, neuron_fees_e8s: 0, created_timestamp_seconds: 1764401456, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764401456, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13324547513610869734 }, subaccount: Subaccount([43, 99, 251, 111, 122, 42, 233, 59, 97, 117, 214, 182, 7, 164, 175, 229, 128, 158, 179, 246, 191, 79, 13, 45, 179, 207, 176, 77, 122, 171, 151, 69]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765224905 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620105, spawn_at_timestamp_seconds: Some(1765224905), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33439145575, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620105, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13324547513610869734 }, subaccount: Subaccount([43, 99, 251, 111, 122, 42, 233, 59, 97, 117, 214, 182, 7, 164, 175, 229, 128, 158, 179, 246, 191, 79, 13, 45, 179, 207, 176, 77, 122, 171, 151, 69]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765224905 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 34893748407, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620105, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620105, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13328539000877171775 }, subaccount: Subaccount([243, 118, 72, 9, 106, 22, 189, 212, 250, 252, 130, 238, 69, 255, 1, 44, 3, 246, 58, 204, 248, 11, 172, 222, 137, 100, 149, 215, 42, 218, 95, 131]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957983 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353183, spawn_at_timestamp_seconds: Some(1764957983), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498596, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353183, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13328539000877171775 }, subaccount: Subaccount([243, 118, 72, 9, 106, 22, 189, 212, 250, 252, 130, 238, 69, 255, 1, 44, 3, 246, 58, 204, 248, 11, 172, 222, 137, 100, 149, 215, 42, 218, 95, 131]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957983 }, hot_keys: [], cached_neuron_stake_e8s: 1113934784, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353183, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353183, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13375001076535656940 }, subaccount: Subaccount([17, 43, 232, 255, 82, 244, 8, 41, 44, 16, 101, 5, 133, 232, 41, 160, 104, 143, 152, 79, 57, 4, 93, 141, 195, 254, 109, 4, 172, 41, 232, 10]), controller: sivxh-yccbr-swcty-mrfhj-brta7-b7imy-b3m4z-6asaj-lc6yt-nmz6s-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765159653 }, hot_keys: [gevb2-a3oxj-224iv-2hyjz-npmeb-3buqt-xmsfu-erg5x-3qfl7-6ow6o-nae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764554853, spawn_at_timestamp_seconds: Some(1765159653), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 126843491685, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764554853, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13375001076535656940 }, subaccount: Subaccount([17, 43, 232, 255, 82, 244, 8, 41, 44, 16, 101, 5, 133, 232, 41, 160, 104, 143, 152, 79, 57, 4, 93, 141, 195, 254, 109, 4, 172, 41, 232, 10]), controller: sivxh-yccbr-swcty-mrfhj-brta7-b7imy-b3m4z-6asaj-lc6yt-nmz6s-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765159653 }, hot_keys: [gevb2-a3oxj-224iv-2hyjz-npmeb-3buqt-xmsfu-erg5x-3qfl7-6ow6o-nae], cached_neuron_stake_e8s: 132361183573, neuron_fees_e8s: 0, created_timestamp_seconds: 1764554853, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 14231996777861930328 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764554853, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13380546525081373768 }, subaccount: Subaccount([204, 40, 197, 66, 77, 27, 83, 233, 175, 169, 59, 38, 68, 49, 93, 88, 152, 28, 116, 93, 121, 223, 176, 18, 216, 95, 123, 199, 73, 170, 209, 69]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 135323691634, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13380546525081373768 }, subaccount: Subaccount([204, 40, 197, 66, 77, 27, 83, 233, 175, 169, 59, 38, 68, 49, 93, 88, 152, 28, 116, 93, 121, 223, 176, 18, 216, 95, 123, 199, 73, 170, 209, 69]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 141210272220, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13463088043973758000 }, subaccount: Subaccount([47, 142, 182, 179, 236, 252, 234, 190, 219, 26, 36, 171, 4, 132, 82, 38, 111, 130, 28, 11, 39, 11, 137, 17, 25, 83, 129, 26, 95, 10, 111, 69]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302117 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697317, spawn_at_timestamp_seconds: Some(1765302117), followees: {12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 131903127240, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697317, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13463088043973758000 }, subaccount: Subaccount([47, 142, 182, 179, 236, 252, 234, 190, 219, 26, 36, 171, 4, 132, 82, 38, 111, 130, 28, 11, 39, 11, 137, 17, 25, 83, 129, 26, 95, 10, 111, 69]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302117 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 137640913274, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697317, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697317, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13507204370723319258 }, subaccount: Subaccount([20, 127, 72, 70, 138, 216, 36, 126, 138, 67, 149, 239, 32, 196, 62, 118, 182, 142, 87, 9, 106, 129, 76, 180, 87, 23, 0, 227, 159, 192, 163, 106]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216925 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612125, spawn_at_timestamp_seconds: Some(1765216925), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 529155661, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612125, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13507204370723319258 }, subaccount: Subaccount([20, 127, 72, 70, 138, 216, 36, 126, 138, 67, 149, 239, 32, 196, 62, 118, 182, 142, 87, 9, 106, 129, 76, 180, 87, 23, 0, 227, 159, 192, 163, 106]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765216925 }, hot_keys: [], cached_neuron_stake_e8s: 552173932, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612125, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612125, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13539918780183469157 }, subaccount: Subaccount([110, 22, 236, 248, 212, 95, 190, 35, 160, 101, 237, 51, 122, 249, 200, 4, 79, 78, 213, 149, 26, 1, 150, 119, 16, 58, 212, 242, 235, 105, 2, 17]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302265 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697465, spawn_at_timestamp_seconds: Some(1765302265), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 58045948017, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697465, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13539918780183469157 }, subaccount: Subaccount([110, 22, 236, 248, 212, 95, 190, 35, 160, 101, 237, 51, 122, 249, 200, 4, 79, 78, 213, 149, 26, 1, 150, 119, 16, 58, 212, 242, 235, 105, 2, 17]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302265 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 60570946755, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697465, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697465, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13555105116701451115 }, subaccount: Subaccount([90, 79, 140, 49, 96, 134, 137, 113, 238, 204, 153, 4, 64, 246, 46, 89, 8, 152, 26, 133, 19, 143, 107, 54, 46, 238, 110, 154, 41, 10, 95, 4]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252814 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648014, spawn_at_timestamp_seconds: Some(1765252814), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 170276336, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648014, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13555105116701451115 }, subaccount: Subaccount([90, 79, 140, 49, 96, 134, 137, 113, 238, 204, 153, 4, 64, 246, 46, 89, 8, 152, 26, 133, 19, 143, 107, 54, 46, 238, 110, 154, 41, 10, 95, 4]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252814 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 177683356, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648014, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648014, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13586191230825962555 }, subaccount: Subaccount([34, 103, 90, 87, 228, 218, 60, 71, 20, 157, 63, 218, 115, 143, 206, 29, 131, 41, 157, 168, 163, 93, 216, 201, 195, 150, 216, 76, 155, 208, 38, 144]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 56677627186, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13586191230825962555 }, subaccount: Subaccount([34, 103, 90, 87, 228, 218, 60, 71, 20, 157, 63, 218, 115, 143, 206, 29, 131, 41, 157, 168, 163, 93, 216, 201, 195, 150, 216, 76, 155, 208, 38, 144]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 59143103968, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13644780767035123298 }, subaccount: Subaccount([112, 75, 59, 66, 69, 177, 149, 4, 205, 101, 146, 193, 22, 26, 94, 183, 215, 235, 47, 137, 184, 73, 205, 218, 138, 122, 11, 172, 55, 79, 154, 53]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217564 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612764, spawn_at_timestamp_seconds: Some(1765217564), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639694853, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612764, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13644780767035123298 }, subaccount: Subaccount([112, 75, 59, 66, 69, 177, 149, 4, 205, 101, 146, 193, 22, 26, 94, 183, 215, 235, 47, 137, 184, 73, 205, 218, 138, 122, 11, 172, 55, 79, 154, 53]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217564 }, hot_keys: [], cached_neuron_stake_e8s: 667521579, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612764, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612764, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 13899173044904795402 }, subaccount: Subaccount([193, 146, 49, 59, 198, 244, 17, 157, 107, 222, 224, 251, 210, 168, 192, 222, 38, 203, 212, 23, 138, 251, 154, 152, 251, 185, 171, 179, 254, 131, 82, 21]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252841 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648041, spawn_at_timestamp_seconds: Some(1765252841), followees: {14: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 183555718, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648041, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 13899173044904795402 }, subaccount: Subaccount([193, 146, 49, 59, 198, 244, 17, 157, 107, 222, 224, 251, 210, 168, 192, 222, 38, 203, 212, 23, 138, 251, 154, 152, 251, 185, 171, 179, 254, 131, 82, 21]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252841 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 191540391, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648041, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648041, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14023818264726413592 }, subaccount: Subaccount([146, 67, 181, 36, 15, 107, 239, 203, 38, 134, 117, 246, 99, 47, 169, 247, 156, 192, 97, 164, 197, 49, 94, 8, 150, 233, 71, 105, 212, 251, 185, 74]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 288687841787, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14023818264726413592 }, subaccount: Subaccount([146, 67, 181, 36, 15, 107, 239, 203, 38, 134, 117, 246, 99, 47, 169, 247, 156, 192, 97, 164, 197, 49, 94, 8, 150, 233, 71, 105, 212, 251, 185, 74]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 301245762904, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14081090595397911005 }, subaccount: Subaccount([155, 249, 52, 87, 49, 111, 53, 108, 94, 63, 170, 246, 210, 171, 209, 71, 222, 241, 138, 210, 168, 219, 14, 137, 206, 236, 149, 145, 229, 55, 122, 87]), controller: irzbb-kfxm3-ougq5-4dueh-dqutr-d4anq-uijio-jag5j-bocep-fdxbs-rae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764883455 }, hot_keys: [fkxku-5wudo-ikqfq-fpmrx-llpol-dcusl-s6zbr-da7hi-jo33b-p7bvv-rqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764278655, spawn_at_timestamp_seconds: Some(1764883455), followees: {4: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1416486962, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764278655, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14081090595397911005 }, subaccount: Subaccount([155, 249, 52, 87, 49, 111, 53, 108, 94, 63, 170, 246, 210, 171, 209, 71, 222, 241, 138, 210, 168, 219, 14, 137, 206, 236, 149, 145, 229, 55, 122, 87]), controller: irzbb-kfxm3-ougq5-4dueh-dqutr-d4anq-uijio-jag5j-bocep-fdxbs-rae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764883455 }, hot_keys: [fkxku-5wudo-ikqfq-fpmrx-llpol-dcusl-s6zbr-da7hi-jo33b-p7bvv-rqe], cached_neuron_stake_e8s: 1478104144, neuron_fees_e8s: 0, created_timestamp_seconds: 1764278655, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764278655, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14090680647055528422 }, subaccount: Subaccount([238, 19, 79, 220, 108, 37, 131, 204, 122, 4, 22, 201, 241, 122, 32, 113, 14, 208, 37, 0, 191, 122, 56, 6, 108, 218, 215, 89, 112, 85, 150, 91]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 88690968689, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14090680647055528422 }, subaccount: Subaccount([238, 19, 79, 220, 108, 37, 131, 204, 122, 4, 22, 201, 241, 122, 32, 113, 14, 208, 37, 0, 191, 122, 56, 6, 108, 218, 215, 89, 112, 85, 150, 91]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 92549025826, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14117715426527380746 }, subaccount: Subaccount([148, 211, 209, 46, 202, 197, 55, 99, 146, 84, 79, 42, 249, 158, 82, 50, 49, 247, 229, 2, 173, 183, 250, 70, 148, 109, 28, 3, 98, 122, 197, 50]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302136 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697336, spawn_at_timestamp_seconds: Some(1765302136), followees: {15: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 199875873050, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697336, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14117715426527380746 }, subaccount: Subaccount([148, 211, 209, 46, 202, 197, 55, 99, 146, 84, 79, 42, 249, 158, 82, 50, 49, 247, 229, 2, 173, 183, 250, 70, 148, 109, 28, 3, 98, 122, 197, 50]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302136 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 208570473527, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697336, spawn_at_timestamp_seconds: None, followees: {12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697336, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14144645159095603459 }, subaccount: Subaccount([21, 105, 36, 225, 4, 68, 133, 195, 72, 195, 98, 18, 228, 175, 212, 114, 237, 1, 253, 213, 20, 76, 239, 43, 239, 233, 46, 7, 165, 127, 146, 57]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302130 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697330, spawn_at_timestamp_seconds: Some(1765302130), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 24808984444, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697330, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14144645159095603459 }, subaccount: Subaccount([21, 105, 36, 225, 4, 68, 133, 195, 72, 195, 98, 18, 228, 175, 212, 114, 237, 1, 253, 213, 20, 76, 239, 43, 239, 233, 46, 7, 165, 127, 146, 57]), controller: v54u2-sppl5-6hyey-ziuvv-e2myk-nibk3-xb6df-kccsx-zkgls-gphht-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302130 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 25888175267, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697330, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697330, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14154720683898833702 }, subaccount: Subaccount([10, 117, 231, 181, 38, 141, 156, 5, 49, 35, 172, 72, 13, 62, 100, 169, 245, 189, 147, 164, 99, 144, 66, 177, 173, 100, 190, 135, 234, 73, 18, 211]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765411845 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764807045, spawn_at_timestamp_seconds: Some(1765411845), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 178065177, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764807045, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14154720683898833702 }, subaccount: Subaccount([10, 117, 231, 181, 38, 141, 156, 5, 49, 35, 172, 72, 13, 62, 100, 169, 245, 189, 147, 164, 99, 144, 66, 177, 173, 100, 190, 135, 234, 73, 18, 211]), controller: ai27z-ecslu-3fwmw-fqeyq-bhsml-pwcdw-nitkg-n4tad-silsd-arppt-xqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765411845 }, hot_keys: [2czaa-mkafd-77zdi-7jq4t-k35ad-cqcft-qqjv2-c4vkw-e2j6b-gn7qe-oae], cached_neuron_stake_e8s: 185811012, neuron_fees_e8s: 0, created_timestamp_seconds: 1764807045, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764807045, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14213512148121860005 }, subaccount: Subaccount([222, 135, 244, 228, 150, 246, 240, 168, 132, 221, 68, 243, 124, 133, 132, 228, 65, 128, 9, 45, 160, 82, 71, 172, 186, 51, 162, 177, 223, 207, 223, 12]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302405 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697605, spawn_at_timestamp_seconds: Some(1765302405), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 8468382797, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697605, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14213512148121860005 }, subaccount: Subaccount([222, 135, 244, 228, 150, 246, 240, 168, 132, 221, 68, 243, 124, 133, 132, 228, 65, 128, 9, 45, 160, 82, 71, 172, 186, 51, 162, 177, 223, 207, 223, 12]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302405 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 8836757448, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697605, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697605, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14239821071554527931 }, subaccount: Subaccount([255, 59, 98, 33, 99, 123, 245, 206, 241, 70, 84, 195, 44, 48, 203, 199, 109, 238, 64, 112, 87, 128, 40, 83, 36, 97, 233, 255, 7, 242, 253, 169]), controller: syxzc-tvoun-tdniu-6oyh7-gaqni-bhekb-ynyaj-gcu72-27twx-v5owf-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765393553 }, hot_keys: [r6czu-o72hq-hydai-qe5zv-a2p2y-kqxz7-zfdpl-y6udg-lkcxq-xdbhp-kae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764788753, spawn_at_timestamp_seconds: Some(1765393553), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2928774212, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764788753, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14239821071554527931 }, subaccount: Subaccount([255, 59, 98, 33, 99, 123, 245, 206, 241, 70, 84, 195, 44, 48, 203, 199, 109, 238, 64, 112, 87, 128, 40, 83, 36, 97, 233, 255, 7, 242, 253, 169]), controller: syxzc-tvoun-tdniu-6oyh7-gaqni-bhekb-ynyaj-gcu72-27twx-v5owf-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765393553 }, hot_keys: [r6czu-o72hq-hydai-qe5zv-a2p2y-kqxz7-zfdpl-y6udg-lkcxq-xdbhp-kae], cached_neuron_stake_e8s: 3056175890, neuron_fees_e8s: 0, created_timestamp_seconds: 1764788753, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764788753, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14310166731932176718 }, subaccount: Subaccount([170, 58, 247, 138, 42, 220, 202, 145, 84, 65, 47, 90, 215, 159, 131, 52, 98, 145, 197, 25, 61, 7, 2, 235, 12, 168, 32, 216, 219, 11, 207, 196]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252831 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648031, spawn_at_timestamp_seconds: Some(1765252831), followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 181340546, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648031, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14310166731932176718 }, subaccount: Subaccount([170, 58, 247, 138, 42, 220, 202, 145, 84, 65, 47, 90, 215, 159, 131, 52, 98, 145, 197, 25, 61, 7, 2, 235, 12, 168, 32, 216, 219, 11, 207, 196]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252831 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 189228859, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648031, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648031, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14342714769631655620 }, subaccount: Subaccount([168, 59, 183, 241, 225, 72, 131, 241, 17, 165, 73, 24, 139, 6, 178, 97, 231, 44, 8, 105, 53, 80, 205, 229, 166, 140, 193, 78, 214, 214, 233, 63]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765184481 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764579681, spawn_at_timestamp_seconds: Some(1765184481), followees: {7: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 2387735761, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764579681, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14342714769631655620 }, subaccount: Subaccount([168, 59, 183, 241, 225, 72, 131, 241, 17, 165, 73, 24, 139, 6, 178, 97, 231, 44, 8, 105, 53, 80, 205, 229, 166, 140, 193, 78, 214, 214, 233, 63]), controller: 4a6uo-ruybe-3h62g-fivyr-pdspf-y5ye3-iiryl-2o2qp-hfm6k-vom62-kqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765184481 }, hot_keys: [hqvzj-7iaaa-aaaar-a7gza-cai, clrsx-44576-qsaht-7pq3s-szajw-ghamj-hwzsx-ul544-s7ybr-jwwgf-rae, 36twp-mqaaa-aaaag-aucpq-cai, 4wozb-aiaaa-aaaab-abzqq-cai], cached_neuron_stake_e8s: 2491602266, neuron_fees_e8s: 0, created_timestamp_seconds: 1764579681, spawn_at_timestamp_seconds: None, followees: {7: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764579681, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14452542844438691355 }, subaccount: Subaccount([96, 211, 230, 232, 138, 94, 85, 187, 211, 137, 153, 126, 57, 189, 153, 110, 111, 245, 79, 125, 92, 54, 101, 250, 47, 210, 150, 73, 167, 53, 49, 230]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765275389 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764670589, spawn_at_timestamp_seconds: Some(1765275389), followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 37688582250, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764670589, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14452542844438691355 }, subaccount: Subaccount([96, 211, 230, 232, 138, 94, 85, 187, 211, 137, 153, 126, 57, 189, 153, 110, 111, 245, 79, 125, 92, 54, 101, 250, 47, 210, 150, 73, 167, 53, 49, 230]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765275389 }, hot_keys: [], cached_neuron_stake_e8s: 39328035577, neuron_fees_e8s: 0, created_timestamp_seconds: 1764670589, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 4: Followees { followees: [NeuronId { id: 13680855657433416220 }] }, 14: Followees { followees: [NeuronId { id: 13680855657433416220 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764670589, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14455141558787730479 }, subaccount: Subaccount([43, 219, 127, 228, 48, 60, 97, 145, 42, 33, 169, 176, 121, 53, 243, 112, 155, 142, 224, 219, 211, 192, 116, 152, 102, 220, 77, 117, 59, 53, 27, 199]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764954674 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764349874, spawn_at_timestamp_seconds: Some(1764954674), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067501416, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764349874, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14455141558787730479 }, subaccount: Subaccount([43, 219, 127, 228, 48, 60, 97, 145, 42, 33, 169, 176, 121, 53, 243, 112, 155, 142, 224, 219, 211, 192, 116, 152, 102, 220, 77, 117, 59, 53, 27, 199]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764954674 }, hot_keys: [], cached_neuron_stake_e8s: 1113937727, neuron_fees_e8s: 0, created_timestamp_seconds: 1764349874, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764349874, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14536960651751191619 }, subaccount: Subaccount([10, 187, 251, 172, 160, 72, 178, 48, 78, 86, 241, 142, 216, 69, 221, 210, 187, 2, 240, 255, 35, 81, 61, 207, 89, 1, 143, 30, 43, 252, 200, 31]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217723 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612923, spawn_at_timestamp_seconds: Some(1765217723), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639697703, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612923, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14536960651751191619 }, subaccount: Subaccount([10, 187, 251, 172, 160, 72, 178, 48, 78, 86, 241, 142, 216, 69, 221, 210, 187, 2, 240, 255, 35, 81, 61, 207, 89, 1, 143, 30, 43, 252, 200, 31]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217723 }, hot_keys: [], cached_neuron_stake_e8s: 667524553, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612923, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612923, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14581653317231911611 }, subaccount: Subaccount([80, 119, 202, 222, 170, 47, 91, 241, 153, 145, 88, 17, 142, 129, 11, 207, 187, 247, 215, 200, 149, 125, 141, 44, 164, 26, 83, 7, 217, 175, 189, 168]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765136972 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764532172, spawn_at_timestamp_seconds: Some(1765136972), followees: {2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 371297347, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764532172, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14581653317231911611 }, subaccount: Subaccount([80, 119, 202, 222, 170, 47, 91, 241, 153, 145, 88, 17, 142, 129, 11, 207, 187, 247, 215, 200, 149, 125, 141, 44, 164, 26, 83, 7, 217, 175, 189, 168]), controller: k4dei-hb67q-bkze7-qpaih-yzt7k-64pbg-cqj3i-c5ral-fxjfv-crye3-rqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765136972 }, hot_keys: [54aid-amv5n-bahpi-pqjl6-hkkhl-g53ub-iubdd-xbpm5-drulw-nrmo2-lqe], cached_neuron_stake_e8s: 387448781, neuron_fees_e8s: 0, created_timestamp_seconds: 1764532172, spawn_at_timestamp_seconds: None, followees: {16: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 5: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 8: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 7: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 18: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 3: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 10: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 17: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 12: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 2: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 9: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 15: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 6: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764532172, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14593976628677517477 }, subaccount: Subaccount([109, 206, 153, 122, 236, 212, 235, 98, 244, 52, 155, 235, 207, 242, 238, 160, 46, 209, 117, 155, 113, 61, 54, 70, 121, 247, 10, 250, 216, 117, 200, 223]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958180 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353380, spawn_at_timestamp_seconds: Some(1764958180), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067498868, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353380, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14593976628677517477 }, subaccount: Subaccount([109, 206, 153, 122, 236, 212, 235, 98, 244, 52, 155, 235, 207, 242, 238, 160, 46, 209, 117, 155, 113, 61, 54, 70, 121, 247, 10, 250, 216, 117, 200, 223]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958180 }, hot_keys: [], cached_neuron_stake_e8s: 1113935068, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353380, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353380, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14598852027174892691 }, subaccount: Subaccount([156, 222, 0, 157, 217, 219, 183, 148, 137, 79, 136, 220, 146, 31, 151, 124, 204, 244, 97, 135, 127, 68, 209, 107, 32, 80, 139, 170, 215, 67, 202, 49]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217941 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613141, spawn_at_timestamp_seconds: Some(1765217941), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639279156, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613141, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14598852027174892691 }, subaccount: Subaccount([156, 222, 0, 157, 217, 219, 183, 148, 137, 79, 136, 220, 146, 31, 151, 124, 204, 244, 97, 135, 127, 68, 209, 107, 32, 80, 139, 170, 215, 67, 202, 49]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217941 }, hot_keys: [], cached_neuron_stake_e8s: 667087799, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613141, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613141, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14638403411995611509 }, subaccount: Subaccount([51, 127, 33, 126, 60, 206, 191, 120, 116, 134, 77, 104, 153, 63, 2, 26, 154, 223, 222, 252, 28, 20, 9, 28, 66, 160, 171, 69, 163, 182, 204, 43]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958293 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353493, spawn_at_timestamp_seconds: Some(1764958293), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499670, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353493, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14638403411995611509 }, subaccount: Subaccount([51, 127, 33, 126, 60, 206, 191, 120, 116, 134, 77, 104, 153, 63, 2, 26, 154, 223, 222, 252, 28, 20, 9, 28, 66, 160, 171, 69, 163, 182, 204, 43]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958293 }, hot_keys: [], cached_neuron_stake_e8s: 1113935905, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353493, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353493, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14650283679703007594 }, subaccount: Subaccount([22, 16, 61, 210, 79, 65, 73, 213, 180, 108, 53, 188, 103, 31, 55, 115, 202, 187, 33, 217, 155, 191, 84, 135, 244, 187, 88, 197, 125, 115, 177, 195]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217836 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613036, spawn_at_timestamp_seconds: Some(1765217836), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639697144, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613036, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14650283679703007594 }, subaccount: Subaccount([22, 16, 61, 210, 79, 65, 73, 213, 180, 108, 53, 188, 103, 31, 55, 115, 202, 187, 33, 217, 155, 191, 84, 135, 244, 187, 88, 197, 125, 115, 177, 195]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217836 }, hot_keys: [], cached_neuron_stake_e8s: 667523969, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613036, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613036, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14739152133401580090 }, subaccount: Subaccount([37, 21, 240, 247, 1, 5, 229, 236, 221, 186, 204, 172, 111, 189, 185, 104, 164, 217, 42, 111, 179, 120, 51, 69, 74, 72, 168, 167, 40, 5, 199, 207]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252834 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648034, spawn_at_timestamp_seconds: Some(1765252834), followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 181860916, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648034, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14739152133401580090 }, subaccount: Subaccount([37, 21, 240, 247, 1, 5, 229, 236, 221, 186, 204, 172, 111, 189, 185, 104, 164, 217, 42, 111, 179, 120, 51, 69, 74, 72, 168, 167, 40, 5, 199, 207]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252834 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 189771865, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648034, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648034, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14767726352910368238 }, subaccount: Subaccount([93, 81, 50, 109, 26, 29, 110, 254, 198, 162, 78, 232, 9, 132, 110, 190, 73, 139, 130, 129, 44, 234, 136, 125, 177, 126, 83, 49, 128, 242, 28, 255]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217542 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612742, spawn_at_timestamp_seconds: Some(1765217542), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639694853, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612742, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14767726352910368238 }, subaccount: Subaccount([93, 81, 50, 109, 26, 29, 110, 254, 198, 162, 78, 232, 9, 132, 110, 190, 73, 139, 130, 129, 44, 234, 136, 125, 177, 126, 83, 49, 128, 242, 28, 255]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217542 }, hot_keys: [], cached_neuron_stake_e8s: 667521579, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612742, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612742, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14871986724501337910 }, subaccount: Subaccount([231, 176, 155, 20, 203, 0, 79, 186, 123, 79, 190, 183, 204, 58, 23, 43, 99, 247, 20, 23, 122, 244, 200, 114, 239, 179, 131, 239, 66, 245, 112, 77]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959134 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354334, spawn_at_timestamp_seconds: Some(1764959134), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500567, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354334, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14871986724501337910 }, subaccount: Subaccount([231, 176, 155, 20, 203, 0, 79, 186, 123, 79, 190, 183, 204, 58, 23, 43, 99, 247, 20, 23, 122, 244, 200, 114, 239, 179, 131, 239, 66, 245, 112, 77]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959134 }, hot_keys: [], cached_neuron_stake_e8s: 1113936841, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354334, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354334, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14901755034228451102 }, subaccount: Subaccount([29, 180, 148, 201, 141, 130, 70, 171, 98, 213, 56, 115, 175, 77, 106, 149, 17, 19, 15, 240, 242, 217, 235, 225, 129, 194, 0, 213, 36, 32, 178, 229]), controller: 3isqk-hntpe-gpllf-fgy2q-fgluo-vmkry-j4qvm-b4f2o-uldcq-z6ahn-nqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283007 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678207, spawn_at_timestamp_seconds: Some(1765283007), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 794854658242, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678207, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14901755034228451102 }, subaccount: Subaccount([29, 180, 148, 201, 141, 130, 70, 171, 98, 213, 56, 115, 175, 77, 106, 149, 17, 19, 15, 240, 242, 217, 235, 225, 129, 194, 0, 213, 36, 32, 178, 229]), controller: 3isqk-hntpe-gpllf-fgy2q-fgluo-vmkry-j4qvm-b4f2o-uldcq-z6ahn-nqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765283007 }, hot_keys: [ljxsi-5du4w-3se32-vba6v-dd543-rrj3g-nayx2-f7xhd-o4u7a-ycmxw-bae], cached_neuron_stake_e8s: 829430835875, neuron_fees_e8s: 0, created_timestamp_seconds: 1764678207, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764678207, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 14983383004421230951 }, subaccount: Subaccount([0, 64, 195, 41, 13, 68, 199, 51, 1, 30, 107, 48, 200, 103, 111, 100, 137, 132, 95, 242, 228, 197, 110, 153, 32, 181, 150, 53, 106, 232, 86, 19]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217018 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612218, spawn_at_timestamp_seconds: Some(1765217018), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696115, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612218, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 14983383004421230951 }, subaccount: Subaccount([0, 64, 195, 41, 13, 68, 199, 51, 1, 30, 107, 48, 200, 103, 111, 100, 137, 132, 95, 242, 228, 197, 110, 153, 32, 181, 150, 53, 106, 232, 86, 19]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217018 }, hot_keys: [], cached_neuron_stake_e8s: 667522896, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612218, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612218, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15194594634253263146 }, subaccount: Subaccount([22, 245, 169, 97, 6, 0, 202, 0, 181, 149, 174, 40, 39, 195, 92, 245, 102, 147, 12, 199, 18, 22, 222, 60, 169, 179, 207, 200, 184, 95, 119, 5]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 389569528611, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15194594634253263146 }, subaccount: Subaccount([22, 245, 169, 97, 6, 0, 202, 0, 181, 149, 174, 40, 39, 195, 92, 245, 102, 147, 12, 199, 18, 22, 222, 60, 169, 179, 207, 200, 184, 95, 119, 5]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 406515803105, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15299160169620211891 }, subaccount: Subaccount([72, 223, 95, 218, 121, 239, 233, 46, 223, 147, 45, 146, 135, 50, 132, 94, 242, 226, 107, 139, 237, 239, 137, 42, 218, 128, 221, 137, 188, 88, 146, 125]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966197 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361397, spawn_at_timestamp_seconds: Some(1764966197), followees: {14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 15714598226, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361397, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15299160169620211891 }, subaccount: Subaccount([72, 223, 95, 218, 121, 239, 233, 46, 223, 147, 45, 146, 135, 50, 132, 94, 242, 226, 107, 139, 237, 239, 137, 42, 218, 128, 221, 137, 188, 88, 146, 125]), controller: pwrjv-dx4md-6jynf-66h24-necga-dxk4v-2n24p-wsy3u-6rqtd-fr2mx-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764966197 }, hot_keys: [nr7uw-233ak-fgdr4-mtcnn-fegim-mbk7p-xxamc-m3s3v-dzwu7-ewwmc-pae], cached_neuron_stake_e8s: 16398183248, neuron_fees_e8s: 0, created_timestamp_seconds: 1764361397, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764361397, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15321470808176873540 }, subaccount: Subaccount([4, 17, 245, 153, 173, 35, 118, 118, 118, 166, 33, 23, 181, 30, 113, 40, 229, 125, 234, 249, 235, 32, 147, 93, 165, 131, 47, 26, 160, 64, 129, 132]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252823 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648023, spawn_at_timestamp_seconds: Some(1765252823), followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 175197801, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648023, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15321470808176873540 }, subaccount: Subaccount([4, 17, 245, 153, 173, 35, 118, 118, 118, 166, 33, 23, 181, 30, 113, 40, 229, 125, 234, 249, 235, 32, 147, 93, 165, 131, 47, 26, 160, 64, 129, 132]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252823 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 182818905, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648023, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648023, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15322289099567035884 }, subaccount: Subaccount([211, 198, 66, 109, 206, 83, 97, 180, 51, 17, 179, 93, 5, 225, 204, 141, 236, 79, 232, 196, 48, 140, 94, 108, 0, 161, 79, 3, 210, 43, 218, 210]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958874 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354074, spawn_at_timestamp_seconds: Some(1764958874), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1066804840, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354074, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15322289099567035884 }, subaccount: Subaccount([211, 198, 66, 109, 206, 83, 97, 180, 51, 17, 179, 93, 5, 225, 204, 141, 236, 79, 232, 196, 48, 140, 94, 108, 0, 161, 79, 3, 210, 43, 218, 210]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958874 }, hot_keys: [], cached_neuron_stake_e8s: 1113210850, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354074, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354074, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15330294786936918943 }, subaccount: Subaccount([165, 9, 157, 58, 85, 253, 115, 88, 174, 199, 113, 69, 142, 69, 53, 12, 208, 83, 206, 64, 70, 163, 244, 88, 66, 162, 198, 101, 58, 220, 9, 190]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957827 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353027, spawn_at_timestamp_seconds: Some(1764957827), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500646, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353027, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15330294786936918943 }, subaccount: Subaccount([165, 9, 157, 58, 85, 253, 115, 88, 174, 199, 113, 69, 142, 69, 53, 12, 208, 83, 206, 64, 70, 163, 244, 88, 66, 162, 198, 101, 58, 220, 9, 190]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957827 }, hot_keys: [], cached_neuron_stake_e8s: 1113936924, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353027, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353027, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15381487706475729594 }, subaccount: Subaccount([226, 124, 223, 181, 52, 133, 65, 31, 251, 141, 73, 91, 16, 164, 130, 8, 191, 169, 182, 85, 236, 166, 20, 223, 182, 99, 119, 247, 207, 26, 0, 202]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765188977 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764584177, spawn_at_timestamp_seconds: Some(1765188977), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 47718000931, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764584177, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15381487706475729594 }, subaccount: Subaccount([226, 124, 223, 181, 52, 133, 65, 31, 251, 141, 73, 91, 16, 164, 130, 8, 191, 169, 182, 85, 236, 166, 20, 223, 182, 99, 119, 247, 207, 26, 0, 202]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765188977 }, hot_keys: [], cached_neuron_stake_e8s: 49793733971, neuron_fees_e8s: 0, created_timestamp_seconds: 1764584177, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764584177, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15466871001890430568 }, subaccount: Subaccount([114, 27, 235, 196, 65, 13, 11, 116, 91, 14, 166, 177, 63, 192, 132, 208, 200, 238, 113, 99, 238, 165, 149, 186, 163, 250, 230, 241, 41, 225, 183, 159]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013492 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408692, spawn_at_timestamp_seconds: Some(1765013492), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 428687636340283207 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 835188921527, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408692, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15466871001890430568 }, subaccount: Subaccount([114, 27, 235, 196, 65, 13, 11, 116, 91, 14, 166, 177, 63, 192, 132, 208, 200, 238, 113, 99, 238, 165, 149, 186, 163, 250, 230, 241, 41, 225, 183, 159]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013492 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 871519639613, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408692, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 428687636340283207 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408692, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15579141597361862213 }, subaccount: Subaccount([90, 85, 96, 42, 138, 30, 174, 9, 141, 29, 59, 65, 126, 35, 96, 175, 6, 139, 144, 18, 16, 59, 229, 104, 213, 209, 68, 169, 65, 92, 69, 164]), controller: qdcn3-rei57-npp7o-no366-kwexy-ve3pv-rwzfq-qzpl7-ntjv2-l2jn4-hae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765017000 }, hot_keys: [zcgi5-5gjwv-qipmz-ry6rf-che74-rixs5-nn6by-h7bcd-sxkqx-ic2ys-nae, ot5ha-uhgkf-o4eb5-z7wum-x5rci-3bihk-uh5nm-fszex-erqay-7twwe-5ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764412200, spawn_at_timestamp_seconds: Some(1765017000), followees: {0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1145486143, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764412200, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15579141597361862213 }, subaccount: Subaccount([90, 85, 96, 42, 138, 30, 174, 9, 141, 29, 59, 65, 126, 35, 96, 175, 6, 139, 144, 18, 16, 59, 229, 104, 213, 209, 68, 169, 65, 92, 69, 164]), controller: qdcn3-rei57-npp7o-no366-kwexy-ve3pv-rwzfq-qzpl7-ntjv2-l2jn4-hae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765017000 }, hot_keys: [zcgi5-5gjwv-qipmz-ry6rf-che74-rixs5-nn6by-h7bcd-sxkqx-ic2ys-nae, ot5ha-uhgkf-o4eb5-z7wum-x5rci-3bihk-uh5nm-fszex-erqay-7twwe-5ae], cached_neuron_stake_e8s: 1195314790, neuron_fees_e8s: 0, created_timestamp_seconds: 1764412200, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 4: Followees { followees: [NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764412200, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15611093468840983024 }, subaccount: Subaccount([127, 80, 89, 29, 21, 168, 240, 210, 78, 238, 20, 143, 120, 187, 181, 86, 117, 68, 147, 62, 66, 236, 194, 86, 241, 240, 17, 3, 68, 96, 11, 188]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 27771414379, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15611093468840983024 }, subaccount: Subaccount([127, 80, 89, 29, 21, 168, 240, 210, 78, 238, 20, 143, 120, 187, 181, 86, 117, 68, 147, 62, 66, 236, 194, 86, 241, 240, 17, 3, 68, 96, 11, 188]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 28979470904, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15630421234839037343 }, subaccount: Subaccount([242, 240, 242, 98, 107, 44, 13, 166, 131, 223, 240, 40, 19, 209, 37, 228, 45, 252, 0, 34, 149, 145, 174, 45, 66, 66, 133, 160, 68, 169, 175, 152]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302168 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697368, spawn_at_timestamp_seconds: Some(1765302168), followees: {9: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 9013456205391096227 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 336562407571, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697368, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15630421234839037343 }, subaccount: Subaccount([242, 240, 242, 98, 107, 44, 13, 166, 131, 223, 240, 40, 19, 209, 37, 228, 45, 252, 0, 34, 149, 145, 174, 45, 66, 66, 133, 160, 68, 169, 175, 152]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302168 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 351202872300, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697368, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 9013456205391096227 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697368, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15733682491834399974 }, subaccount: Subaccount([199, 190, 124, 226, 126, 177, 137, 196, 68, 49, 47, 185, 179, 213, 41, 174, 251, 203, 210, 207, 239, 238, 17, 5, 227, 215, 16, 131, 114, 118, 80, 152]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218286 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613486, spawn_at_timestamp_seconds: Some(1765218286), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696039, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613486, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15733682491834399974 }, subaccount: Subaccount([199, 190, 124, 226, 126, 177, 137, 196, 68, 49, 47, 185, 179, 213, 41, 174, 251, 203, 210, 207, 239, 238, 17, 5, 227, 215, 16, 131, 114, 118, 80, 152]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218286 }, hot_keys: [], cached_neuron_stake_e8s: 667522816, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613486, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613486, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15769681029981451946 }, subaccount: Subaccount([191, 71, 182, 76, 107, 233, 170, 92, 230, 201, 176, 78, 0, 249, 1, 64, 88, 219, 187, 56, 144, 86, 183, 194, 66, 245, 225, 164, 86, 139, 143, 225]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951242 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346442, spawn_at_timestamp_seconds: Some(1764951242), followees: {14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1865186469, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346442, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15769681029981451946 }, subaccount: Subaccount([191, 71, 182, 76, 107, 233, 170, 92, 230, 201, 176, 78, 0, 249, 1, 64, 88, 219, 187, 56, 144, 86, 183, 194, 66, 245, 225, 164, 86, 139, 143, 225]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764951242 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 1946322080, neuron_fees_e8s: 0, created_timestamp_seconds: 1764346442, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764346442, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15823452286246013266 }, subaccount: Subaccount([180, 227, 246, 210, 215, 49, 60, 160, 109, 98, 59, 43, 188, 182, 91, 150, 220, 32, 14, 105, 92, 2, 244, 156, 157, 110, 8, 152, 61, 39, 28, 10]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302356 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697556, spawn_at_timestamp_seconds: Some(1765302356), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 7647993822, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697556, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15823452286246013266 }, subaccount: Subaccount([180, 227, 246, 210, 215, 49, 60, 160, 109, 98, 59, 43, 188, 182, 91, 150, 220, 32, 14, 105, 92, 2, 244, 156, 157, 110, 8, 152, 61, 39, 28, 10]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302356 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 7980681553, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697556, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697556, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15904209069778998380 }, subaccount: Subaccount([19, 165, 142, 196, 96, 164, 184, 177, 196, 181, 27, 67, 205, 144, 245, 169, 28, 185, 175, 21, 160, 68, 223, 7, 227, 189, 233, 69, 100, 207, 38, 192]), controller: mvcce-3b67a-5w2py-liti6-5vl7e-2bctd-omyv6-eqesj-7armj-3yjzw-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765116616 }, hot_keys: [bfpbh-d46pt-6axfw-cfvmy-afptl-55ezo-pmcdh-xosfh-er4sc-jm2p3-dqe, emaxi-jn7b7-wjvir-ownj7-tooyq-hdvti-7joos-zgkf5-rl4rq-bnuoo-eae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764511816, spawn_at_timestamp_seconds: Some(1765116616), followees: {4: Followees { followees: [NeuronId { id: 10113435617292303472 }] }, 14: Followees { followees: [NeuronId { id: 10113435617292303472 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 45998867330, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764511816, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15904209069778998380 }, subaccount: Subaccount([19, 165, 142, 196, 96, 164, 184, 177, 196, 181, 27, 67, 205, 144, 245, 169, 28, 185, 175, 21, 160, 68, 223, 7, 227, 189, 233, 69, 100, 207, 38, 192]), controller: mvcce-3b67a-5w2py-liti6-5vl7e-2bctd-omyv6-eqesj-7armj-3yjzw-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765116616 }, hot_keys: [bfpbh-d46pt-6axfw-cfvmy-afptl-55ezo-pmcdh-xosfh-er4sc-jm2p3-dqe, emaxi-jn7b7-wjvir-ownj7-tooyq-hdvti-7joos-zgkf5-rl4rq-bnuoo-eae], cached_neuron_stake_e8s: 47999818058, neuron_fees_e8s: 0, created_timestamp_seconds: 1764511816, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 10113435617292303472 }] }, 14: Followees { followees: [NeuronId { id: 10113435617292303472 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764511816, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15991962558747953978 }, subaccount: Subaccount([216, 105, 244, 223, 216, 149, 134, 216, 63, 108, 126, 79, 168, 165, 206, 216, 84, 235, 154, 87, 103, 205, 82, 141, 41, 225, 89, 104, 159, 223, 139, 43]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765277266 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764672466, spawn_at_timestamp_seconds: Some(1765277266), followees: {10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 869403060, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764672466, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15991962558747953978 }, subaccount: Subaccount([216, 105, 244, 223, 216, 149, 134, 216, 63, 108, 126, 79, 168, 165, 206, 216, 84, 235, 154, 87, 103, 205, 82, 141, 41, 225, 89, 104, 159, 223, 139, 43]), controller: v3fvq-3pjx4-t75t3-sf4vv-s5wi5-46c64-rqxdh-r2ouz-denbf-qsite-aqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765277266 }, hot_keys: [gwzze-txccu-sbri4-dgd52-md37a-amvp4-if6dh-5voev-r65ww-zygav-rae], cached_neuron_stake_e8s: 907222093, neuron_fees_e8s: 0, created_timestamp_seconds: 1764672466, spawn_at_timestamp_seconds: None, followees: {3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }] }, 7: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 13: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 2: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 14: Followees { followees: [NeuronId { id: 4966884161088437903 }, NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 4966884161088437903 }] }, 12: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }, 5: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 17682165960669268263 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764672466, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 15999853664546545485 }, subaccount: Subaccount([34, 79, 138, 117, 175, 46, 86, 220, 73, 10, 216, 152, 30, 158, 76, 120, 236, 182, 157, 72, 202, 89, 216, 95, 177, 202, 90, 242, 106, 90, 17, 193]), controller: sjov3-tl3bn-xru6r-nb2bl-rcu5g-p6fej-hrvei-yexow-z74xc-yiwdr-qae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765258349 }, hot_keys: [45u6g-zj6ra-7ah3j-fmw7b-seffr-fygwi-nl5ng-of5ga-2jk43-6i5o3-mqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764653549, spawn_at_timestamp_seconds: Some(1765258349), followees: {6: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 674526315, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764653549, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 15999853664546545485 }, subaccount: Subaccount([34, 79, 138, 117, 175, 46, 86, 220, 73, 10, 216, 152, 30, 158, 76, 120, 236, 182, 157, 72, 202, 89, 216, 95, 177, 202, 90, 242, 106, 90, 17, 193]), controller: sjov3-tl3bn-xru6r-nb2bl-rcu5g-p6fej-hrvei-yexow-z74xc-yiwdr-qae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765258349 }, hot_keys: [45u6g-zj6ra-7ah3j-fmw7b-seffr-fygwi-nl5ng-of5ga-2jk43-6i5o3-mqe], cached_neuron_stake_e8s: 703868209, neuron_fees_e8s: 0, created_timestamp_seconds: 1764653549, spawn_at_timestamp_seconds: None, followees: {5: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 828071236396423440 }, NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764653549, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16097737882848839103 }, subaccount: Subaccount([210, 181, 16, 12, 167, 118, 68, 146, 171, 170, 65, 87, 150, 86, 140, 59, 236, 114, 117, 162, 131, 155, 122, 24, 89, 239, 119, 178, 87, 9, 198, 90]), controller: gbk5z-k7nim-fxyqr-qot6s-myejr-dznzb-s3k4h-23zrb-5ml5o-ecnu4-tae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765219675 }, hot_keys: [npwec-mzbkr-q2odz-xanfl-sh7yf-tdbc2-mqbm6-swpnq-3oyze-ambtu-sae, 6qoty-qqgye-h6pwy-f6adi-6x7k5-brvpu-ugd73-e4upc-sh6rn-p36lj-jqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764614875, spawn_at_timestamp_seconds: Some(1765219675), followees: {9: Followees { followees: [NeuronId { id: 33138099823745946 }, NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 14231996777861930328 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 13765488517578645474 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 5553849921138062661 }] }, 8: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 27 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 6914974521667616512 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 5553849921138062661 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 183395829, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764614875, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16097737882848839103 }, subaccount: Subaccount([210, 181, 16, 12, 167, 118, 68, 146, 171, 170, 65, 87, 150, 86, 140, 59, 236, 114, 117, 162, 131, 155, 122, 24, 89, 239, 119, 178, 87, 9, 198, 90]), controller: gbk5z-k7nim-fxyqr-qot6s-myejr-dznzb-s3k4h-23zrb-5ml5o-ecnu4-tae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765219675 }, hot_keys: [npwec-mzbkr-q2odz-xanfl-sh7yf-tdbc2-mqbm6-swpnq-3oyze-ambtu-sae, 6qoty-qqgye-h6pwy-f6adi-6x7k5-brvpu-ugd73-e4upc-sh6rn-p36lj-jqe], cached_neuron_stake_e8s: 191373547, neuron_fees_e8s: 0, created_timestamp_seconds: 1764614875, spawn_at_timestamp_seconds: None, followees: {16: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }] }, 17: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }, 18: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 13765488517578645474 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 5553849921138062661 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 9: Followees { followees: [NeuronId { id: 33138099823745946 }, NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 5553849921138062661 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 6914974521667616512 }] }, 15: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 11595773061053702367 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5553849921138062661 }] }, 8: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 27 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 5553849921138062661 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 12093733865587997066 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 5553849921138062661 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 14231996777861930328 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 2776371642396604393 }, NeuronId { id: 5132308922522452058 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 5132308922522452058 }, NeuronId { id: 1100477100620240869 }, NeuronId { id: 17682165960669268263 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 14231996777861930328 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764614875, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16166510429699320138 }, subaccount: Subaccount([40, 12, 131, 125, 5, 73, 175, 68, 98, 101, 174, 79, 166, 37, 105, 57, 180, 12, 27, 117, 95, 100, 106, 110, 110, 129, 255, 230, 139, 99, 22, 13]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302461 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697661, spawn_at_timestamp_seconds: Some(1765302461), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 19933641418, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697661, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16166510429699320138 }, subaccount: Subaccount([40, 12, 131, 125, 5, 73, 175, 68, 98, 101, 174, 79, 166, 37, 105, 57, 180, 12, 27, 117, 95, 100, 106, 110, 110, 129, 255, 230, 139, 99, 22, 13]), controller: pre7k-crkf4-goga2-vlpjr-f47dx-bpu33-g3i33-kofvq-xbk6r-t2qhv-jae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302461 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 20800754819, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697661, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697661, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16198722445964299273 }, subaccount: Subaccount([252, 118, 245, 215, 199, 48, 6, 39, 151, 63, 235, 242, 123, 186, 111, 161, 76, 146, 108, 244, 254, 216, 221, 234, 33, 133, 188, 88, 55, 238, 242, 224]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765038216 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764433416, spawn_at_timestamp_seconds: Some(1765038216), followees: {0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 372815916, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764433416, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16198722445964299273 }, subaccount: Subaccount([252, 118, 245, 215, 199, 48, 6, 39, 151, 63, 235, 242, 123, 186, 111, 161, 76, 146, 108, 244, 254, 216, 221, 234, 33, 133, 188, 88, 55, 238, 242, 224]), controller: 5fuel-u5uth-v37px-pjtua-cmhup-x4jhu-atqns-w33qq-yw73j-hshfq-dqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765038216 }, hot_keys: [ttrx5-yraxv-kriuj-x65u7-qsab6-6fdti-lw4rp-njcfy-j5mye-3jqmg-2ae], cached_neuron_stake_e8s: 389033408, neuron_fees_e8s: 0, created_timestamp_seconds: 1764433416, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 0: Followees { followees: [NeuronId { id: 7902983898778678943 }] }, 14: Followees { followees: [NeuronId { id: 7902983898778678943 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764433416, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16249994214365094355 }, subaccount: Subaccount([30, 76, 15, 4, 111, 249, 113, 76, 12, 19, 82, 78, 81, 37, 1, 209, 148, 222, 74, 37, 46, 44, 101, 28, 38, 137, 68, 162, 234, 140, 192, 118]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959166 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354366, spawn_at_timestamp_seconds: Some(1764959166), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500332, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354366, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16249994214365094355 }, subaccount: Subaccount([30, 76, 15, 4, 111, 249, 113, 76, 12, 19, 82, 78, 81, 37, 1, 209, 148, 222, 74, 37, 46, 44, 101, 28, 38, 137, 68, 162, 234, 140, 192, 118]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959166 }, hot_keys: [], cached_neuron_stake_e8s: 1113936596, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354366, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354366, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16312182291613584739 }, subaccount: Subaccount([137, 219, 107, 173, 9, 8, 32, 230, 44, 152, 45, 125, 80, 13, 141, 102, 26, 203, 101, 53, 99, 247, 151, 79, 147, 193, 230, 75, 134, 127, 207, 87]), controller: bdzcc-ssyow-p5fli-pguio-k7dei-fhvgk-2e5lj-ehhjh-sk227-rs7gr-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764945819 }, hot_keys: [c2txe-abgre-btpfq-r2idj-go4xe-jjfkd-b34gm-zsci6-t3o2e-d57dk-sae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764341019, spawn_at_timestamp_seconds: Some(1764945819), followees: {5: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 389613365, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764341019, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16312182291613584739 }, subaccount: Subaccount([137, 219, 107, 173, 9, 8, 32, 230, 44, 152, 45, 125, 80, 13, 141, 102, 26, 203, 101, 53, 99, 247, 151, 79, 147, 193, 230, 75, 134, 127, 207, 87]), controller: bdzcc-ssyow-p5fli-pguio-k7dei-fhvgk-2e5lj-ehhjh-sk227-rs7gr-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764945819 }, hot_keys: [c2txe-abgre-btpfq-r2idj-go4xe-jjfkd-b34gm-zsci6-t3o2e-d57dk-sae], cached_neuron_stake_e8s: 406561546, neuron_fees_e8s: 0, created_timestamp_seconds: 1764341019, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 15: Followees { followees: [NeuronId { id: 27 }] }, 18: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764341019, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16317530067503602394 }, subaccount: Subaccount([170, 66, 109, 234, 169, 91, 111, 126, 231, 239, 120, 28, 240, 255, 242, 109, 164, 115, 254, 63, 73, 35, 25, 57, 31, 14, 185, 58, 164, 145, 159, 35]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302389 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, cc3qx-wq5bo-bealj-rjhth-lpnmr-44ukx-reodr-hk2nr-wk4va-c7gms-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697589, spawn_at_timestamp_seconds: Some(1765302389), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 15681193273, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697589, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16317530067503602394 }, subaccount: Subaccount([170, 66, 109, 234, 169, 91, 111, 126, 231, 239, 120, 28, 240, 255, 242, 109, 164, 115, 254, 63, 73, 35, 25, 57, 31, 14, 185, 58, 164, 145, 159, 35]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302389 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, cc3qx-wq5bo-bealj-rjhth-lpnmr-44ukx-reodr-hk2nr-wk4va-c7gms-7ae], cached_neuron_stake_e8s: 16363325180, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697589, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697589, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16613056472375461925 }, subaccount: Subaccount([220, 167, 255, 167, 214, 213, 38, 169, 41, 12, 110, 192, 67, 11, 234, 185, 110, 5, 251, 200, 108, 22, 174, 100, 206, 191, 230, 45, 187, 181, 251, 91]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217466 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612666, spawn_at_timestamp_seconds: Some(1765217466), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695567, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612666, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16613056472375461925 }, subaccount: Subaccount([220, 167, 255, 167, 214, 213, 38, 169, 41, 12, 110, 192, 67, 11, 234, 185, 110, 5, 251, 200, 108, 22, 174, 100, 206, 191, 230, 45, 187, 181, 251, 91]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217466 }, hot_keys: [], cached_neuron_stake_e8s: 667522324, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612666, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612666, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16663593947608862363 }, subaccount: Subaccount([34, 36, 198, 51, 164, 85, 127, 249, 87, 156, 124, 98, 129, 217, 6, 13, 211, 79, 54, 152, 102, 111, 35, 219, 90, 130, 213, 195, 184, 201, 249, 90]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765275385 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764670585, spawn_at_timestamp_seconds: Some(1765275385), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 47738085695, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764670585, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16663593947608862363 }, subaccount: Subaccount([34, 36, 198, 51, 164, 85, 127, 249, 87, 156, 124, 98, 129, 217, 6, 13, 211, 79, 54, 152, 102, 111, 35, 219, 90, 130, 213, 195, 184, 201, 249, 90]), controller: tsbvt-pyaaa-aaaar-qafva-cai, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765275385 }, hot_keys: [], cached_neuron_stake_e8s: 49814692422, neuron_fees_e8s: 0, created_timestamp_seconds: 1764670585, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764670585, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16706137767935985059 }, subaccount: Subaccount([28, 81, 91, 124, 3, 217, 238, 4, 88, 229, 94, 213, 22, 238, 41, 100, 190, 100, 108, 34, 45, 132, 107, 214, 44, 149, 52, 200, 46, 67, 229, 132]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33744420823, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16706137767935985059 }, subaccount: Subaccount([28, 81, 91, 124, 3, 217, 238, 4, 88, 229, 94, 213, 22, 238, 41, 100, 190, 100, 108, 34, 45, 132, 107, 214, 44, 149, 52, 200, 46, 67, 229, 132]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 35212303128, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16777230674919890057 }, subaccount: Subaccount([74, 228, 2, 252, 203, 187, 234, 160, 16, 95, 114, 238, 246, 212, 68, 20, 56, 56, 121, 71, 83, 124, 93, 111, 165, 44, 180, 112, 223, 193, 65, 205]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218310 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613510, spawn_at_timestamp_seconds: Some(1765218310), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639696100, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613510, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16777230674919890057 }, subaccount: Subaccount([74, 228, 2, 252, 203, 187, 234, 160, 16, 95, 114, 238, 246, 212, 68, 20, 56, 56, 121, 71, 83, 124, 93, 111, 165, 44, 180, 112, 223, 193, 65, 205]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218310 }, hot_keys: [], cached_neuron_stake_e8s: 667522880, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613510, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613510, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16889768330138993396 }, subaccount: Subaccount([150, 233, 168, 183, 237, 236, 97, 65, 6, 25, 96, 64, 37, 134, 136, 114, 41, 6, 139, 163, 15, 31, 155, 33, 181, 230, 225, 25, 246, 27, 204, 71]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302394 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697594, spawn_at_timestamp_seconds: Some(1765302394), followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 10447574977, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697594, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16889768330138993396 }, subaccount: Subaccount([150, 233, 168, 183, 237, 236, 97, 65, 6, 25, 96, 64, 37, 134, 136, 114, 41, 6, 139, 163, 15, 31, 155, 33, 181, 230, 225, 25, 246, 27, 204, 71]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302394 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe], cached_neuron_stake_e8s: 10902044488, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697594, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697594, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 16900792518741375697 }, subaccount: Subaccount([0, 25, 214, 80, 167, 235, 154, 133, 136, 176, 35, 181, 238, 103, 228, 11, 162, 204, 126, 58, 8, 64, 46, 195, 195, 172, 26, 93, 155, 190, 42, 190]), controller: if7cv-wtvw3-tco72-k3ln2-hdybe-jlem2-lmo4o-qomii-44ghm-6rj6e-nae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765125746 }, hot_keys: [iw7bi-w7rpn-lr6j7-rheje-lptpj-twyq4-3lh6q-s5v7q-ku3pj-elnd6-vqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764520946, spawn_at_timestamp_seconds: Some(1765125746), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 5: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 9: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 7: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 6: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 8: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 12: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 13: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 4809253790, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764520946, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 16900792518741375697 }, subaccount: Subaccount([0, 25, 214, 80, 167, 235, 154, 133, 136, 176, 35, 181, 238, 103, 228, 11, 162, 204, 126, 58, 8, 64, 46, 195, 195, 172, 26, 93, 155, 190, 42, 190]), controller: if7cv-wtvw3-tco72-k3ln2-hdybe-jlem2-lmo4o-qomii-44ghm-6rj6e-nae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765125746 }, hot_keys: [iw7bi-w7rpn-lr6j7-rheje-lptpj-twyq4-3lh6q-s5v7q-ku3pj-elnd6-vqe], cached_neuron_stake_e8s: 5018456329, neuron_fees_e8s: 0, created_timestamp_seconds: 1764520946, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 2: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 6: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 7: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 8: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 3: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 9: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 5: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 10: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 13: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 12: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764520946, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17054694933157493848 }, subaccount: Subaccount([8, 5, 78, 244, 103, 37, 2, 176, 103, 125, 106, 164, 136, 49, 92, 149, 146, 28, 48, 52, 204, 52, 96, 152, 26, 127, 59, 6, 178, 196, 228, 135]), controller: 4hpfp-ebm6v-v365q-ispli-5w77m-k3m3x-vkefc-eemgt-yo4xm-mfaye-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765244849 }, hot_keys: [vi53b-wnxbz-fw37p-7x55b-gdaeh-rderw-wdgv4-p3vlj-bcdw2-fgeqi-tae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764640049, spawn_at_timestamp_seconds: Some(1765244849), followees: {3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 13538714184009896865 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 16335946240875077438 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 6362091663310642824 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 7766735497505253681 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 248932514, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764640049, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17054694933157493848 }, subaccount: Subaccount([8, 5, 78, 244, 103, 37, 2, 176, 103, 125, 106, 164, 136, 49, 92, 149, 146, 28, 48, 52, 204, 52, 96, 152, 26, 127, 59, 6, 178, 196, 228, 135]), controller: 4hpfp-ebm6v-v365q-ispli-5w77m-k3m3x-vkefc-eemgt-yo4xm-mfaye-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765244849 }, hot_keys: [vi53b-wnxbz-fw37p-7x55b-gdaeh-rderw-wdgv4-p3vlj-bcdw2-fgeqi-tae], cached_neuron_stake_e8s: 259761078, neuron_fees_e8s: 0, created_timestamp_seconds: 1764640049, spawn_at_timestamp_seconds: None, followees: {10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 16335946240875077438 }] }, 13: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 6914974521667616512 }, NeuronId { id: 7766735497505253681 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 12: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 1767081890685465163 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 4714336137769716208 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 6362091663310642824 }] }, 7: Followees { followees: [NeuronId { id: 27 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 13538714184009896865 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764640049, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:27.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17058601735557687253 }, subaccount: Subaccount([40, 225, 146, 155, 24, 102, 181, 108, 10, 16, 151, 156, 229, 16, 42, 172, 31, 149, 189, 248, 248, 83, 205, 171, 7, 64, 26, 175, 86, 66, 200, 170]), controller: 2djro-rwxn7-5argw-hxkzl-66bh2-3f4mq-enqaz-a6ecr-mm2sa-flyez-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764843000 }, hot_keys: [v2u7x-gtbhl-pj3pz-rdmrr-b5mnm-kypk2-jw4m3-ldtri-p4u4v-ruqwp-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764238200, spawn_at_timestamp_seconds: Some(1764843000), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 721317537, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764238200, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17058601735557687253 }, subaccount: Subaccount([40, 225, 146, 155, 24, 102, 181, 108, 10, 16, 151, 156, 229, 16, 42, 172, 31, 149, 189, 248, 248, 83, 205, 171, 7, 64, 26, 175, 86, 66, 200, 170]), controller: 2djro-rwxn7-5argw-hxkzl-66bh2-3f4mq-enqaz-a6ecr-mm2sa-flyez-vae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764843000 }, hot_keys: [v2u7x-gtbhl-pj3pz-rdmrr-b5mnm-kypk2-jw4m3-ldtri-p4u4v-ruqwp-7ae], cached_neuron_stake_e8s: 752694849, neuron_fees_e8s: 0, created_timestamp_seconds: 1764238200, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764238200, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17066655777326933848 }, subaccount: Subaccount([218, 219, 24, 112, 66, 147, 190, 145, 143, 208, 77, 176, 36, 126, 149, 180, 106, 63, 154, 184, 45, 120, 108, 22, 17, 38, 19, 239, 200, 149, 0, 168]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 49040271842, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17066655777326933848 }, subaccount: Subaccount([218, 219, 24, 112, 66, 147, 190, 145, 143, 208, 77, 176, 36, 126, 149, 180, 106, 63, 154, 184, 45, 120, 108, 22, 17, 38, 19, 239, 200, 149, 0, 168]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 51173523667, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17094317543342366753 }, subaccount: Subaccount([119, 19, 18, 86, 255, 89, 223, 235, 228, 33, 21, 109, 213, 102, 149, 44, 202, 54, 189, 86, 236, 234, 72, 97, 98, 127, 42, 193, 242, 33, 88, 43]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958087 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353287, spawn_at_timestamp_seconds: Some(1764958087), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499064, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353287, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17094317543342366753 }, subaccount: Subaccount([119, 19, 18, 86, 255, 89, 223, 235, 228, 33, 21, 109, 213, 102, 149, 44, 202, 54, 189, 86, 236, 234, 72, 97, 98, 127, 42, 193, 242, 33, 88, 43]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958087 }, hot_keys: [], cached_neuron_stake_e8s: 1113935273, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353287, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353287, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17099925523162881050 }, subaccount: Subaccount([105, 191, 25, 99, 114, 252, 82, 186, 125, 169, 120, 124, 138, 122, 128, 49, 140, 201, 22, 31, 144, 152, 11, 58, 84, 128, 251, 109, 152, 198, 166, 50]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302179 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697379, spawn_at_timestamp_seconds: Some(1765302179), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 5: Followees { followees: [NeuronId { id: 27 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 255914256684, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697379, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17099925523162881050 }, subaccount: Subaccount([105, 191, 25, 99, 114, 252, 82, 186, 125, 169, 120, 124, 138, 122, 128, 49, 140, 201, 22, 31, 144, 152, 11, 58, 84, 128, 251, 109, 152, 198, 166, 50]), controller: 3xugf-a7nqj-43j37-ai2yf-pd4so-cksgd-mhnwd-qfrxn-rt4jh-iu2rf-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302179 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, v27ow-z5s6a-ebbmj-tmtsi-vzppt-khckf-hn5pv-lfkee-xsauq-7yn5b-4qe], cached_neuron_stake_e8s: 267046526849, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697379, spawn_at_timestamp_seconds: None, followees: {5: Followees { followees: [NeuronId { id: 27 }] }, 2: Followees { followees: [NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 10: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 6: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 9013456205391096227 }] }, 17: Followees { followees: [NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 9013456205391096227 }] }, 9: Followees { followees: [NeuronId { id: 27 }] }, 16: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697379, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17129209575158604405 }, subaccount: Subaccount([157, 154, 241, 71, 109, 25, 29, 10, 88, 128, 52, 27, 36, 99, 3, 0, 207, 166, 100, 194, 174, 199, 103, 56, 114, 70, 208, 76, 247, 217, 6, 188]), controller: lqmzt-5nrui-hcqn6-vz5vj-wnps5-asfzj-h6kbm-zgvvq-ozmus-vm5m6-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764933139 }, hot_keys: [yg4qk-lvsxt-jyetu-qtmde-oqijl-hwlis-vrwpf-irfzm-d6scp-xkcrc-lqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764328339, spawn_at_timestamp_seconds: Some(1764933139), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 16122208542864232355 }, NeuronId { id: 33138099823745946 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 130583003121, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764328339, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17129209575158604405 }, subaccount: Subaccount([157, 154, 241, 71, 109, 25, 29, 10, 88, 128, 52, 27, 36, 99, 3, 0, 207, 166, 100, 194, 174, 199, 103, 56, 114, 70, 208, 76, 247, 217, 6, 188]), controller: lqmzt-5nrui-hcqn6-vz5vj-wnps5-asfzj-h6kbm-zgvvq-ozmus-vm5m6-3qe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764933139 }, hot_keys: [yg4qk-lvsxt-jyetu-qtmde-oqijl-hwlis-vrwpf-irfzm-d6scp-xkcrc-lqe], cached_neuron_stake_e8s: 136263363756, neuron_fees_e8s: 0, created_timestamp_seconds: 1764328339, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 33138099823745946 }, NeuronId { id: 16122208542864232355 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 16122208542864232355 }, NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764328339, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17227050733047933305 }, subaccount: Subaccount([192, 132, 13, 244, 189, 112, 242, 244, 131, 127, 180, 202, 44, 251, 215, 228, 53, 124, 246, 51, 55, 135, 191, 235, 211, 238, 119, 34, 56, 4, 145, 73]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 20262744037, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17227050733047933305 }, subaccount: Subaccount([192, 132, 13, 244, 189, 112, 242, 244, 131, 127, 180, 202, 44, 251, 215, 228, 53, 124, 246, 51, 55, 135, 191, 235, 211, 238, 119, 34, 56, 4, 145, 73]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 21144173402, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17259145735053103623 }, subaccount: Subaccount([108, 87, 84, 117, 70, 47, 215, 117, 108, 233, 80, 19, 194, 198, 217, 48, 135, 115, 165, 216, 147, 8, 71, 77, 225, 133, 111, 151, 98, 130, 53, 132]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959016 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354216, spawn_at_timestamp_seconds: Some(1764959016), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 853848676, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354216, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17259145735053103623 }, subaccount: Subaccount([108, 87, 84, 117, 70, 47, 215, 117, 108, 233, 80, 19, 194, 198, 217, 48, 135, 115, 165, 216, 147, 8, 71, 77, 225, 133, 111, 151, 98, 130, 53, 132]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764959016 }, hot_keys: [], cached_neuron_stake_e8s: 890991093, neuron_fees_e8s: 0, created_timestamp_seconds: 1764354216, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764354216, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17282241792371377894 }, subaccount: Subaccount([143, 114, 36, 75, 170, 185, 114, 203, 168, 86, 205, 246, 12, 252, 209, 236, 94, 149, 88, 226, 210, 51, 56, 36, 207, 247, 108, 173, 195, 254, 41, 222]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217626 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612826, spawn_at_timestamp_seconds: Some(1765217626), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 630292769, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612826, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17282241792371377894 }, subaccount: Subaccount([143, 114, 36, 75, 170, 185, 114, 203, 168, 86, 205, 246, 12, 252, 209, 236, 94, 149, 88, 226, 210, 51, 56, 36, 207, 247, 108, 173, 195, 254, 41, 222]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217626 }, hot_keys: [], cached_neuron_stake_e8s: 657710504, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612826, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612826, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17288631863412960562 }, subaccount: Subaccount([210, 35, 149, 15, 236, 88, 81, 100, 233, 240, 129, 36, 79, 125, 157, 162, 217, 143, 0, 78, 22, 102, 172, 146, 128, 90, 67, 20, 92, 143, 217, 220]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013508 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408708, spawn_at_timestamp_seconds: Some(1765013508), followees: {14: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 428687636340283207 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 428687636340283207 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 858316412999, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408708, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17288631863412960562 }, subaccount: Subaccount([210, 35, 149, 15, 236, 88, 81, 100, 233, 240, 129, 36, 79, 125, 157, 162, 217, 143, 0, 78, 22, 102, 172, 146, 128, 90, 67, 20, 92, 143, 217, 220]), controller: 4jnqx-dd4ig-arbei-iuaue-mmsam-flukc-c5upm-7gseu-4jlqk-yy2ri-uae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765013508 }, hot_keys: [hik2h-hoo5j-4wb4n-ycq52-xpkqp-aqio3-eplrs-mnubw-fnjsj-gjlcu-yae], cached_neuron_stake_e8s: 895653176964, neuron_fees_e8s: 0, created_timestamp_seconds: 1764408708, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 2649066124191664356 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 428687636340283207 }] }, 14: Followees { followees: [NeuronId { id: 5553849921138062661 }, NeuronId { id: 2649066124191664356 }, NeuronId { id: 428687636340283207 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764408708, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17336640109249920795 }, subaccount: Subaccount([145, 88, 161, 157, 76, 142, 224, 96, 211, 245, 229, 178, 161, 204, 173, 5, 135, 38, 245, 154, 64, 106, 94, 101, 150, 226, 80, 63, 59, 169, 68, 45]), controller: 5yvdx-vlngf-gl4z2-7ymoo-7bqyo-32h3z-tdrjy-dvkwz-mpate-sqdhd-kae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765219073 }, hot_keys: [gqt32-gmht2-4j6yu-zryfc-b7pgj-glyzf-5rp72-porqj-suxa3-i6lhg-wae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764614273, spawn_at_timestamp_seconds: Some(1765219073), followees: {10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 9: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 3: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 6: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 158559358, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764614273, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17336640109249920795 }, subaccount: Subaccount([145, 88, 161, 157, 76, 142, 224, 96, 211, 245, 229, 178, 161, 204, 173, 5, 135, 38, 245, 154, 64, 106, 94, 101, 150, 226, 80, 63, 59, 169, 68, 45]), controller: 5yvdx-vlngf-gl4z2-7ymoo-7bqyo-32h3z-tdrjy-dvkwz-mpate-sqdhd-kae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765219073 }, hot_keys: [gqt32-gmht2-4j6yu-zryfc-b7pgj-glyzf-5rp72-porqj-suxa3-i6lhg-wae], cached_neuron_stake_e8s: 165456690, neuron_fees_e8s: 0, created_timestamp_seconds: 1764614273, spawn_at_timestamp_seconds: None, followees: {3: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 10: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 9: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }] }, 6: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764614273, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17349526472022924507 }, subaccount: Subaccount([159, 154, 41, 6, 239, 147, 11, 42, 102, 37, 201, 170, 64, 42, 53, 141, 19, 227, 84, 228, 165, 143, 175, 134, 232, 192, 239, 207, 33, 33, 76, 93]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252829 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648029, spawn_at_timestamp_seconds: Some(1765252829), followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 179980893, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648029, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17349526472022924507 }, subaccount: Subaccount([159, 154, 41, 6, 239, 147, 11, 42, 102, 37, 201, 170, 64, 42, 53, 141, 19, 227, 84, 228, 165, 143, 175, 134, 232, 192, 239, 207, 33, 33, 76, 93]), controller: 5aluq-2qbtu-qqdud-inabr-rhtm7-dblwx-lchod-tlla7-sgmf6-ira5o-lae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765252829 }, hot_keys: [aecns-4xw6z-k7qkr-nsxno-avlke-brmuk-36zii-h3hr2-yryx3-iwzai-dqe], cached_neuron_stake_e8s: 187810061, neuron_fees_e8s: 0, created_timestamp_seconds: 1764648029, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 0: Followees { followees: [NeuronId { id: 4966884161088437903 }] }, 4: Followees { followees: [NeuronId { id: 4966884161088437903 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764648029, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17446724803981617533 }, subaccount: Subaccount([98, 98, 109, 105, 225, 99, 51, 197, 60, 189, 105, 108, 9, 11, 128, 2, 120, 106, 95, 38, 193, 163, 228, 177, 146, 238, 198, 188, 58, 187, 202, 74]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 80761398267, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17446724803981617533 }, subaccount: Subaccount([98, 98, 109, 105, 225, 99, 51, 197, 60, 189, 105, 108, 9, 11, 128, 2, 120, 106, 95, 38, 193, 163, 228, 177, 146, 238, 198, 188, 58, 187, 202, 74]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 84274519091, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17485994057941770783 }, subaccount: Subaccount([68, 211, 9, 22, 37, 61, 116, 213, 156, 55, 191, 5, 10, 168, 14, 38, 41, 154, 219, 34, 237, 209, 250, 166, 207, 202, 85, 15, 74, 17, 10, 105]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302378 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, cc3qx-wq5bo-bealj-rjhth-lpnmr-44ukx-reodr-hk2nr-wk4va-c7gms-7ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697578, spawn_at_timestamp_seconds: Some(1765302378), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 8386195507, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697578, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17485994057941770783 }, subaccount: Subaccount([68, 211, 9, 22, 37, 61, 116, 213, 156, 55, 191, 5, 10, 168, 14, 38, 41, 154, 219, 34, 237, 209, 250, 166, 207, 202, 85, 15, 74, 17, 10, 105]), controller: 3liic-gaopo-5canl-qvz3j-2yd4d-5stuw-n7tam-3kx55-sximk-m3wry-2ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765302378 }, hot_keys: [ujszi-xic4g-vwnse-qpaqj-ybjvs-bfosw-qnzrt-atp4z-sovvc-4i4ak-wqe, cc3qx-wq5bo-bealj-rjhth-lpnmr-44ukx-reodr-hk2nr-wk4va-c7gms-7ae], cached_neuron_stake_e8s: 8750995011, neuron_fees_e8s: 0, created_timestamp_seconds: 1764697578, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }] }, 0: Followees { followees: [NeuronId { id: 27 }] }, 14: Followees { followees: [NeuronId { id: 27 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764697578, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17659015426120349398 }, subaccount: Subaccount([164, 231, 238, 134, 196, 252, 89, 211, 99, 179, 23, 25, 234, 31, 110, 248, 240, 248, 51, 151, 115, 188, 92, 230, 3, 123, 42, 189, 31, 129, 42, 245]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225132 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620332, spawn_at_timestamp_seconds: Some(1765225132), followees: {14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 33439145575, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620332, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17659015426120349398 }, subaccount: Subaccount([164, 231, 238, 134, 196, 252, 89, 211, 99, 179, 23, 25, 234, 31, 110, 248, 240, 248, 51, 151, 115, 188, 92, 230, 3, 123, 42, 189, 31, 129, 42, 245]), controller: v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765225132 }, hot_keys: [v7cc2-wbjf7-dloyx-43km2-ive2v-qcyno-edull-b4c73-jdllb-haoqj-7ae, ivgab-w5np6-dpqiq-2kg4a-vdwuv-djtcn-oqc34-sm67r-xapbd-gzxxf-6qe], cached_neuron_stake_e8s: 34893748407, neuron_fees_e8s: 0, created_timestamp_seconds: 1764620332, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 13538714184009896865 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764620332, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 17870818099694821327 }, subaccount: Subaccount([245, 183, 89, 228, 235, 9, 183, 25, 107, 65, 208, 179, 4, 149, 65, 111, 51, 241, 138, 29, 2, 170, 175, 50, 23, 247, 100, 63, 24, 116, 158, 173]), controller: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765287767 }, hot_keys: [qfn2j-qunzz-kyytz-eratg-ksxjx-b2a2j-stwvc-c7z6w-gfe5m-2fup6-oae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764682967, spawn_at_timestamp_seconds: Some(1765287767), followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 433047053926084807 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 27 }, NeuronId { id: 12093733865587997066 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 433047053926084807 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 285465722408, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764682967, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 17870818099694821327 }, subaccount: Subaccount([245, 183, 89, 228, 235, 9, 183, 25, 107, 65, 208, 179, 4, 149, 65, 111, 51, 241, 138, 29, 2, 170, 175, 50, 23, 247, 100, 63, 24, 116, 158, 173]), controller: rbn2y-6vfsb-gv35j-4cyvy-pzbdu-e5aum-jzjg6-5b4n5-vuguf-ycubq-zae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765287767 }, hot_keys: [qfn2j-qunzz-kyytz-eratg-ksxjx-b2a2j-stwvc-c7z6w-gfe5m-2fup6-oae], cached_neuron_stake_e8s: 297883481332, neuron_fees_e8s: 0, created_timestamp_seconds: 1764682967, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 433047053926084807 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 433047053926084807 }] }, 0: Followees { followees: [NeuronId { id: 28 }, NeuronId { id: 433047053926084807 }, NeuronId { id: 27 }, NeuronId { id: 12093733865587997066 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764682967, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18006973952758011322 }, subaccount: Subaccount([61, 62, 208, 241, 204, 46, 1, 117, 60, 62, 247, 113, 221, 116, 229, 169, 26, 55, 29, 43, 205, 15, 200, 247, 97, 222, 215, 21, 36, 253, 195, 153]), controller: dt5rl-crwvb-2tim6-czyfn-5wdn5-fopzt-e5sse-4nldz-2xx4y-6aiw6-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764962282 }, hot_keys: [eqpd6-h4ngz-xa4mo-wkiwb-dhziw-esnjo-j3nrj-j2aoo-eirl7-6ja4i-uqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764357482, spawn_at_timestamp_seconds: Some(1764962282), followees: {3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 7766735497505253681 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 10843833286193887500 }, NeuronId { id: 11053086394920719168 }, NeuronId { id: 12860062727199510685 }] }, 6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 114907618, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764357482, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18006973952758011322 }, subaccount: Subaccount([61, 62, 208, 241, 204, 46, 1, 117, 60, 62, 247, 113, 221, 116, 229, 169, 26, 55, 29, 43, 205, 15, 200, 247, 97, 222, 215, 21, 36, 253, 195, 153]), controller: dt5rl-crwvb-2tim6-czyfn-5wdn5-fopzt-e5sse-4nldz-2xx4y-6aiw6-yae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764962282 }, hot_keys: [eqpd6-h4ngz-xa4mo-wkiwb-dhziw-esnjo-j3nrj-j2aoo-eirl7-6ja4i-uqe], cached_neuron_stake_e8s: 119906099, neuron_fees_e8s: 0, created_timestamp_seconds: 1764357482, spawn_at_timestamp_seconds: None, followees: {6: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 7: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }, NeuronId { id: 5944070935127277981 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 6362091663310642824 }, NeuronId { id: 7766735497505253681 }, NeuronId { id: 8777656085298269769 }, NeuronId { id: 8959053254051540391 }, NeuronId { id: 10843833286193887500 }, NeuronId { id: 11053086394920719168 }, NeuronId { id: 12860062727199510685 }] }, 2: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 8: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 9: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 10: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 3: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 13: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 12: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 14: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 5: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }, 4: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 28 }, NeuronId { id: 55674167450360693 }, NeuronId { id: 428687636340283207 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5728549712200490799 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764357482, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18141590820002839027 }, subaccount: Subaccount([48, 157, 189, 95, 138, 88, 206, 114, 119, 159, 57, 66, 39, 73, 152, 193, 85, 90, 74, 193, 152, 156, 244, 88, 4, 61, 246, 239, 20, 141, 53, 156]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217446 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612646, spawn_at_timestamp_seconds: Some(1765217446), followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639695531, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612646, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18141590820002839027 }, subaccount: Subaccount([48, 157, 189, 95, 138, 88, 206, 114, 119, 159, 57, 66, 39, 73, 152, 193, 85, 90, 74, 193, 152, 156, 244, 88, 4, 61, 246, 239, 20, 141, 53, 156]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765217446 }, hot_keys: [], cached_neuron_stake_e8s: 667522286, neuron_fees_e8s: 0, created_timestamp_seconds: 1764612646, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764612646, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18219422870474756369 }, subaccount: Subaccount([90, 85, 139, 214, 68, 112, 11, 116, 115, 117, 90, 223, 73, 28, 151, 47, 19, 211, 120, 120, 83, 70, 56, 88, 109, 165, 208, 207, 200, 235, 80, 174]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218041 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613241, spawn_at_timestamp_seconds: Some(1765218041), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 639278221, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613241, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18219422870474756369 }, subaccount: Subaccount([90, 85, 139, 214, 68, 112, 11, 116, 115, 117, 90, 223, 73, 28, 151, 47, 19, 211, 120, 120, 83, 70, 56, 88, 109, 165, 208, 207, 200, 235, 80, 174]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765218041 }, hot_keys: [], cached_neuron_stake_e8s: 667086823, neuron_fees_e8s: 0, created_timestamp_seconds: 1764613241, spawn_at_timestamp_seconds: None, followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764613241, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18284455285193857013 }, subaccount: Subaccount([111, 76, 21, 71, 62, 192, 158, 69, 68, 200, 5, 28, 178, 37, 188, 140, 218, 180, 84, 176, 238, 76, 87, 62, 34, 25, 154, 47, 133, 9, 76, 250]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957787 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352987, spawn_at_timestamp_seconds: Some(1764957787), followees: {4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067500642, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352987, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18284455285193857013 }, subaccount: Subaccount([111, 76, 21, 71, 62, 192, 158, 69, 68, 200, 5, 28, 178, 37, 188, 140, 218, 180, 84, 176, 238, 76, 87, 62, 34, 25, 154, 47, 133, 9, 76, 250]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957787 }, hot_keys: [], cached_neuron_stake_e8s: 1113936919, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352987, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352987, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18318394833900340048 }, subaccount: Subaccount([105, 2, 218, 17, 201, 158, 92, 190, 93, 10, 160, 180, 240, 226, 73, 90, 132, 13, 40, 125, 88, 254, 21, 13, 167, 195, 54, 65, 74, 49, 16, 54]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958402 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353602, spawn_at_timestamp_seconds: Some(1764958402), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 1067499733, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353602, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18318394833900340048 }, subaccount: Subaccount([105, 2, 218, 17, 201, 158, 92, 190, 93, 10, 160, 180, 240, 226, 73, 90, 132, 13, 40, 125, 88, 254, 21, 13, 167, 195, 54, 65, 74, 49, 16, 54]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764958402 }, hot_keys: [], cached_neuron_stake_e8s: 1113935971, neuron_fees_e8s: 0, created_timestamp_seconds: 1764353602, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764353602, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18320921267905866513 }, subaccount: Subaccount([92, 112, 82, 12, 207, 250, 5, 171, 178, 20, 214, 73, 38, 235, 245, 58, 17, 142, 249, 171, 166, 70, 166, 13, 149, 241, 243, 148, 155, 84, 18, 146]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957622 }, hot_keys: [], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352822, spawn_at_timestamp_seconds: Some(1764957622), followees: {0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 882562647, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352822, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18320921267905866513 }, subaccount: Subaccount([92, 112, 82, 12, 207, 250, 5, 171, 178, 20, 214, 73, 38, 235, 245, 58, 17, 142, 249, 171, 166, 70, 166, 13, 149, 241, 243, 148, 155, 84, 18, 146]), controller: dies2-up6x4-i42et-avcop-xvl3v-it2mm-hqeuj-j4hyu-vz7wl-ewndz-dae, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764957622 }, hot_keys: [], cached_neuron_stake_e8s: 920954122, neuron_fees_e8s: 0, created_timestamp_seconds: 1764352822, spawn_at_timestamp_seconds: None, followees: {14: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 0: Followees { followees: [NeuronId { id: 27 }, NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }, 4: Followees { followees: [NeuronId { id: 5967494994762486275 }, NeuronId { id: 4966884161088437903 }, NeuronId { id: 5553849921138062661 }, NeuronId { id: 14231996777861930328 }, NeuronId { id: 1767081890685465163 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764352822, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18404018051990318126 }, subaccount: Subaccount([211, 81, 234, 182, 241, 196, 33, 40, 146, 117, 144, 48, 14, 110, 151, 37, 38, 114, 11, 211, 154, 126, 50, 50, 36, 116, 251, 105, 64, 13, 16, 112]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: Some(1765106856), followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 14: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 387054884478, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18404018051990318126 }, subaccount: Subaccount([211, 81, 234, 182, 241, 196, 33, 40, 146, 117, 144, 48, 14, 110, 151, 37, 38, 114, 11, 211, 154, 126, 50, 50, 36, 116, 251, 105, 64, 13, 16, 112]), controller: rdwk2-noc2n-qaxh6-3alc4-uvhgt-dupge-kkoq3-v3brf-6afky-mui7j-lqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1765106856 }, hot_keys: [e4i6y-74pmg-n665j-m5nx4-4dnqb-wnfvr-76fzu-jyjci-ufrvm-22vrg-4ae], cached_neuron_stake_e8s: 403891771952, neuron_fees_e8s: 0, created_timestamp_seconds: 1764502056, spawn_at_timestamp_seconds: None, followees: {0: Followees { followees: [NeuronId { id: 27 }] }, 4: Followees { followees: [NeuronId { id: 33138099823745946 }] }, 14: Followees { followees: [NeuronId { id: 33138099823745946 }] }}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764502056, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawning neuron: Neuron { id: NeuronId { id: 18428280288635846386 }, subaccount: Subaccount([64, 192, 182, 26, 219, 202, 185, 192, 146, 100, 82, 106, 30, 181, 39, 173, 12, 21, 91, 163, 100, 140, 231, 238, 115, 104, 103, 147, 149, 210, 192, 79]), controller: 4qqfn-kwsnf-dcuk4-b7bxo-yogcr-u2uqi-kre46-52wuv-urs6i-cew4l-uqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764942580 }, hot_keys: [g5nx7-kvxp7-7u3sw-mdegz-x2sdq-u7zti-gltzy-36wk6-qve33-jtx7m-nqe], cached_neuron_stake_e8s: 0, neuron_fees_e8s: 0, created_timestamp_seconds: 1764337780, spawn_at_timestamp_seconds: Some(1764942580), followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 54306963327, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764337780, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Performing ledger update. +2026-01-03 20:36:28.948932921 UTC: [Canister rrkah-fqaaa-aaaaa-aaaaq-cai] [Governance] Spawned neuron: Neuron { id: NeuronId { id: 18428280288635846386 }, subaccount: Subaccount([64, 192, 182, 26, 219, 202, 185, 192, 146, 100, 82, 106, 30, 181, 39, 173, 12, 21, 91, 163, 100, 140, 231, 238, 115, 104, 103, 147, 149, 210, 192, 79]), controller: 4qqfn-kwsnf-dcuk4-b7bxo-yogcr-u2uqi-kre46-52wuv-urs6i-cew4l-uqe, dissolve_state_and_age: DissolvingOrDissolved { when_dissolved_timestamp_seconds: 1764942580 }, hot_keys: [g5nx7-kvxp7-7u3sw-mdegz-x2sdq-u7zti-gltzy-36wk6-qve33-jtx7m-nqe], cached_neuron_stake_e8s: 56669316231, neuron_fees_e8s: 0, created_timestamp_seconds: 1764337780, spawn_at_timestamp_seconds: None, followees: {}, recent_ballots: [], kyc_verified: true, transfer: None, maturity_e8s_equivalent: 0, staked_maturity_e8s_equivalent: None, auto_stake_maturity: None, not_for_profit: false, joined_community_fund_timestamp_seconds: None, neuron_type: None, visibility: Private, known_neuron_data: None, voting_power_refreshed_timestamp_seconds: 1764337780, recent_ballots_next_entry_index: Some(0), maturity_disbursements_in_progress: [] }. Ledger update performed. +2026-01-03 20:37:01.948932921 UTC: [Canister rkp4c-7iaaa-aaaaa-aaaca-cai] [cycles] Failed to retrieve rate from exchange rate canister: Code: 3 Message: Canister uf6dk-hyaaa-aaaaq-qaaaq-cai not found +[98 / 99] Testing //rs/nns/integration_tests:registry_migration; 335s remote-cache, local \ No newline at end of file diff --git a/rs/nns/integration_tests/src/lib.rs b/rs/nns/integration_tests/src/lib.rs index cb1e105e34f4..555d6a1ae355 100644 --- a/rs/nns/integration_tests/src/lib.rs +++ b/rs/nns/integration_tests/src/lib.rs @@ -30,6 +30,9 @@ mod cycles_minting_canister_with_exchange_rate_canister; #[cfg(test)] mod node_provider_remuneration; +#[cfg(test)] +mod registry_migration; + #[cfg(test)] mod governance_get_build_metadata_test; diff --git a/rs/nns/integration_tests/src/registry_migration.rs b/rs/nns/integration_tests/src/registry_migration.rs new file mode 100644 index 000000000000..836d555b0926 --- /dev/null +++ b/rs/nns/integration_tests/src/registry_migration.rs @@ -0,0 +1,404 @@ +// TODO(DRE-6385): Remove this test once PBR is fully rolled out to mainnet. +use candid::{Decode, Encode}; +use futures::FutureExt; +use ic_base_types::{CanisterId, PrincipalId}; +use ic_cdk::api::call::call_raw; +use ic_crypto_sha2::Sha256; +use ic_nervous_system_clients::canister_status::CanisterStatusType; +use ic_nns_common::pb::v1::NeuronId; +use ic_nns_constants::{ + GOVERNANCE_CANISTER_ID, NODE_REWARDS_CANISTER_ID, REGISTRY_CANISTER_ID, ROOT_CANISTER_ID, +}; +use ic_nns_governance_api::{ + ListNodeProvidersResponse, MonthlyNodeProviderRewards, NetworkEconomics, Vote, + VotingPowerEconomics, +}; +use ic_nns_test_utils::state_test_helpers::{ + get_canister_status, manage_network_economics, nns_cast_vote, nns_create_super_powerful_neuron, + nns_propose_upgrade_nns_canister, query, query_with_sender, + wait_for_canister_upgrade_to_succeed, +}; +use ic_nns_test_utils::state_test_helpers::{ + nns_get_most_recent_monthly_node_provider_rewards, nns_wait_for_proposal_execution, + scrape_metrics, +}; +use ic_nns_test_utils_golden_nns_state::new_state_machine_with_golden_nns_state_or_panic; +use ic_node_rewards_canister_api::provider_rewards_calculation::GetNodeProvidersRewardsCalculationRequest; +use ic_protobuf::registry::dc::v1::DataCenterRecord; +use ic_protobuf::registry::node_operator::v1::NodeOperatorRecord; +use ic_protobuf::state::queues::v1::response; +use ic_registry_canister_api::GetNodeProvidersMonthlyXdrRewardsRequest; +use ic_registry_keys::make_node_operator_record_key; +use ic_registry_transport::pb::v1::{ + RegistryGetValueRequest, high_capacity_registry_get_value_response, +}; +use ic_registry_transport::{ + Error, dechunkify_get_value_response_content, deserialize_get_value_response, + serialize_get_value_request, +}; +use ic_state_machine_tests::StateMachine; +use icp_ledger::Tokens; +use itertools::Itertools; +use prost::Message; +use std::cmp::PartialEq; +use std::collections::BTreeMap; +use std::fmt::Display; +use std::{ + env, + fmt::{Debug, Formatter}, + fs, + str::FromStr, +}; + +struct RegistryCanisterUpdate { + nns_canister_name: String, + canister_id: CanisterId, + environment_variable_name: &'static str, + wasm_path: String, + wasm_content: Vec, + wasm_hash: [u8; 32], +} + +impl RegistryCanisterUpdate { + fn new(nns_canister_name: &str) -> Self { + #[rustfmt::skip] + let (canister_id, environment_variable_name) = match nns_canister_name { + "governance" => (GOVERNANCE_CANISTER_ID, "GOVERNANCE_CANISTER_WASM_PATH"), + "registry" => (REGISTRY_CANISTER_ID, "REGISTRY_CANISTER_WASM_PATH"), + _ => panic!("Not a known NNS canister type: {nns_canister_name}",), + }; + + let nns_canister_name = nns_canister_name.to_string(); + let wasm_path = env::var(environment_variable_name) + .unwrap_or_else(|err| panic!("{err}: {environment_variable_name}",)); + let wasm_content = fs::read(&wasm_path).unwrap(); + let wasm_hash = Sha256::hash(&wasm_content); + + Self { + nns_canister_name, + canister_id, + environment_variable_name, + wasm_path, + wasm_content, + wasm_hash, + } + } + + pub fn update( + &self, + state_machine: &StateMachine, + neuron_controller: PrincipalId, + neuron_id: NeuronId, + ) { + println!("\nCurrent canister: {}", self.nns_canister_name); + + let controller = PrincipalId::from(ROOT_CANISTER_ID); + + // Assert that the upgrade we are about to perform would + // actually change the code in the canister. (This is "just" a + // pre-flight check). + let status_result = get_canister_status( + state_machine, + controller, + self.canister_id, + CanisterId::ic_00(), // callee: management (virtual) canister. + ) + .unwrap(); + assert_eq!( + status_result.status, + CanisterStatusType::Running, + "{status_result:#?}", + ); + assert_ne!( + status_result.module_hash.as_ref().unwrap(), + &self.wasm_hash, + "Current code is the same as what is running in mainnet?!\n{status_result:#?}", + ); + println!("Proposing to upgrade NNS {}", self.nns_canister_name); + + let proposal_id = nns_propose_upgrade_nns_canister( + state_machine, + neuron_controller, + neuron_id, + self.canister_id, + self.wasm_content.clone(), + vec![], + ); + + // Impersonate some public neurons to vote on the proposal. Note that we do not + // check whether votes succeed, as the governance upgrade can start at any point + // which will make the canister unresponsive. + vote_yes_with_well_known_public_neurons(state_machine, proposal_id.id); + + // Verify result(s): In a short while, the canister should + // be running the new code. + wait_for_canister_upgrade_to_succeed( + state_machine, + self.canister_id, + &self.wasm_hash, + controller, + ); + println!( + "Attempt to upgrade {} was successful.", + self.nns_canister_name + ); + } +} + +impl Debug for RegistryCanisterUpdate { + fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result { + let Self { + nns_canister_name, + canister_id, + environment_variable_name, + wasm_path, + wasm_hash, + wasm_content: _, + } = self; + + let wasm_hash = wasm_hash.map(|element| format!("{element:02X}")).join(""); + let wasm_hash = &wasm_hash; + + formatter + .debug_struct("NnsCanisterUpgrade") + .field("nns_canister_name", nns_canister_name) + .field("wasm_path", wasm_path) + .field("wasm_hash", wasm_hash) + .field("canister_id", canister_id) + .field("environment_variable_name", environment_variable_name) + .finish() + } +} + +/// Returns a list of well-known public neurons. Impersonating these neurons to vote a certain way +/// should be able to make the proposals pass instantly. +fn get_well_known_public_neurons() -> Vec<(NeuronId, PrincipalId)> { + [ + ( + 27, + "4vnki-cqaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aae", + ), + ( + 28, + "4vnki-cqaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aaaaa-aae", + ), + ] + .into_iter() + .map(|(id, principal_str)| { + let id = NeuronId { id }; + let principal = PrincipalId::from_str(principal_str).unwrap(); + (id, principal) + }) + .collect() +} + +fn vote_yes_with_well_known_public_neurons(state_machine: &StateMachine, proposal_id: u64) { + for (voter_neuron_id, voter_controller) in get_well_known_public_neurons() { + // Note that the voting can fail if the proposal already reaches absolute + // majority and the NNS Governance starts to upgrade. + let _ = nns_cast_vote( + state_machine, + voter_controller, + voter_neuron_id, + proposal_id, + Vote::Yes, + ); + } +} + +#[test] +fn test_registry_migration_with_golden_state() { + let nns_canister_upgrade_sequence: Vec = vec![ + RegistryCanisterUpdate::new("governance"), + RegistryCanisterUpdate::new("registry"), + ]; + + // Step 1: Prepare the world + + // Step 1.1: Load golden nns state into a StateMachine. + let state_machine = new_state_machine_with_golden_nns_state_or_panic(); + + // Step 1.2: Create a super powerful Neuron. + println!("Creating super powerful Neuron."); + let neuron_controller = PrincipalId::new_self_authenticating(&[1, 2, 3, 4]); + let neuron_id = nns_create_super_powerful_neuron( + &state_machine, + neuron_controller, + // Note that this number is chosen so that such an increase in voting power does not reach + // 50% of the current voting power, which would be considered a spike and triggers a defense + // mechanism designed to prevent a sudden takeover of the NNS. + Tokens::from_tokens(100_000_000).unwrap(), + ); + println!("Done creating super powerful Neuron."); + + // Step 1.3: Modify Network Economics so that the new neuron can vote. + let proposal_id = manage_network_economics( + &state_machine, + NetworkEconomics { + voting_power_economics: Some(VotingPowerEconomics { + neuron_minimum_dissolve_delay_to_vote_seconds: Some( + VotingPowerEconomics::DEFAULT_NEURON_MINIMUM_DISSOLVE_DELAY_TO_VOTE_SECONDS, + ), + ..Default::default() + }), + ..Default::default() + }, + neuron_controller, + neuron_id, + ); + vote_yes_with_well_known_public_neurons(&state_machine, proposal_id.id); + nns_wait_for_proposal_execution(&state_machine, proposal_id.id); + + let res = query_with_sender( + &state_machine, + REGISTRY_CANISTER_ID, + "get_node_providers_monthly_xdr_rewards", + Encode!(&GetNodeProvidersMonthlyXdrRewardsRequest { + registry_version: None, + }) + .unwrap(), + ) + .unwrap(); + + let principals_target: Vec = vec![ + "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", + "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", + "bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe", + "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", + "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", + ] + .into_iter() + .map(|s| PrincipalId::from_str(s).unwrap()) + .collect(); + + for target in principals_target { + let key = make_node_operator_record_key(target); + let (record, _) = + get_value::(&state_machine, &key.as_bytes().to_vec(), None) + .unwrap(); + + let operator = NodeOperator::try_from(record).unwrap(); + println!("Fetched NodeOperator key {}: {}", key, operator); + } +} + +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NodeOperator { + pub node_operator_principal_id: PrincipalId, + pub node_allowance: u64, + pub node_provider_principal_id: PrincipalId, + pub dc_id: String, + pub rewardable_nodes: std::collections::BTreeMap, + pub ipv6: Option, + pub max_rewardable_nodes: std::collections::BTreeMap, +} + +impl Display for NodeOperator { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + write!( + f, + "NodeOperator {{ node_operator_principal_id: {}, node_allowance: {}, node_provider_principal_id: {}, dc_id: {}, rewardable_nodes: {:?}, ipv6: {:?}, max_rewardable_nodes: {:?} }}", + self.node_operator_principal_id, + self.node_allowance, + self.node_provider_principal_id, + self.dc_id, + self.rewardable_nodes, + self.ipv6, + self.max_rewardable_nodes, + ) + } +} + +impl TryFrom for NodeOperator { + type Error = String; + + fn try_from(value: NodeOperatorRecord) -> Result { + Ok(NodeOperator { + node_operator_principal_id: PrincipalId::try_from( + value.node_operator_principal_id.clone(), + ) + .map_err(|e| format!("Failed to convert node_operator_principal_id: {}", e))?, + node_allowance: value.node_allowance, + node_provider_principal_id: PrincipalId::try_from( + value.node_provider_principal_id.clone(), + ) + .map_err(|e| format!("Failed to convert node_provider_principal_id: {}", e))?, + dc_id: value.dc_id, + rewardable_nodes: value.rewardable_nodes, + ipv6: value.ipv6, + max_rewardable_nodes: value.max_rewardable_nodes, + }) + } +} +fn fetch_all_node_operators_data(state_machine: &StateMachine) -> Vec { + query( + &state_machine, + GOVERNANCE_CANISTER_ID, + "list_node_providers", + Encode!().unwrap(), + ) + .map(|result| Decode!(&result, ListNodeProvidersResponse).unwrap()) + .unwrap() + .node_providers + .into_iter() + .map(|node_provider| { + let node_provider_id = node_provider.id.unwrap(); + let node_operators = query( + &state_machine, + REGISTRY_CANISTER_ID, + "get_node_operators_and_dcs_of_node_provider", + Encode!(&node_provider_id).unwrap(), + ) + .map(|result| { + Decode!( + &result, + Result, String> + ) + .unwrap() + }) + .unwrap() + .unwrap(); + + (node_provider_id, node_operators) + }) + .flat_map(|(np_id, records)| { + records + .into_iter() + .map(move |(_, operator_record)| operator_record.try_into().unwrap()) + }) + .collect() +} + +pub fn get_value( + state_machine: &StateMachine, + key: &[u8], + version: Option, +) -> Result<(T, u64), Error> { + let current_result: Vec = query( + state_machine, + REGISTRY_CANISTER_ID, + "get_value", + serialize_get_value_request(key.to_vec(), version).unwrap(), + ) + .unwrap(); + + let response = deserialize_get_value_response(current_result)?; + + let Some(content) = response.content else { + return Err(Error::MalformedMessage(format!( + "The `content` field of the get_value response is not populated (key = {key:?}).", + ))); + }; + + let content: Vec = match content { + high_capacity_registry_get_value_response::Content::Value(value) => value, + + _ => { + panic!("Unexpected content variant in high_capacity_registry_get_value_response"); + } + }; + + // Decode the value as proper type + let value = T::decode(content.as_slice()).unwrap(); + Ok((value, response.version)) +} diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index e0db9f460394..e80a645bc9ae 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -62,6 +62,7 @@ pub fn canister_post_upgrade( } fn fix_node_operators_corrupted(registry: &Registry) -> Vec { + ic_cdk::println!("Fixing corrupted Node Operator records..."); let create_node_operator_mutation = |principal_id_str: &str, modify_record: fn(&mut NodeOperatorRecord, PrincipalId)| @@ -99,55 +100,68 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { // 3nu7r - ujq4k ------------------------------------------------------------------------------- - if let Ok(mutation) = create_node_operator_mutation( + match create_node_operator_mutation( "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", |record, principal_id_key| { record.node_operator_principal_id = principal_id_key.to_vec(); - record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 19 }; + record.max_rewardable_nodes = btreemap! { + NodeRewardType::Type1dot1.to_string() => 19 + }; }, ) { - mutations.push(mutation); - }; + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for 3nu7r: {}", e), + } - if let Ok(mutation) = create_node_operator_mutation( + match create_node_operator_mutation( "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", |record, _| { - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 9 }; + record.rewardable_nodes = btreemap! { + NodeRewardType::Type1dot1.to_string() => 9 + }; }, ) { - mutations.push(mutation); + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for ujq4k: {}", e), } // bmlhw - spsu4 ------------------------------------------------------------------------------- - if let Ok(mutation) = create_node_operator_mutation( + match create_node_operator_mutation( "bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe", |record, principal_id_key| { record.node_operator_principal_id = principal_id_key.to_vec(); - record.max_rewardable_nodes = btreemap! { NodeRewardType::Type1.to_string() => 14 }; + record.max_rewardable_nodes = btreemap! { + NodeRewardType::Type1.to_string() => 14 + }; }, ) { - mutations.push(mutation); + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for bmlhw: {}", e), } - if let Ok(mutation) = create_node_operator_mutation( + match create_node_operator_mutation( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", |record, _| { - record.rewardable_nodes = btreemap! { NodeRewardType::Type1dot1.to_string() => 14 }; + record.rewardable_nodes = btreemap! { + NodeRewardType::Type1dot1.to_string() => 14 + }; }, ) { - mutations.push(mutation); + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for spsu4: {}", e), } // redpf --------------------------------------------------------------------------------------- - if let Ok(mutation) = create_node_operator_mutation( + match create_node_operator_mutation( "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", |record, principal_id_key| { record.node_operator_principal_id = principal_id_key.to_vec(); }, ) { - mutations.push(mutation); + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for redpf: {}", e), } mutations diff --git a/rs/registry/node_provider_rewards/src/lib.rs b/rs/registry/node_provider_rewards/src/lib.rs index 0efc64b0f03c..373d901f92d9 100644 --- a/rs/registry/node_provider_rewards/src/lib.rs +++ b/rs/registry/node_provider_rewards/src/lib.rs @@ -6,6 +6,8 @@ use ic_protobuf::registry::{ }; use logs::{LogEntry, RewardsPerNodeProviderLog}; use std::collections::{BTreeMap, HashMap}; +use std::fmt::{Display, Formatter}; + pub mod logs; #[derive(Debug, PartialEq)] @@ -14,6 +16,55 @@ pub struct RewardsPerNodeProvider { pub computation_log: BTreeMap, } +#[derive(Debug, Clone, PartialEq, Eq)] +pub struct NodeOperator { + pub node_operator_principal_id: PrincipalId, + pub node_allowance: u64, + pub node_provider_principal_id: PrincipalId, + pub dc_id: String, + pub rewardable_nodes: std::collections::BTreeMap, + pub ipv6: Option, + pub max_rewardable_nodes: std::collections::BTreeMap, +} + +impl Display for NodeOperator { + fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { + write!( + f, + "NodeOperator {{ node_operator_principal_id: {}, node_allowance: {}, node_provider_principal_id: {}, dc_id: {}, rewardable_nodes: {:?}, ipv6: {:?}, max_rewardable_nodes: {:?} }}", + self.node_operator_principal_id, + self.node_allowance, + self.node_provider_principal_id, + self.dc_id, + self.rewardable_nodes, + self.ipv6, + self.max_rewardable_nodes, + ) + } +} + +impl TryFrom for NodeOperator { + type Error = String; + + fn try_from(value: NodeOperatorRecord) -> Result { + Ok(NodeOperator { + node_operator_principal_id: PrincipalId::try_from( + value.node_operator_principal_id.clone(), + ) + .map_err(|e| format!("Failed to convert node_operator_principal_id: {}", e))?, + node_allowance: value.node_allowance, + node_provider_principal_id: PrincipalId::try_from( + value.node_provider_principal_id.clone(), + ) + .map_err(|e| format!("Failed to convert node_provider_principal_id: {}", e))?, + dc_id: value.dc_id, + rewardable_nodes: value.rewardable_nodes, + ipv6: value.ipv6, + max_rewardable_nodes: value.max_rewardable_nodes, + }) + } +} + pub fn calculate_rewards_v0( rewards_table: &NodeRewardsTable, node_operators: &[(String, NodeOperatorRecord)], @@ -28,6 +79,9 @@ pub fn calculate_rewards_v0( let mut computation_log = BTreeMap::new(); for (key_string, node_operator) in node_operators.iter() { + let str_no: NodeOperator = node_operator.clone().try_into()?; + ic_cdk::println!("node operator with key:{} {}", key_string, str_no); + let node_operator_id = PrincipalId::try_from(&node_operator.node_operator_principal_id) .map_err(|e| { format!( From 4daa4307f42da2875d40fc5db9df542ec90affdd Mon Sep 17 00:00:00 2001 From: Pietro Date: Thu, 4 Dec 2025 16:19:00 +0000 Subject: [PATCH 12/13] Add simulation --- .../src/registry_migration.rs | 97 +++---------------- .../canister/src/registry_lifecycle.rs | 30 +++--- 2 files changed, 32 insertions(+), 95 deletions(-) diff --git a/rs/nns/integration_tests/src/registry_migration.rs b/rs/nns/integration_tests/src/registry_migration.rs index 836d555b0926..eeee18551da7 100644 --- a/rs/nns/integration_tests/src/registry_migration.rs +++ b/rs/nns/integration_tests/src/registry_migration.rs @@ -1,22 +1,20 @@ // TODO(DRE-6385): Remove this test once PBR is fully rolled out to mainnet. use candid::{Decode, Encode}; -use futures::FutureExt; use ic_base_types::{CanisterId, PrincipalId}; -use ic_cdk::api::call::call_raw; use ic_crypto_sha2::Sha256; use ic_nervous_system_clients::canister_status::CanisterStatusType; +use ic_nervous_system_common::ONE_MONTH_SECONDS; use ic_nns_common::pb::v1::NeuronId; use ic_nns_constants::{ GOVERNANCE_CANISTER_ID, NODE_REWARDS_CANISTER_ID, REGISTRY_CANISTER_ID, ROOT_CANISTER_ID, }; use ic_nns_governance_api::{ - ListNodeProvidersResponse, MonthlyNodeProviderRewards, NetworkEconomics, Vote, - VotingPowerEconomics, + ListNodeProvidersResponse, MonthlyNodeProviderRewards, NetworkEconomics, ProposalActionRequest, + RewardNodeProviders, Vote, VotingPowerEconomics, }; use ic_nns_test_utils::state_test_helpers::{ get_canister_status, manage_network_economics, nns_cast_vote, nns_create_super_powerful_neuron, - nns_propose_upgrade_nns_canister, query, query_with_sender, - wait_for_canister_upgrade_to_succeed, + nns_propose_upgrade_nns_canister, query, wait_for_canister_upgrade_to_succeed, }; use ic_nns_test_utils::state_test_helpers::{ nns_get_most_recent_monthly_node_provider_rewards, nns_wait_for_proposal_execution, @@ -26,20 +24,9 @@ use ic_nns_test_utils_golden_nns_state::new_state_machine_with_golden_nns_state_ use ic_node_rewards_canister_api::provider_rewards_calculation::GetNodeProvidersRewardsCalculationRequest; use ic_protobuf::registry::dc::v1::DataCenterRecord; use ic_protobuf::registry::node_operator::v1::NodeOperatorRecord; -use ic_protobuf::state::queues::v1::response; -use ic_registry_canister_api::GetNodeProvidersMonthlyXdrRewardsRequest; -use ic_registry_keys::make_node_operator_record_key; -use ic_registry_transport::pb::v1::{ - RegistryGetValueRequest, high_capacity_registry_get_value_response, -}; -use ic_registry_transport::{ - Error, dechunkify_get_value_response_content, deserialize_get_value_response, - serialize_get_value_request, -}; use ic_state_machine_tests::StateMachine; use icp_ledger::Tokens; use itertools::Itertools; -use prost::Message; use std::cmp::PartialEq; use std::collections::BTreeMap; use std::fmt::Display; @@ -208,10 +195,8 @@ fn vote_yes_with_well_known_public_neurons(state_machine: &StateMachine, proposa #[test] fn test_registry_migration_with_golden_state() { - let nns_canister_upgrade_sequence: Vec = vec![ - RegistryCanisterUpdate::new("governance"), - RegistryCanisterUpdate::new("registry"), - ]; + let nns_canister_upgrade_sequence: Vec = + vec![RegistryCanisterUpdate::new("registry")]; // Step 1: Prepare the world @@ -249,36 +234,14 @@ fn test_registry_migration_with_golden_state() { vote_yes_with_well_known_public_neurons(&state_machine, proposal_id.id); nns_wait_for_proposal_execution(&state_machine, proposal_id.id); - let res = query_with_sender( - &state_machine, - REGISTRY_CANISTER_ID, - "get_node_providers_monthly_xdr_rewards", - Encode!(&GetNodeProvidersMonthlyXdrRewardsRequest { - registry_version: None, - }) - .unwrap(), - ) - .unwrap(); - - let principals_target: Vec = vec![ - "3nu7r-l6i5c-jlmhi-fmmhm-4wcw4-ndlwb-yovrx-o3wxh-suzew-hvbbo-7qe", - "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", - "bmlhw-kinr6-7cyv5-3o3v6-ic6tw-pnzk3-jycod-6d7sw-owaft-3b6k3-kqe", - "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", - "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", - ] - .into_iter() - .map(|s| PrincipalId::from_str(s).unwrap()) - .collect(); - - for target in principals_target { - let key = make_node_operator_record_key(target); - let (record, _) = - get_value::(&state_machine, &key.as_bytes().to_vec(), None) - .unwrap(); + nns_canister_upgrade_sequence.iter().for_each(|canisters| { + canisters.update(&state_machine, neuron_controller, neuron_id); + }); - let operator = NodeOperator::try_from(record).unwrap(); - println!("Fetched NodeOperator key {}: {}", key, operator); + state_machine.advance_time(std::time::Duration::from_secs(ONE_MONTH_SECONDS)); + for _ in 0..100 { + state_machine.advance_time(std::time::Duration::from_secs(1)); + state_machine.tick(); } } @@ -368,37 +331,3 @@ fn fetch_all_node_operators_data(state_machine: &StateMachine) -> Vec( - state_machine: &StateMachine, - key: &[u8], - version: Option, -) -> Result<(T, u64), Error> { - let current_result: Vec = query( - state_machine, - REGISTRY_CANISTER_ID, - "get_value", - serialize_get_value_request(key.to_vec(), version).unwrap(), - ) - .unwrap(); - - let response = deserialize_get_value_response(current_result)?; - - let Some(content) = response.content else { - return Err(Error::MalformedMessage(format!( - "The `content` field of the get_value response is not populated (key = {key:?}).", - ))); - }; - - let content: Vec = match content { - high_capacity_registry_get_value_response::Content::Value(value) => value, - - _ => { - panic!("Unexpected content variant in high_capacity_registry_get_value_response"); - } - }; - - // Decode the value as proper type - let value = T::decode(content.as_slice()).unwrap(); - Ok((value, response.version)) -} diff --git a/rs/registry/canister/src/registry_lifecycle.rs b/rs/registry/canister/src/registry_lifecycle.rs index e80a645bc9ae..ef16eedaf214 100644 --- a/rs/registry/canister/src/registry_lifecycle.rs +++ b/rs/registry/canister/src/registry_lifecycle.rs @@ -115,11 +115,8 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { match create_node_operator_mutation( "ujq4k-55epc-pg2bt-jt2f5-6vaq3-diru7-edprm-42rd2-j7zzd-yjaai-2qe", - |record, _| { - record.rewardable_nodes = btreemap! { - NodeRewardType::Type1dot1.to_string() => 9 - }; - }, + // Dummy mutation that should just increase the version and get the updates + |_record, _| {}, ) { Ok(mutation) => mutations.push(mutation), Err(e) => ic_cdk::println!("Error creating mutation for ujq4k: {}", e), @@ -142,17 +139,13 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { match create_node_operator_mutation( "spsu4-5hl4t-bfubp-qvoko-jprw4-wt7ou-nlnbk-gb5ib-aqnoo-g4gl6-kae", - |record, _| { - record.rewardable_nodes = btreemap! { - NodeRewardType::Type1dot1.to_string() => 14 - }; - }, + |record, _| {}, ) { Ok(mutation) => mutations.push(mutation), Err(e) => ic_cdk::println!("Error creating mutation for spsu4: {}", e), } - // redpf --------------------------------------------------------------------------------------- + // redpf - 2rqo7 ------------------------------------------------------------------------------- match create_node_operator_mutation( "redpf-rrb5x-sa2it-zhbh7-q2fsp-bqlwz-4mf4y-tgxmj-g5y7p-ezjtj-5qe", @@ -164,6 +157,21 @@ fn fix_node_operators_corrupted(registry: &Registry) -> Vec { Err(e) => ic_cdk::println!("Error creating mutation for redpf: {}", e), } + match create_node_operator_mutation( + "2rqo7-ot2kv-upof3-odw3y-sjckb-qeibt-n56vj-7b4pt-bvrtg-zay53-4qe", + |record, _| { + record.rewardable_nodes = btreemap! { + NodeRewardType::Type1dot1.to_string() => 28 + }; + record.max_rewardable_nodes = btreemap! { + NodeRewardType::Type1dot1.to_string() => 28 + }; + }, + ) { + Ok(mutation) => mutations.push(mutation), + Err(e) => ic_cdk::println!("Error creating mutation for 2rqo7: {}", e), + } + mutations } From a294b666094271dea24ec8e3c9bf9b79476e8d3e Mon Sep 17 00:00:00 2001 From: Pietro Date: Fri, 12 Dec 2025 09:53:22 +0000 Subject: [PATCH 13/13] Simulate rewarding --- .../src/registry_migration.rs | 27 ++++++++++ rs/registry/node_provider_rewards/src/lib.rs | 54 ------------------- 2 files changed, 27 insertions(+), 54 deletions(-) diff --git a/rs/nns/integration_tests/src/registry_migration.rs b/rs/nns/integration_tests/src/registry_migration.rs index eeee18551da7..b7fd49ffd976 100644 --- a/rs/nns/integration_tests/src/registry_migration.rs +++ b/rs/nns/integration_tests/src/registry_migration.rs @@ -2,6 +2,7 @@ use candid::{Decode, Encode}; use ic_base_types::{CanisterId, PrincipalId}; use ic_crypto_sha2::Sha256; +use ic_ledger_core::tokens::TOKEN_SUBDIVIDABLE_BY; use ic_nervous_system_clients::canister_status::CanisterStatusType; use ic_nervous_system_common::ONE_MONTH_SECONDS; use ic_nns_common::pb::v1::NeuronId; @@ -243,6 +244,32 @@ fn test_registry_migration_with_golden_state() { state_machine.advance_time(std::time::Duration::from_secs(1)); state_machine.tick(); } + + let rewards: MonthlyNodeProviderRewards = + nns_get_most_recent_monthly_node_provider_rewards(&state_machine).unwrap(); + + let xdr_permyriad_per_icp = rewards + .xdr_conversion_rate + .clone() + .unwrap() + .xdr_permyriad_per_icp + .unwrap(); + + for node_provider_rewards in rewards.rewards { + let node_provider = node_provider_rewards.node_provider.unwrap().id.unwrap(); + + let rewards_icp = + (node_provider_rewards.amount_e8s as u128 / TOKEN_SUBDIVIDABLE_BY as u128) as u64; + let xdr_permyriad_reward = ((node_provider_rewards.amount_e8s as u128 + * xdr_permyriad_per_icp as u128) + / TOKEN_SUBDIVIDABLE_BY as u128) as u64 + + 1; + + println!( + "Node Provider: {}, Rewards: {} ICP ({} XDR permyriad)", + node_provider, rewards_icp, xdr_permyriad_reward + ); + } } #[derive(Debug, Clone, PartialEq, Eq)] diff --git a/rs/registry/node_provider_rewards/src/lib.rs b/rs/registry/node_provider_rewards/src/lib.rs index 373d901f92d9..0efc64b0f03c 100644 --- a/rs/registry/node_provider_rewards/src/lib.rs +++ b/rs/registry/node_provider_rewards/src/lib.rs @@ -6,8 +6,6 @@ use ic_protobuf::registry::{ }; use logs::{LogEntry, RewardsPerNodeProviderLog}; use std::collections::{BTreeMap, HashMap}; -use std::fmt::{Display, Formatter}; - pub mod logs; #[derive(Debug, PartialEq)] @@ -16,55 +14,6 @@ pub struct RewardsPerNodeProvider { pub computation_log: BTreeMap, } -#[derive(Debug, Clone, PartialEq, Eq)] -pub struct NodeOperator { - pub node_operator_principal_id: PrincipalId, - pub node_allowance: u64, - pub node_provider_principal_id: PrincipalId, - pub dc_id: String, - pub rewardable_nodes: std::collections::BTreeMap, - pub ipv6: Option, - pub max_rewardable_nodes: std::collections::BTreeMap, -} - -impl Display for NodeOperator { - fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { - write!( - f, - "NodeOperator {{ node_operator_principal_id: {}, node_allowance: {}, node_provider_principal_id: {}, dc_id: {}, rewardable_nodes: {:?}, ipv6: {:?}, max_rewardable_nodes: {:?} }}", - self.node_operator_principal_id, - self.node_allowance, - self.node_provider_principal_id, - self.dc_id, - self.rewardable_nodes, - self.ipv6, - self.max_rewardable_nodes, - ) - } -} - -impl TryFrom for NodeOperator { - type Error = String; - - fn try_from(value: NodeOperatorRecord) -> Result { - Ok(NodeOperator { - node_operator_principal_id: PrincipalId::try_from( - value.node_operator_principal_id.clone(), - ) - .map_err(|e| format!("Failed to convert node_operator_principal_id: {}", e))?, - node_allowance: value.node_allowance, - node_provider_principal_id: PrincipalId::try_from( - value.node_provider_principal_id.clone(), - ) - .map_err(|e| format!("Failed to convert node_provider_principal_id: {}", e))?, - dc_id: value.dc_id, - rewardable_nodes: value.rewardable_nodes, - ipv6: value.ipv6, - max_rewardable_nodes: value.max_rewardable_nodes, - }) - } -} - pub fn calculate_rewards_v0( rewards_table: &NodeRewardsTable, node_operators: &[(String, NodeOperatorRecord)], @@ -79,9 +28,6 @@ pub fn calculate_rewards_v0( let mut computation_log = BTreeMap::new(); for (key_string, node_operator) in node_operators.iter() { - let str_no: NodeOperator = node_operator.clone().try_into()?; - ic_cdk::println!("node operator with key:{} {}", key_string, str_no); - let node_operator_id = PrincipalId::try_from(&node_operator.node_operator_principal_id) .map_err(|e| { format!(