From 2470637b0b7e770118ea8475ab935c02bcf54a8b Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Fri, 26 Apr 2024 17:36:14 -0400 Subject: [PATCH] SSR optimizations for binary size, and flat router --- examples/ssr_modes_axum/Cargo.toml | 4 +- examples/ssr_modes_axum/src/app.rs | 9 +- examples/ssr_modes_axum/tree.txt | 12775 +++++++++++++++++++++++++++ leptos/Cargo.toml | 1 + leptos_server/Cargo.toml | 1 + leptos_server/src/resource.rs | 3 +- meta/Cargo.toml | 1 + meta/src/lib.rs | 76 +- routing/Cargo.toml | 1 + routing/src/components.rs | 62 +- routing/src/flat_router.rs | 189 + routing/src/lib.rs | 2 + routing/src/nested_router.rs | 54 +- tachys/src/html/element/mod.rs | 2 +- tachys/src/view/any_view.rs | 29 +- tachys/src/view/either.rs | 4 +- 16 files changed, 13066 insertions(+), 147 deletions(-) create mode 100644 examples/ssr_modes_axum/tree.txt create mode 100644 routing/src/flat_router.rs diff --git a/examples/ssr_modes_axum/Cargo.toml b/examples/ssr_modes_axum/Cargo.toml index e170a67f6..cea1f48d0 100644 --- a/examples/ssr_modes_axum/Cargo.toml +++ b/examples/ssr_modes_axum/Cargo.toml @@ -31,7 +31,9 @@ ssr = [ "dep:tower-http", "dep:tokio", "leptos/ssr", + "leptos_meta/ssr", "dep:leptos_axum", + "routing/ssr", ] [profile.wasm-release] @@ -60,7 +62,7 @@ style-file = "style/main.scss" # Optional. Env: LEPTOS_ASSETS_DIR. assets-dir = "assets" # The IP and port (ex: 127.0.0.1:3000) where the server serves the content. Use it in your server setup. -site-addr = "127.0.0.1:3000" +site-addr = "127.0.0.1:3007" # The port to use for automatic reload monitoring reload-port = 3001 # [Optional] Command to use when running end2end tests. It will run in the end2end dir. diff --git a/examples/ssr_modes_axum/src/app.rs b/examples/ssr_modes_axum/src/app.rs index 041fad3fe..6bcf36816 100644 --- a/examples/ssr_modes_axum/src/app.rs +++ b/examples/ssr_modes_axum/src/app.rs @@ -7,7 +7,7 @@ use leptos::{ }; use leptos_meta::*; use routing::{ - components::{Route, Router, Routes}, + components::{FlatRoutes, Route, Router}, hooks::use_params, params::Params, ParamSegment, SsrMode, StaticSegment, @@ -24,11 +24,10 @@ pub fn App() -> impl IntoView { view! { - + <Meta name="color-scheme" content="dark light"/> <Router> <main> - // TODO should fallback be on Routes or Router? - <Routes fallback> + <FlatRoutes fallback> // We’ll load the home page with out-of-order streaming and <Suspense/> <Route path=StaticSegment("") view=HomePage/> @@ -44,7 +43,7 @@ pub fn App() -> impl IntoView { view=Post ssr=SsrMode::InOrder /> - </Routes> + </FlatRoutes> </main> </Router> } diff --git a/examples/ssr_modes_axum/tree.txt b/examples/ssr_modes_axum/tree.txt new file mode 100644 index 000000000..ff32a1660 --- /dev/null +++ b/examples/ssr_modes_axum/tree.txt @@ -0,0 +1,12775 @@ + Retained Bytes │ Retained % │ Dominator Tree +────────────────┼────────────┼────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + 1951999 ┊ 39.74% ┊ table[0] + 1747989 ┊ 35.59% ┊ ⤷ elem[0] + 93998 ┊ 1.91% ┊ ⤷ <either_of::EitherOf3<A,B,C> as routing::matching::choose_view::ChooseView<Rndr>>::choose::hd975a6635b856006 + 46578 ┊ 0.95% ┊ ⤷ <F as routing::matching::choose_view::ChooseView<R>>::choose::h7ce20fca5dd2c023 + 46515 ┊ 0.95% ┊ ⤷ core::ops::function::Fn::call::h6f23ce6a5c34d4bf + 46462 ┊ 0.95% ┊ ⤷ ssr_modes_axum::app::Post::hb7bc49f3d2abcecf + 46452 ┊ 0.95% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h4b3f895d9729e826 + 46388 ┊ 0.94% ┊ ⤷ ssr_modes_axum::app::Post::{{closure}}::hc146cc2ce55a72c3 + 46342 ┊ 0.94% ┊ ⤷ ssr_modes_axum::app::__Post::h43a792cea2f8e08c + 31690 ┊ 0.65% ┊ ⤷ leptos_server::resource::Resource<T,leptos_server::serializers::SerdeJson>::new_serde::hc24e41cc52412e56 + 31642 ┊ 0.64% ┊ ⤷ leptos_server::resource::Resource<T,Ser>::new_with_encoding::h9c2e3a52029dab4a + 29745 ┊ 0.61% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::h003f03cd629ac85d + 17721 ┊ 0.36% ┊ ⤷ <T as leptos_server::serializers::SerializableData<leptos_server::serializers::SerdeJson>>::de::h61e99865e4b1aac1 + 17657 ┊ 0.36% ┊ ⤷ serde_json::de::from_str::h45db6a23064201d8 + 17556 ┊ 0.36% ┊ ⤷ serde_json::de::from_trait::h796b9fcdddc7024e + 16467 ┊ 0.34% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::h9caf262afe2d291b + 16382 ┊ 0.33% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_enum::h5e0d4dd532888e75 + 11925 ┊ 0.24% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::hb8d05eaf801b239b + 6467 ┊ 0.13% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h703f5bde81780b74 + 6412 ┊ 0.13% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h1947b1524f103e7d + 6357 ┊ 0.13% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hcb61b10c2e2a8541 + 6302 ┊ 0.13% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::h76972c589197309a + 6217 ┊ 0.13% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_enum::h0cd2fbadc5e25860 + 2011 ┊ 0.04% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__Visitor as serde::de::Visitor>::visit_enum::h752687a82ceb3ebc + 763 ┊ 0.02% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::unit_variant::hf27e41c852d7667f + 706 ┊ 0.01% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for ()>::deserialize::hf0cd9653476610a6 + 649 ┊ 0.01% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_unit::h81cb8d231665c1e7 + 42 ┊ 0.00% ┊ ⤷ <serde::de::impls::UnitVisitor as serde::de::Visitor>::visit_unit::hcbe4afd7304a5446 + 357 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::haf529ba2fce6e621 + 302 ┊ 0.01% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::EnumAccess>::variant_seed::hde711fc80236e481 + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hfb81e06ccfc1876f + 1481 ┊ 0.03% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h1a1772d1f97d725d + 1426 ┊ 0.03% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__Field as serde::de::Deserialize>::deserialize::hf1cfb9532d5cc87d + 1371 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_identifier::h330fedbf4dd5a5d1 + 1316 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_str::h3c568ecfacd08cc6 + 351 ┊ 0.01% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__FieldVisitor as serde::de::Visitor>::visit_str::h9be479b697e5babd + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::h62216ff596eec3fe + 1198 ┊ 0.02% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__Visitor as serde::de::Visitor>::visit_enum::h9ac3c41ce4bc0a2c + 258 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::h569eaa879a2d56a7 + 203 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::EnumAccess>::variant_seed::h7d2fdee98428ec56 + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hbc3b1d640b64c195 + 49 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::unit_variant::h9d8565851ea78354 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hb02c7144977aaeda + 5079 ┊ 0.10% ┊ ⤷ serde::de::VariantAccess::newtype_variant::hedcf24104c4ac201 + 5024 ┊ 0.10% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h4d8ec411b3f06af5 + 4969 ┊ 0.10% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h8170a926829ec95a + 4914 ┊ 0.10% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::hda50925c74617993 + 4829 ┊ 0.10% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_enum::h26d266287cc4f2a9 + 917 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::h31278ae6fcee9dfc + 284 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hfb42ea2e266702b8 + 119 ┊ 0.00% ┊ ⤷ core::result::Result::Ok::h90a32978ff88d22b + 555 ┊ 0.01% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::hbacc047416e6696f + 176 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h9910de90dc736183 + 121 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::habea1794d2a7369d + 544 ┊ 0.01% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::h9f6b0acd56da7407 + 165 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::hc70c997e51f0e284 + 110 ┊ 0.00% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h3ef1e00d9dfcffff + 55 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hbfb52124711d0318 + 464 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h94e2db503fb3e10d + 113 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::ha4fad0e17f7cae08 + 51 ┊ 0.00% ┊ ⤷ core::result::Result::Err::hd43ff43f1bf87392 + 917 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::h2e4fd6db2ca1b67b + 284 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hc011b81a4f02bf0d + 119 ┊ 0.00% ┊ ⤷ core::result::Result::Ok::h64cdf0029b9995fd + 555 ┊ 0.01% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::ha74d43a97b4ca74a + 176 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h18336b818f69bf7a + 121 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::hea0988d4642745c4 + 464 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h6910a3913d935b4a + 113 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h3e24446454eada4b + 51 ┊ 0.00% ┊ ⤷ core::result::Result::Err::hce3e23e840a5e832 + 172 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::ha0b85227544667ad + 117 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h97425ad08a2bb27c + 3559 ┊ 0.07% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::h92c9c5c945ef7902 + 668 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h72db6248168311d3 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h4aa37faa75b5be2f + 428 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h0352d520bf805a4f + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn::hf1329a2e999276be + 2994 ┊ 0.06% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h5d8f539b575618ae + 2898 ┊ 0.06% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::hc827342099e22e19 + 2698 ┊ 0.05% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::h51e25ad099c277c2 + 2011 ┊ 0.04% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::hb0f4ea118b0f8a58 + 502 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::h624634be6a5f7e72 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::MemoInner<T>::new::h0265a61474c721e3 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb31aa22fd2b35dd7 + 212 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h6f5f1bfbf91655c1 + 134 ┊ 0.00% ┊ ⤷ alloc::sync::Weak<T,A>::as_ptr::hbdf44349c796b439 + 1009 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::ha2e5c60945c7628c + 600 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h77c03ba8d6b564df + 523 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h41935eecacceca85 + 416 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hb79c46a45a8f4310 + 101 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h861016a67474bf35 + 29 ┊ 0.00% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::hbd56ec8737be6270 + 288 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h100806ce7b8981f8 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h49252fdaf6578123 + 312 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h5f521ce563350a3f + 87 ┊ 0.00% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::hded30af5050008ad + 158 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::ready::h0effa3c9db5d1155 + 115 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as core::clone::Clone>::clone::h03fc05943d6e0637 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::graph::subscriber::ToAnySubscriber>::to_any_subscriber::h2e627f848fd25172 + 1667 ┊ 0.03% ┊ ⤷ <T as core::convert::Into<U>>::into::h56b33f582ece6368 + 1655 ┊ 0.03% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::convert::From<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>>>::from::h2c684dfe92e99523 + 1549 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::hcf56e85d7062f14b + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0aa23e591fff3cbb + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hbb2966d2a14baf89 + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::hd8c8919da1d979da + 529 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h1524764fd4c15725 + 302 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::hba4ec47a3c2c905c + 8700 ┊ 0.18% ┊ ⤷ routing::hooks::use_params::hec197f8cef1ddd49 + 4634 ┊ 0.09% ┊ ⤷ reactive_graph::computed::memo::Memo<T>::new::h035082a9f03e300e + 3030 ┊ 0.06% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h326675c8988bf9e9 + 2934 ┊ 0.06% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::hff4e4a4707b4ba88 + 2734 ┊ 0.06% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::h4473e2324cc32f10 + 2047 ┊ 0.04% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h12a6c6f80c94e57a + 502 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::ha238461ed41cd7a9 + 495 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::MemoInner<T>::new::h41d836cfc07d7879 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h3b087feec91dca1b + 212 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hae452bd5be4031b4 + 134 ┊ 0.00% ┊ ⤷ alloc::sync::Weak<T,A>::as_ptr::h65f3e33fff09d2c8 + 1476 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::hd7a796024564b76e + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h312b1961f6801ecc + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h510c1f06aa37a7d4 + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h653e0d184a7db3b9 + 482 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hd68aef0eb27b5750 + 250 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h445a88cf63b77614 + 3908 ┊ 0.08% ┊ ⤷ routing::hooks::use_params_raw::h148dd48014c87d06 + 3662 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::hb5222bb0d0599b8c + 3579 ┊ 0.07% ┊ ⤷ core::option::Option<T>::and_then::h4c0807f0c5d789ee + 3315 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::ha818e0b5d21def46 + 3262 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::h7022f79adfc22ee2 + 478 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::h7a271a9165a3ea73 + 412 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h03c618c7b3f24bdb + 312 ┊ 0.01% ┊ ⤷ core::option::Option<&T>::cloned::hb90c39013f95961a + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_read::ArcReadSignal<T> as core::clone::Clone>::clone::h9a34796fb9679420 + 257 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::heba1669a1f44f8be + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::hfbb54b677b8f974b + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hb167384336b6ed5b + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h2305d15e24fbbbaa + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::heb19134764661b08 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::hf527f05a06a14418 + 162 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h4855d5f33cc9299c + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::signal::arc_read::ArcReadSignal<routing::params::ParamsMap>>>::h9298d27664459b0e + 145 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h903b254cf24ddbc1 + 3848 ┊ 0.08% ┊ ⤷ leptos::component::component_view::h668fef6c56d1218f + 3791 ┊ 0.08% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::h402ee0eb8202c7a9 + 3659 ┊ 0.07% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h0e8ed3720687cf56 + 3527 ┊ 0.07% ┊ ⤷ core::ops::function::Fn::call::h41f7ccf8105903b7 + 3398 ┊ 0.07% ┊ ⤷ leptos::suspense_component::Suspense::h46feb5401f9d8167 + 3202 ┊ 0.07% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h025d4c0f40e23e34 + 3114 ┊ 0.06% ┊ ⤷ leptos::suspense_component::Suspense::{{closure}}::h884519079c6d9dbf + 3066 ┊ 0.06% ┊ ⤷ leptos::suspense_component::__Suspense::hd41ff2991c38e721 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h4e56a32fc9832295 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h9c091e1ec40b13f8 + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::h0719e838908a0dea + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h2791fa9df0c55e3b + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h3db591867ae42df2 + 422 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::he856ccede5752713 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h7ecbaf8de4bfcd18 + 50 ┊ 0.00% ┊ ⤷ leptos::children::TypedChildren<T>::into_inner::hbc7fba08d12b8e45 + 351 ┊ 0.01% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,((),__children)>::fallback::hdc232320a5b1f628 + 181 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hd28ddbf04382135f + 107 ┊ 0.00% ┊ ⤷ <leptos::children::ViewFnOnce as core::convert::From<F>>::from::h9ff9387c662800b0 + 317 ┊ 0.01% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,(__fallback,(leptos::children::TypedChildren<Chil>,))>::build::h7b4a85801fcb0c50 + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::ha41715d6f2c774c2 + 50 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::h36681f16b20f2a67 + 202 ┊ 0.00% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::hf925cb809853a4e2 + 180 ┊ 0.00% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,(__fallback,())>::children::hce99bd76181b03bc + 132 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::haebc4824c865e5fe + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h555f6849c6f43de9 + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::h60f51b9ececcbfdd + 21 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::SuspenseProps<Chil> as leptos::component::Props>::builder::haf39be4c602ad900 + 13 ┊ 0.00% ┊ ⤷ leptos::suspense_component::SuspenseProps<Chil>::builder::h5d1b4ee3ed608c4d + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h47d58308dbd49a04 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::em::h15dd2975d80a1516 + 38043 ┊ 0.77% ┊ ⤷ <F as routing::matching::choose_view::ChooseView<R>>::choose::h0d8fdb785f959344 + 37980 ┊ 0.77% ┊ ⤷ core::ops::function::Fn::call::h92bf482a1d8836c8 + 37927 ┊ 0.77% ┊ ⤷ ssr_modes_axum::app::HomePage::hdae7b7f982b258f1 + 37917 ┊ 0.77% ┊ ⤷ reactive_graph::graph::subscriber::untrack::had56b79e1d986e9c + 37853 ┊ 0.77% ┊ ⤷ ssr_modes_axum::app::HomePage::{{closure}}::h181e7e3b72b90c07 + 37807 ┊ 0.77% ┊ ⤷ ssr_modes_axum::app::__HomePage::h0ba33f698293ae68 + 32146 ┊ 0.65% ┊ ⤷ leptos_server::resource::Resource<T,leptos_server::serializers::SerdeJson>::new_serde::hff47b3ed83638a67 + 32100 ┊ 0.65% ┊ ⤷ leptos_server::resource::Resource<T,Ser>::new_with_encoding::h3d100966b5a8b35c + 30205 ┊ 0.61% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::hb0c7fc964e7323bf + 18425 ┊ 0.38% ┊ ⤷ <T as leptos_server::serializers::SerializableData<leptos_server::serializers::SerdeJson>>::de::hbecd37133e4a207c + 18361 ┊ 0.37% ┊ ⤷ serde_json::de::from_str::ha8d66024d97d2d07 + 18260 ┊ 0.37% ┊ ⤷ serde_json::de::from_trait::he4d9798aaeddc6f2 + 17629 ┊ 0.36% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::h7417a8e03665d14e + 17544 ┊ 0.36% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_enum::h4dd1153ce856da6c + 13812 ┊ 0.28% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::hf5b93f37984079f3 + 13272 ┊ 0.27% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h47e425b55eaff918 + 13217 ┊ 0.27% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h1a5a7dad8b40bf84 + 13162 ┊ 0.27% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hf1bc6182f12347d2 + 13107 ┊ 0.27% ┊ ⤷ server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::h417d4983aeaf4f4d + 13022 ┊ 0.27% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_enum::hb1dde7f4c001e0c7 + 2450 ┊ 0.05% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__Visitor<E> as serde::de::Visitor>::visit_enum::ha6d87598eb8d59b6 + 963 ┊ 0.02% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h30619bedb2f3da59 + 906 ┊ 0.02% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h214fe7d350900f0e + 849 ┊ 0.02% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h30eba36638a03cb2 + 792 ┊ 0.02% ┊ ⤷ server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::NoCustomError>::deserialize::h828689c9f6568a5e + 720 ┊ 0.01% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_unit_struct::h299d66c67c0d5fc2 + 649 ┊ 0.01% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_unit::h7035bfe49205c3ec + 42 ┊ 0.00% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::NoCustomError>::deserialize::__Visitor as serde::de::Visitor>::visit_unit::h70a0ff472259c350 + 357 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::hc6d7d1cc724e2b96 + 302 ┊ 0.01% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::EnumAccess>::variant_seed::h25fda0d569999c6b + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h71f169b99b604614 + 110 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::hd12897c35811dbda + 55 ┊ 0.00% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h3f7bcebe9a8ad03b + 1991 ┊ 0.04% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h874ca5970db37f19 + 1936 ┊ 0.04% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__Field as serde::de::Deserialize>::deserialize::h93c99a05c179e759 + 1881 ┊ 0.04% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_identifier::h3b2e74b1293e7f68 + 1826 ┊ 0.04% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_str::hb76fa6ae53bcd995 + 861 ┊ 0.02% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__FieldVisitor as serde::de::Visitor>::visit_str::h9ac199b86209d43e + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::h285d71cfe4805715 + 1626 ┊ 0.03% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__Visitor<E> as serde::de::Visitor>::visit_enum::hce7136bb2b47e07b + 258 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::h2862afa28b030d33 + 203 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::EnumAccess>::variant_seed::h8bc9f0c37cf93d71 + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h71e07c64c57dc2df + 176 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::he3a423a84c536308 + 121 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h9cb66f21b31b1c4d + 172 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h6434defbd40e5d8a + 115 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h3ee0d4a8a60deb80 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h26491d155942edf5 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5c1add4fa6eee4f2 + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Deserialization::hf937b1b12fdef5f9 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h6e11f75c8e65a993 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::ha5633d8dc13bfe06 + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Registration::ha33dfeda91ad8d81 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h769267958656da01 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hf42f249efeb58ec9 + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Serialization::h4ae059f4498903fd + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h7e6c48b180e62ca0 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h894a6773b237236b + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::MissingArg::hfcd72ec2c78bc7bc + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h81e36025f8cc247f + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfcfb3ed6a54358cf + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::ServerError::hf3da3c18cf00d0ff + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h862bee7751cb38cf + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::he26154ca86407ac9 + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Request::heee1138cb24c28d3 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hee6c490f8b15ec42 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h8c0ebf362b17309f + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Args::h4b71084b45e61c2e + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hf806aae8b801e678 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h0287a597262984d7 + 77 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::Response::h248a3a6399665e20 + 322 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h1a01ed04d5940430 + 78 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::heeb09ed65695fd8b + 32 ┊ 0.00% ┊ ⤷ server_fn::error::ServerFnError::WrappedServerError::hab453153f164e63a + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h41134246d1c50cf2 + 165 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h513a3f6fb3788230 + 110 ┊ 0.00% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h1e9be1255913283f + 55 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h5f1e182780c5b90e + 723 ┊ 0.01% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::ResultVisitor<T,E> as serde::de::Visitor>::visit_enum::hc8f36b972e376a92 + 176 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h9090bd7203ed70f6 + 121 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::he46641131ba02c52 + 172 ┊ 0.00% ┊ ⤷ serde::de::VariantAccess::newtype_variant::h41e8e3dd7cf41fa2 + 117 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::VariantAccess>::newtype_variant_seed::h684c8f2511e1b081 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h0f883e118c6f575a + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfe0ce5d61627a943 + 77 ┊ 0.00% ┊ ⤷ core::result::Result::Ok::hf89086ecafc10851 + 588 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h930663511e3e6da9 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hdd6c01feaf69f7e3 + 55 ┊ 0.00% ┊ ⤷ core::result::Result::Err::h748efbf3c30a26fb + 3413 ┊ 0.07% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::he045818b94eec854 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::ha33f4a079c71ba42 + 593 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hee273e9d5f9434df + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn::he3f24d6352a6333d + 341 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h4536fe26140e1e06 + 3257 ┊ 0.07% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h917b102f5e927479 + 3174 ┊ 0.06% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h3fac10133aae08a4 + 3037 ┊ 0.06% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hb7c3836b3728932a + 2342 ┊ 0.05% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h6f03e4bc725c4950 + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h295cf37b454ee15d + 502 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::h2c23af50e8c3e9b7 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::MemoInner<T>::new::h0d6ad4c43e3d4cf1 + 284 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb1dd8ddc4c9afeef + 134 ┊ 0.00% ┊ ⤷ alloc::sync::Weak<T,A>::as_ptr::h0220fec54181d342 + 1009 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::h6e6f8cd19b7bf383 + 600 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::hcf87c63ce3b87b60 + 523 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hac6ba85a0266da4d + 416 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h78aa48cf40af77b7 + 101 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hbcd1938187c95b06 + 29 ┊ 0.00% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::h78c8fd420c267abd + 288 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h59279e53fc69cb67 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::hefb43ca5f96f9087 + 312 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h03711213eef55939 + 87 ┊ 0.00% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::h1024d28488eddbd5 + 158 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::ready::h71529190ea667aec + 115 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as core::clone::Clone>::clone::h37a734de96fe21f4 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::graph::subscriber::ToAnySubscriber>::to_any_subscriber::he06c2aaa03e47759 + 1667 ┊ 0.03% ┊ ⤷ <T as core::convert::Into<U>>::into::h41f582505a4af533 + 1655 ┊ 0.03% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::convert::From<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>>>::from::h045f664f9f67f9f0 + 1549 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::h2a8fbd202fe3288b + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h2caf7db798f2654c + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h6ec204209366680b + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h0579b7244d51f1b8 + 529 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hd06221092cd0baf3 + 302 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h00b0616f6402af3e + 3730 ┊ 0.08% ┊ ⤷ leptos::component::component_view::hd9fc8d59466f8c2b + 3673 ┊ 0.07% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::ha3eaea347368febc + 3541 ┊ 0.07% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h70a68f9be5db950e + 3409 ┊ 0.07% ┊ ⤷ core::ops::function::Fn::call::hab10af35a71a89d0 + 3280 ┊ 0.07% ┊ ⤷ leptos::suspense_component::Suspense::h73f50bbb5a27fa13 + 3084 ┊ 0.06% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h8ec45554fbc4c235 + 2996 ┊ 0.06% ┊ ⤷ leptos::suspense_component::Suspense::{{closure}}::h8829602f7a9d0faf + 2948 ┊ 0.06% ┊ ⤷ leptos::suspense_component::__Suspense::h10f1d44d7900b5bd + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h90c5af32d1116c61 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h38eaf5023d0aff78 + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hefbb99afe27b544b + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h9d8aa7d888cc0482 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::haa761ad440f7fc72 + 422 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h4143097373df9a3d + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hfdcd76e1dd6900cb + 50 ┊ 0.00% ┊ ⤷ leptos::children::TypedChildren<T>::into_inner::h131788c64891fdf1 + 351 ┊ 0.01% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,((),__children)>::fallback::h636c84ad287db5d9 + 181 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hf0d0aebc9b9ca582 + 107 ┊ 0.00% ┊ ⤷ <leptos::children::ViewFnOnce as core::convert::From<F>>::from::h19515e71646d926e + 317 ┊ 0.01% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,(__fallback,(leptos::children::TypedChildren<Chil>,))>::build::h739d87925f5f1aea + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h3849029843e61233 + 50 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::hbff483d8e50d199f + 202 ┊ 0.00% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::he16bb0b59a26f31b + 180 ┊ 0.00% ┊ ⤷ leptos::suspense_component::SuspensePropsBuilder<Chil,(__fallback,())>::children::h36b144dfaafeadc3 + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h03e6e25e1d321ff9 + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::hfe2f51ad42cec7f4 + 21 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::SuspenseProps<Chil> as leptos::component::Props>::builder::h11a4a91e2e4233ff + 13 ┊ 0.00% ┊ ⤷ leptos::suspense_component::SuspenseProps<Chil>::builder::h005a9583696f8e86 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h4228bbc050070835 + 1440 ┊ 0.03% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::ha1db5fd45023e8e8 + 1385 ┊ 0.03% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::Field as serde::de::Deserialize>::deserialize::hda8323ff36c79a87 + 1330 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_identifier::h74eb0f6de36e161b + 1275 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_str::h21465ee64875df61 + 288 ┊ 0.01% ┊ ⤷ <<serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::Field as serde::de::Deserialize>::deserialize::FieldVisitor as serde::de::Visitor>::visit_str::h284825a97c30855a + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::hcd87682d3d2d5cdc + 1400 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<slotmap::DefaultKey,V>::new::h5402407a6d5c78fe + 1382 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<K,V>::with_capacity_and_key::hac4eeacaafcea5b3 + 1026 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::h614e27cbd2f6446f + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::ha0c0ad30c23073f7 + 1129 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::h5748aed383551d5a + 593 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hce2a50d27f8886e4 + 341 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h507acfed41e2e455 + 935 ┊ 0.02% ┊ ⤷ reactive_graph::owner::context::provide_context::ha68c28aa053995fc + 414 ┊ 0.01% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::provide_context::h2497ee7e38d35558 + 743 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T>::new::hcfb5133472e1f085 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::he3ff380eb1fadfbc + 626 ┊ 0.01% ┊ ⤷ serde::de::Error::unknown_variant::h302b370eba9987c9 + 68 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::is_empty::h781607d64f82942d + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hec7f2e271c00560d + 514 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hcb74341ed0e1051e + 401 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::h887301d971891b56 + 346 ┊ 0.01% ┊ ⤷ <serde_json::de::VariantAccess<R> as serde::de::EnumAccess>::variant_seed::h8d7cab26157eadc3 + 291 ┊ 0.01% ┊ ⤷ serde::de::EnumAccess::variant::h4ab845d9fa9a6885 + 236 ┊ 0.00% ┊ ⤷ <serde_json::de::UnitVariantAccess<R> as serde::de::EnumAccess>::variant_seed::h7211a7889304c7a4 + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h2a0fb4d67abcd67d + 64 ┊ 0.00% ┊ ⤷ leptos::children::ViewFnOnce::run::h5a542f3c845a1f20 + 45 ┊ 0.00% ┊ ⤷ serde_json::de::VariantAccess<R>::new::h0cc000c9f1c019d2 + 45 ┊ 0.00% ┊ ⤷ serde_json::de::UnitVariantAccess<R>::new::hb9a91addb6269d52 + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::hf13124c1331041ea + 51408 ┊ 1.05% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::hf89ba588ee4edc8c + 38153 ┊ 0.78% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::h57cf5453cb878697 + 32826 ┊ 0.67% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::h73fa7e3aa2d0e667 + 29808 ┊ 0.61% ┊ ⤷ ssr_modes_axum::app::get_post::{{closure}}::hbf12d54a2c611ee5 + 28883 ┊ 0.59% ┊ ⤷ server_fn::ServerFn::run_on_client::{{closure}}::h442188d3e35c4802 + 15341 ┊ 0.31% ┊ ⤷ server_fn::codec::url::<impl server_fn::codec::IntoReq<server_fn::codec::url::PostUrl,Request,CustErr> for T>::into_req::h0ce4ca04e76efcbd + 14120 ┊ 0.29% ┊ ⤷ serde_qs::ser::to_string::hfe1828c72b2b942a + 13564 ┊ 0.28% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::ser::Serialize for ssr_modes_axum::app::GetPost>::serialize::ha1c7687bee2ed365 + 12390 ┊ 0.25% ┊ ⤷ <serde_qs::ser::QsSerializer<W> as serde::ser::SerializeStruct>::serialize_field::h573408ccc3af69ba + 6989 ┊ 0.14% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hd7d52885afb7c4aa + 6977 ┊ 0.14% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::FromIterator<alloc::borrow::Cow<str>>>::from_iter::he71672b50a0f7536 + 4199 ┊ 0.09% ┊ ⤷ core::ops::function::FnMut::call_mut::h524de984495492f0 + 4114 ┊ 0.08% ┊ ⤷ serde_qs::utils::replace_space::h757dcce41c6c1a74 + 724 ┊ 0.01% ┊ ⤷ alloc::string::String::from_utf8::ha72bc4d283bd15d6 + 701 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::hdc3cce18d589ce6d + 98 ┊ 0.00% ┊ ⤷ serde_qs::utils::replace_space::{{closure}}::h728cbec5a1468c5d + 538 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::hab0607180b3635b9 + 501 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::IndexMut<I>>::index_mut::h243e2b91c15bd4ca + 283 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeFrom<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h6e0dcabd400b6e34 + 307 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::IndexMut<I>>::index_mut::h2721920b589249f0 + 115 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::index_mut::h5a725d8298955cd9 + 283 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::expect::h36aa995b6b6f5f88 + 169 ┊ 0.00% ┊ ⤷ core::slice::iter::<impl core::iter::traits::collect::IntoIterator for &mut [T]>::into_iter::h33169e4acbfa467b + 1053 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hfbe37827980755c7 + 984 ┊ 0.02% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h61e583068dbf955a + 863 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h2d63806f88fc3c88 + 621 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::he9fde1406a23e57f + 423 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hba9a232c4e181f8a + 294 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<alloc::borrow::Cow<str>>>::extend::{{closure}}::hf16c6f6e0fc1e26f + 172 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::borrow::Cow<str>>::hb24f5cc2fa0f89bf + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::String>::hf4a6fafb34f3fee3 + 659 ┊ 0.01% ┊ ⤷ alloc::borrow::Cow<B>::into_owned::hfde8777e58f7cdce + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h16e2da972a966fd6 + 394 ┊ 0.01% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h1669c8758e1d11c8 + 87 ┊ 0.00% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::hc8df25f56c0e089b + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h5147706f4078fade + 3471 ┊ 0.07% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for usize>::serialize::h7f94cdd836b44a78 + 3396 ┊ 0.07% ┊ ⤷ <serde_qs::ser::QsSerializer<W> as serde::ser::Serializer>::serialize_u64::haa84ad86af9a21c5 + 2513 ┊ 0.05% ┊ ⤷ serde_qs::ser::QsSerializer<W>::write_value::h057b597933d05b6f + 645 ┊ 0.01% ┊ ⤷ serde_qs::ser::<impl serde_qs::error::Error>::no_key::hb0f61b818c1658dd + 458 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::h9f1a5f097d1d0a86 + 394 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::convert::From<&str>>::from::hce7d3873c944c4d8 + 471 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h43cb2b42e07608bd + 117 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h054848010164f1b7 + 49 ┊ 0.00% ┊ ⤷ <serde_qs::error::Error as core::convert::From<std::io::error::Error>>::from::hc32e3ec9c739e582 + 311 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicBool::swap::hca7d2605f276c21b + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hcec763df03c8085f + 64 ┊ 0.00% ┊ ⤷ std::io::impls::<impl std::io::Write for &mut W>::write_fmt::h7943c360406d63fc + 542 ┊ 0.01% ┊ ⤷ <T as alloc::string::ToString>::to_string::hd2d5a5cbcea0fb28 + 156 ┊ 0.00% ┊ ⤷ alloc::string::String::as_bytes::h8a09f9342a94c581 + 1106 ┊ 0.02% ┊ ⤷ serde_qs::ser::QsSerializer<W>::extend_key::h24520a914fc2ed4b + 425 ┊ 0.01% ┊ ⤷ serde_qs::ser::QsSerializer<W>::new_from_ref::h902105aa5e1a201f + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h6ad33c469148e68c + 69 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h2595891a1254c746 + 64 ┊ 0.00% ┊ ⤷ percent_encoding::percent_encode::haa5c1b8dbc78ccb7 + 732 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h1d345c6325b5abaa + 127 ┊ 0.00% ┊ ⤷ server_fn::codec::url::<impl server_fn::codec::IntoReq<server_fn::codec::url::PostUrl,Request,CustErr> for T>::into_req::{{closure}}::h29b0d9f5aed60850 + 11629 ┊ 0.24% ┊ ⤷ server_fn::ServerFn::run_on_client_with_req::{{closure}}::h5535244180345352 + 5310 ┊ 0.11% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::{{closure}}::hee956771ea803394 + 2973 ┊ 0.06% ┊ ⤷ serde_json::de::from_str::h2a8fe9d50e77795c + 2872 ┊ 0.06% ┊ ⤷ serde_json::de::from_trait::h358a67c051f056b2 + 1664 ┊ 0.03% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for core::option::Option<T>>::deserialize::h86de0241792857f8 + 1609 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_option::h0849e355fe66c49f + 1009 ┊ 0.02% ┊ ⤷ <serde::de::impls::OptionVisitor<T> as serde::de::Visitor>::visit_some::h7236d527325e26b4 + 917 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::h9d51dd08321c5a8e + 284 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::he931d648d8d62d7a + 119 ┊ 0.00% ┊ ⤷ core::option::Option::Some::h8b54307c6a7cd583 + 183 ┊ 0.00% ┊ ⤷ <serde::de::impls::OptionVisitor<T> as serde::de::Visitor>::visit_none::hfe494ccd18b8a61c + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<ssr_modes_axum::app::Post>>::hf627ab04654f794d + 770 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map_err::h686ab00241d63112 + 187 ┊ 0.00% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::{{closure}}::{{closure}}::h84baac86d0fd7773 + 535 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h60ea199a2f888d48 + 248 ┊ 0.01% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h4bf92cb61a7adfcb + 61 ┊ 0.00% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::h4688e3932e12e5a9 + 211 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h2000ca8760f0f2a1 + 127 ┊ 0.00% ┊ ⤷ server_fn::ServerFn::run_on_client_with_req::h01a7680002d9c7aa + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h5995593fecffc45d + 49 ┊ 0.00% ┊ ⤷ server_fn::ServerFn::run_on_client::h5870d10f78c4b51e + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h992c7b23c4af9781 + 1210 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::hdc28cb5b9d882104 + 460 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::h89cadc9fbaaa3f11 + 392 ┊ 0.01% ┊ ⤷ core::option::Option<T>::ok_or::hc2ce063c2ba6f97f + 696 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hd3dae8b9f804f6ba + 66 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::h647dfe4c8443a491 + 49 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::get_post::h75c31eda7bc43584 + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h1d203be59c3a137e + 2361 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hdef8baba04bbdaf8 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h9e1e18e47aca4163 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h404a2880d016172d + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h933dfb834c734433 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h2db06c58a034d57d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7bb26f982cef7f4e + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h43e1548fa1f1f860 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h390eff63f7810125 + 330 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h0d959c7cd1b1fbb3 + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hf2869672539d6b71 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::{{closure}}::h86ac8cfd1756fc1e + 2147 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::h84c1534321a3a43e + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h106daf13b9c2a2ba + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hcce0e686354ed479 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc330746a5c326da4 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6a74ef4686daa17b + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h891d9b7789eb3ff9 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h28f938fe47a6f3f3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::hccfa98ff2c92fbe7 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::hca83aee00d037382 + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h51890bf4958ba136 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h957bf35731ff61a0 + 131 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::_::<impl reactive_graph::computed::async_derived::ScopedFuture<Fut>>::project::hf16a765b0a4b2cc0 + 5872 ┊ 0.12% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h68469039e2d35675 + 4153 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with::h2468b4bfd7842119 + 2084 ┊ 0.04% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::{{closure}}::h2acb2e069d82f295 + 1992 ┊ 0.04% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h8f20e81b5946c318 + 1873 ┊ 0.04% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::{{closure}}::{{closure}}::hf1df011e7d73eb64 + 1535 ┊ 0.03% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::h2f47dd352a43063c + 1347 ┊ 0.03% ┊ ⤷ reactive_graph::traits::Get::get::h10721707831b5878 + 845 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::Get>::try_get::h44e93e9feeb41876 + 781 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::hc285933523dfe707 + 717 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hb5553e3a83ed701d + 623 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h44f07db104299a62 + 330 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hb815ef09fa3da694 + 256 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h8895807629ac1c14 + 194 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::clone::Clone>::clone::h7c81ce7f05c1c1d4 + 361 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h782efdf55b0d0426 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Get::get::{{closure}}::h7475c5b3f25b69c2 + 57 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::hbc62e6fe44cb1672 + 237 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::ScopedFuture<Fut>::new::h70a2092004128d6a + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcd59ef2073d7dbbc + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2aa98ccf03d5b3bc + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hca5ca51e4f1864db + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hdab21fc3a84b61cd + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hef8a17f3e749064c + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha2818e1ecb81c7a8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>,reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_initial<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},leptos_server::resource::ArcResource<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_encoding<core::result::Result<usize,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::__Post::{{closure}}::{{closure}},ssr_modes_axum::app::__Post::{{closure}},ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::ha95ec47651462a6d + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::ha16a0496f7c1d572 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h287caeee1b8d4d26 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h87425992bbb39931 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::he7a22ba317558a3e + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h47a1a90476b06a7b + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h688d4106bc9b7dd0 + 511 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::h361c3c35627d8107 + 342 ┊ 0.01% ┊ ⤷ core::mem::take::hbb5144ff42d5b2b5 + 18 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::AsyncState<T> as core::default::Default>::default::h3dc6e7c8f5e3c02c + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hf9fe7dac8b7dac47 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hcb076bfa63978692 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>,core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>,core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>>)>::hbff62ed1535baf61 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>>::h70aea5bf327294bd + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h39f1a50fefafe8df + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h1ca834a96fd0c005 + 43492 ┊ 0.89% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::h22f53918abe13b66 + 43078 ┊ 0.88% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::h7d1afe759d2c7dc1 + 40544 ┊ 0.83% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::he8a23bd532892284 + 40397 ┊ 0.82% ┊ ⤷ core::option::Option<T>::map::h00959ec1476d9010 + 40071 ┊ 0.82% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::{{closure}}::h3f5108e5c4cd1876 + 39991 ┊ 0.81% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::hc53e42aa36ba0081 + 39434 ┊ 0.80% ┊ ⤷ core::result::Result<T,E>::map::hc86e88562af2b2da + 39086 ┊ 0.80% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::{{closure}}::h376cdbb131f0bf98 + 39006 ┊ 0.79% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B,C,D)>::hydrate::hf65295c5afc29c1d + 36493 ┊ 0.74% ┊ ⤷ <leptos_meta::RegisteredMetaTag<E,At,Ch> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::hffd952b8b13d74ff + 35783 ┊ 0.73% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::hf76065f4613f066d + 34972 ┊ 0.71% ┊ ⤷ <(A,B,C,D,E,F) as tachys::html::attribute::Attribute<Rndr>>::hydrate::hb063070afaa5a954 + 5787 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::custom::CustomAttr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h6a0f357b4d09846c + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::ha9dc41f36e057364 + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::ha241a5d9a7a486e3 + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::h46096d457def5aef + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::h5fc230def80d9f73 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h89c0e57fc8d1ccb7 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h819ddb44358c5680 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h95669d9e2adcb8f3 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h81dd6179021f1480 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2e643e3c48ec7bf7 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h09ce261cdaa835b5 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcd87bd96cfd51d45 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h890a86e876f9af49 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7e1755f66f878de5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h06ee102e5133ec4f + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h26c2ea3a74fa75e0 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h2b4196b4aa595b44 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h044a716597bd2bd2 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h333b399a3ad80b20 + 5675 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h0e1c2916eeba69e9 + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::ha7902009a1638841 + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::hdd6ac55d268007ff + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::h14f429317ee23d82 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::h44f3a775800d50d5 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h7d30227cb9f31354 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h0d491a37c77d6599 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h11b9c7d5ce28e566 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcddc60b299d71b42 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3b53645101372aac + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h60ea85959269ccea + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7eaac2b66631254f + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2a43cffbde3ee874 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4f17e979b5bda8ef + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h1db3ba28fa4b0af2 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h0d84b5c09247064b + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h6179c19bee15e37b + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h9b97b7325a173d9c + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h5cf4a900dbed3280 + 5675 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h2740d014803f59aa + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h645592eb9866018a + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::h88dd928b48fedaad + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::h15e80bfb2cdc2582 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::h318dc7fa937fa4ac + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hb8395d0fc861c055 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h234c5a5b165ecbf2 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h6e103d488e926bfa + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h852b228edee3fac7 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hed26252af4dbb1c5 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h31cda8acdcc03daa + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hffeea85b9cc1e00f + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h25748c8b40739864 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7dd9fcd969becc31 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h0ac7b8cac49b310b + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h7dfda46df0e938ce + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hf6eb2bf9753e9400 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hc1fa903f8dada2f6 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h5a4b22e9fd305f6d + 5675 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h40506d3218c555c7 + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h34504eb250e372bc + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::h3670ce5a366cca3e + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::h8b09150c2401c674 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::hc42fc55b22cd9f9b + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h969b4139c90b5e7e + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h584cc625cd3f9687 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h4a51e94a20fc45b2 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcc93cc39298864c5 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7823639e60abde9c + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hecce2c2736326815 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h87015e273e99c092 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h761022118f003a2d + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h01add29b073bdbf3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h82611b02228e2aeb + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h7ef325a0c6a90cc1 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h222346d02467fbc7 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h5cda6f6b7b6a3572 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h2912b4045044e33d + 5675 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h9c96dc93312eff1a + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h66444d9e3a1358b8 + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::h16526a7e6c85ace6 + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::h65a3ca00a528d9b3 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::hda4e830eb10e15a7 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hba84fee6624c6b3f + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hd19a7642face5199 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h3ba8d3d4ccfc5df6 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h9ecc3daa5d921699 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc8eca19ddccfc78d + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9ffa84930a5060af + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hf36c3ba25784134e + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hf5a4007184e16f78 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf0ac675e1237fd73 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h61568857545c0958 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h5021c141770ec8aa + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hbe6e3cbfab61796d + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h79f008be528b4cf5 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hd6c2b9ff7e6be2b1 + 5675 ┊ 0.12% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::ha081e9609cbb6eb0 + 5573 ┊ 0.11% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h892dc4011e97b605 + 5160 ┊ 0.11% ┊ ⤷ core::option::Option<T>::map::h0693eb1e8c05892a + 4833 ┊ 0.10% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::hydrate::{{closure}}::hd3871a35ed564926 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::h8bf19f7e53b3d9ac + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hef8e5a93dbe07a23 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h750336722c87dbf9 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h6a0b7a4a6ea945c6 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7efa71f35c544ec1 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hca3f7f5fe2c2be48 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7b26b968b10af75c + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h15c6b9528b6c4d4c + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3dde544d69d5b7e7 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4bbdcfae24261ec4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::hfb0322884f042838 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::ha09743805c31f04e + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hed47e14d0a2e5617 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hb582c1b476ef67fd + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h4fa958407afc3021 + 614 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h5154a716fb6644e6 + 614 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::hadbefb89b98b3774 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h671c95961e629d99 + 80 ┊ 0.00% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::{{closure}}::h00d042ff53ca42e2 + 523 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h45f6c1319616f455 + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h1b1655643479a08b + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h113a0db78cf44246 + 31269 ┊ 0.64% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::ha66648a140d19bea + 25945 ┊ 0.53% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::h8e438201795104a6 + 18396 ┊ 0.37% ┊ ⤷ core::result::Result<T,E>::map::hdfd91ce0bc38fde9 + 17892 ┊ 0.36% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::h5188894c0ea81fac + 16997 ┊ 0.35% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hefa0d66f4c5a5297 + 16985 ┊ 0.35% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h7fa2a09d0e125bcf + 16867 ┊ 0.34% ┊ ⤷ alloc::vec::in_place_collect::<impl alloc::vec::spec_from_iter::SpecFromIter<T,I> for alloc::vec::Vec<T>>::from_iter::hc938480dd770c35b + 6071 ┊ 0.12% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h3433bde36158fa61 + 4524 ┊ 0.09% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::hcff1c40e0eeeba0b + 4469 ┊ 0.09% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h66646020cd87369e + 2138 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hcc3a51b3d7beb900 + 2038 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::hbf922965ad227683 + 1865 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h7bbbcbda0aaf7e7e + 1349 ┊ 0.03% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::hfbbba20be7c05f64 + 763 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::he4b0b155d3f1f540 + 373 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h4b9970629e8503dc + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<ssr_modes_axum::app::PostMetadata,tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,(),ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<ssr_modes_axum::app::PostMetadata>,ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h68a55c45de13ad93 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<ssr_modes_axum::app::PostMetadata>,ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}}>>::{{closure}}>::{{closure}}>::h5bea628fe7611495 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<ssr_modes_axum::app::PostMetadata>,ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}}>>::{{closure}}>::hc5543f010f5b0469 + 1699 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h4a21fb4f840dd2a3 + 1513 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h085b9ed1644b704d + 1408 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h1e086b1ebefe02f0 + 927 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h2e75057314601694 + 55 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h1dbd944d9983bcec + 3764 ┊ 0.08% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}}::hce1cf27831a9558d + 887 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h184db9aef6f87efe + 344 ┊ 0.01% ┊ ⤷ <(A,B) as next_tuple::TupleBuilder>::next_tuple::hbce5533c7cedc809 + 553 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h05f08af68cf663d6 + 209 ┊ 0.00% ┊ ⤷ <(A,) as next_tuple::TupleBuilder>::next_tuple::hcd774ea162375c07 + 425 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h6f2b43b2e47662d3 + 167 ┊ 0.00% ┊ ⤷ <(A,) as next_tuple::TupleBuilder>::next_tuple::h56cb1ab257f0d104 + 373 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::A,At,Ch,Rndr>>::href::heaa696c02b6a3601 + 285 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::A,At,Ch,Rndr>>::href::h4e86eab89afdf724 + 267 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h7bd73eea69b9226b + 101 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h5de5cb835e3596b8 + 122 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hb843b2fc60eb503a + 69 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::ha1e4bc2bc6c7bba1 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::a::h8775f2305caac775 + 2538 ┊ 0.05% ┊ ⤷ <I as alloc::vec::in_place_collect::SpecInPlaceCollect<T,I>>::collect_in_place::he8e36dc34d92a106 + 2169 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::hee359dd539dda256 + 1999 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h6a146fa38154bf81 + 1054 ┊ 0.02% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h018e3b8e89d22361 + 398 ┊ 0.01% ┊ ⤷ alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::h38b1dd0b406cf199 + 136 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha75ae6f18457a1c7 + 78 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::from_output::h3126744ee87c05fe + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h85123dbac915b8b2 + 902 ┊ 0.02% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hc6f4cad265598fb9 + 782 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h54004bd6a0955ff3 + 596 ┊ 0.01% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h2a5779da14ace911 + 492 ┊ 0.01% ┊ ⤷ alloc::vec::in_place_collect::needs_realloc::h1c01e22f677042f9 + 460 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<ssr_modes_axum::app::PostMetadata>>::h5e39311ce39d87c0 + 407 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::h55d8131b86862cf7 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<ssr_modes_axum::app::PostMetadata,alloc::alloc::Global>>::h6c39e4239b28ca29 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::ha1bb20cf4a7612da + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h68b1ca28eb6f9603 + 263 ┊ 0.01% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::forget_allocation_drop_remaining::h18c72b5cc4016ea5 + 88 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::adapters::SourceIter>::as_inner::h933ad4bb98f3b9fe + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::adapters::SourceIter>::as_inner::h1e7d86684d96d719 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<ssr_modes_axum::app::PostMetadata>,ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}::{{closure}}::{{closure}}>>::h712a21f0063a4f7a + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T> as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::h4a7bc9da41cadd06 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h973d810491be7518 + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::he6eb71e97afb7c82 + 69 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h08e694ed1e96c7dd + 4416 ┊ 0.09% ┊ ⤷ <reactive_graph::computed::async_derived::future_impls::AsyncDerivedFuture<T> as core::future::future::Future>::poll::h921aee892833e139 + 3585 ┊ 0.07% ┊ ⤷ <core::result::Result<T,E> as core::clone::Clone>::clone::haa6e9d7a25f63e8b + 2101 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as core::clone::Clone>::clone::h04ec88191e07fca1 + 1899 ┊ 0.04% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h036ca1384abc1c0b + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::h5326cebbe8641d05 + 262 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::spare_capacity_mut::h5518f9f01a1ef4e4 + 121 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostMetadata as core::clone::Clone>::clone::hc5dd6400ea1280f6 + 1151 ┊ 0.02% ┊ ⤷ <server_fn::error::ServerFnError<E> as core::clone::Clone>::clone::h038f428280dfad7b + 29 ┊ 0.00% ┊ ⤷ <server_fn::error::NoCustomError as core::clone::Clone>::clone::h242fbcc27330c123 + 145 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hd0d57a5e5659f8de + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h6f37b12080a6d540 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::hd56a27687712a1e5 + 2354 ┊ 0.05% ┊ ⤷ <leptos_server::resource::Resource<T,Ser> as core::future::into_future::IntoFuture>::into_future::h724cc7e3d5a16fd8 + 2245 ┊ 0.05% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::future::into_future::IntoFuture>::into_future::hf31c6f2272f35227 + 1506 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::get::h790d7786c40c1efd + 1451 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::had4b33430fad2219 + 1373 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::Arena::with::hc964d806f5c808a4 + 1170 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::h2d7f706342e8c6ce + 747 ┊ 0.02% ┊ ⤷ core::option::Option<T>::and_then::ha44cd6d2f4c0900d + 552 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::{{closure}}::h6358ecdd933d0141 + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hfe8be8428e2c0fd4 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h20cf498004f4797a + 315 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h60d0c9030eda0f66 + 62 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfcb9b7cddd7cea48 + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hc8ae8501d0827d68 + 136 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::future::into_future::IntoFuture>::into_future::{{closure}}::hf48c91d4427dd05a + 178 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::future_impls::<impl core::future::into_future::IntoFuture for reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>>::into_future::h5bd12e55ebfedb14 + 2361 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h1c463197b6e2fef1 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hf9cc397759c82aa8 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h643855c568a4d92e + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2abe12ba41f6f2cd + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5053620c43c596d9 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc675c6e5748c2a85 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2c968f7659ade21f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h8c0802d7ac7460a4 + 330 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h31b875c87d1fe4be + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::he72c09f311f99b78 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::{{closure}}::hcaa2cf25e3659197 + 2147 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::hf02b392d8df69efb + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4dfc6cd0567d6e39 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9e7dd9e0969c1fe0 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h3d76561226912879 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8a44fc8d4ffaa7bd + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7eafc96a0786baaa + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h52744cceca8da917 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h5d3e1a4de928f2a4 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h2d4cadd26e686642 + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h6ead3281d0a3b27e + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h05a3aa7a6402991b + 128 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::_::<impl reactive_graph::computed::async_derived::ScopedFuture<Fut>>::project::h9e945517486412f9 + 30249 ┊ 0.62% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::h7c1d1bc45d0e1ee3 + 17883 ┊ 0.36% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::h04f9866fc8f14ac3 + 12556 ┊ 0.26% ┊ ⤷ ssr_modes_axum::app::list_post_metadata::{{closure}}::h7ac8121c13bee3d3 + 11894 ┊ 0.24% ┊ ⤷ server_fn::ServerFn::run_on_client::{{closure}}::ha4b29414489c12ff + 8205 ┊ 0.17% ┊ ⤷ server_fn::ServerFn::run_on_client_with_req::{{closure}}::he85667d8e499d436 + 2783 ┊ 0.06% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::{{closure}}::hd7d7d9a5ff9284a1 + 742 ┊ 0.02% ┊ ⤷ serde_json::de::from_str::h953d00f59f8d7f63 + 641 ┊ 0.01% ┊ ⤷ serde_json::de::from_trait::h167bdb47e6666755 + 592 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h0feb0b1d4cda6a10 + 187 ┊ 0.00% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::{{closure}}::{{closure}}::hf033aeb630e3d504 + 384 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hc8623599293efc93 + 248 ┊ 0.01% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hd731a12141cd3fe4 + 61 ┊ 0.00% ┊ ⤷ server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,Response,CustErr> for T>::from_res::h1b84a5d1dd763320 + 2237 ┊ 0.05% ┊ ⤷ server_fn::codec::url::<impl server_fn::codec::IntoReq<server_fn::codec::url::PostUrl,Request,CustErr> for T>::into_req::hd0db3cc6e0f20204 + 1023 ┊ 0.02% ┊ ⤷ serde_qs::ser::to_string::he42e41495634ebf3 + 467 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::ser::Serialize for ssr_modes_axum::app::ListPostMetadata>::serialize::h5212db4664eea1e4 + 732 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hdf58b5e3a8f93c85 + 127 ┊ 0.00% ┊ ⤷ server_fn::codec::url::<impl server_fn::codec::IntoReq<server_fn::codec::url::PostUrl,Request,CustErr> for T>::into_req::{{closure}}::hd38fcd2f0824db75 + 185 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h1ad5a7163c8d62b4 + 127 ┊ 0.00% ┊ ⤷ server_fn::ServerFn::run_on_client_with_req::hb1f64b10094cb0b7 + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h8c1326a259694e54 + 33 ┊ 0.00% ┊ ⤷ server_fn::ServerFn::run_on_client::hea52139547d2d989 + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::haf97f9e6bea9eecd + 2361 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h54f1a90b7464af78 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5588d4adae8a99ef + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb23e49ffc6f1ea4b + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2dc8b525ffa600ce + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hffa5a22c04ed07d8 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0d2b0c5f1d544ed8 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc0e567a108601c05 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::list_post_metadata::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h0053e7d1c7950f06 + 330 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h23745603ce62ab54 + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hafc07e79bdaa10de + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::{{closure}}::hd25dec7b3d2fa519 + 2147 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::he17beae1d5735c16 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd0da91622c254392 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc90415df8fe8d4fb + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h537686d8bbe46f69 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h93d1739affc34ee6 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h04deeb20f7174f5b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h193fc08ff537cdee + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::list_post_metadata::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h5a45ab4a3e43a45d + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h673ee4bee8d3c2ed + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h66e0a23851ec1ae1 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h185417bb0408db9c + 131 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::_::<impl reactive_graph::computed::async_derived::ScopedFuture<Fut>>::project::h70ef553211a777e5 + 5604 ┊ 0.11% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::ha69f49e782446540 + 3885 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with::h169df49c760d7e3c + 1816 ┊ 0.04% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::{{closure}}::h2a3a3de6f64bedcb + 1724 ┊ 0.04% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hb9eadc01f48deec0 + 1605 ┊ 0.03% ┊ ⤷ reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>::new_with_initial::{{closure}}::{{closure}}::{{closure}}::h1cc9616337a50320 + 1267 ┊ 0.03% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::heb0a794a20fdb606 + 1115 ┊ 0.02% ┊ ⤷ reactive_graph::traits::Get::get::h52f5c03cc32f6e9a + 708 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::Get>::try_get::h9206640136c69a41 + 631 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::he4a7d76e159e1ae3 + 554 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hc79fe483eb47e684 + 447 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h78dd7592a5f361ab + 132 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hb082fca4fccf6f7b + 60 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h379a65d5538580ed + 288 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h6473b7d8c4a34e2b + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Get::get::{{closure}}::h54714df1d84b1678 + 72 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::h1f19741680996509 + 19 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::list_post_metadata::hcb2dd1ae2d309aef + 237 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::ScopedFuture<Fut>::new::h63060a6c2e8a492b + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h72fcf7570683101f + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h91d1e8e653e609a2 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4ca9e315bd4cb150 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h48edc2eddbbb8d7c + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h6a6a22ad8d865069 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha38ae6bfad303152 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::list_post_metadata::{{closure}}>,reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_initial<ssr_modes_axum::app::list_post_metadata::{{closure}},leptos_server::resource::ArcResource<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_encoding<(),ssr_modes_axum::app::list_post_metadata::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}}>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h605faf6994801958 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h6833e8fa927352c1 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h58f4b78abe958abf + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h709daaa8f1ecb60b + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h5f1045548222d937 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hc0e524b77d9eb7f4 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h90651074cf6860a1 + 511 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::he2c002c12acd5382 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h3b891b1f164f99c6 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h705abc660cea5e47 + 267 ┊ 0.01% ┊ ⤷ core::mem::take::hc4801db0e53bf4e0 + 18 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::AsyncState<T> as core::default::Default>::default::h3951d5467d19582d + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>,core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>,core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>>)>::h5abbb770841a1021 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>>::hb7877e52b5845595 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h8320001bb11e755e + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h0a7061ad5c52c032 + 28481 ┊ 0.58% ┊ ⤷ <server_fn::request::browser::BrowserRequest as server_fn::request::ClientReq<CustErr>>::try_new_post::hc5ad01930f2682af + 10984 ┊ 0.22% ┊ ⤷ gloo_net::http::request::RequestBuilder::body::h875007d1c1e009b1 + 9778 ┊ 0.20% ┊ ⤷ <T as core::convert::TryInto<U>>::try_into::h5ae434fd7c95b264 + 9766 ┊ 0.20% ┊ ⤷ <gloo_net::http::request::Request as core::convert::TryFrom<gloo_net::http::request::RequestBuilder>>::try_from::h8bcbe9ecf2ca13c5 + 646 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h4f3267f585a41b7b + 646 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h501a383c3a2cc0d9 + 542 ┊ 0.01% ┊ ⤷ <T as alloc::string::ToString>::to_string::hddd038b0efd46e82 + 540 ┊ 0.01% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h9e1717c8dc3e9cbb + 532 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Request::Request::new_with_str_and_init::he5d03d72abc6fb71 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_RequestInit::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_RequestInit::RequestInit>::into_abi::h2f79815c9f3534f3 + 47 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newwithstrandinit_3fd6fba4083ff2d0 + 459 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::cmp::PartialEq for str>::eq::h69f4f60756a82d77 + 233 ┊ 0.00% ┊ ⤷ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::hf489148f67d1583c + 431 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Request::Request::new_with_str::hf3d9648af824d755 + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newwithstr_36b0b3f97efe096f + 424 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Url::Url::new::h0597dc8cf3e753ac + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_67853c351755d2cf + 399 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h99d6ad704dd3aa48 + 399 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hec2ec371bfd28354 + 332 ┊ 0.01% ┊ ⤷ web_sys::features::gen_RequestInit::RequestInit::headers::h2455c0e76f956bda + 225 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::set_search::h7cf757f89a47a33e + 39 ┊ 0.00% ┊ ⤷ import wbg::__wbg_setsearch_fd62f4de409a2bb3 + 198 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Request::Request::url::h9ed6a0ed9ab9afb0 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_url_7807f6a1fddc3e23 + 171 ┊ 0.00% ┊ ⤷ alloc::string::String::as_str::h7c2578165e8390cc + 102 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hb0f390e0ef9f7700 + 45 ┊ 0.00% ┊ ⤷ <gloo_net::http::request::Request as core::convert::From<web_sys::features::gen_Request::Request>>::from::h4a020c6e9e3a3d9e + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h55364d5527661a78 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Request::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Request::Request>::from_abi::hbcf87887983d9b99 + 62 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h585c736524f1a744 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::query::QueryParams>::hf5c2a8ff9ac9a525 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_RequestInit::RequestInit>::h9b5e8861a983a9fb + 31 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::ops::deref::Deref>::deref::h590ae97dc72b1492 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Url::Url as core::ops::deref::Deref>::deref::h51ceaf9601156cb4 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Headers::Headers as core::ops::deref::Deref>::deref::h2c8675bf69b98adc + 31 ┊ 0.00% ┊ ⤷ gloo_net::http::headers::Headers::into_raw::hf83c288c72b87be9 + 523 ┊ 0.01% ┊ ⤷ web_sys::features::gen_RequestInit::RequestInit::body::h53c4b326204efc61 + 191 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<core::option::Option<T>>>::from::h5999a9bb63559341 + 57 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h9ac599800b4a01cc + 371 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::hd02d44fdd989eca8 + 355 ┊ 0.01% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<alloc::string::String>>::from::he2b4c55e44810d50 + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::h8fb46f52e565bbc6 + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::from_str::h7e28d1f66399c263 + 64 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<&T>>::from::hfece2740dbd225d5 + 7384 ┊ 0.15% ┊ ⤷ gloo_net::http::request::Request::post::h38d6ddf017f18c8c + 4384 ┊ 0.09% ┊ ⤷ gloo_net::http::request::RequestBuilder::new::hb0127a0087420057 + 1771 ┊ 0.04% ┊ ⤷ gloo_net::http::headers::Headers::new::h9a2c69b1e9194e2e + 1260 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::hb5d95cd7b418a439 + 538 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h41156509556ad997 + 150 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::he58c2501916626ae + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Headers::Headers,wasm_bindgen::JsValue>>::h18b62467a228ca3e + 417 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Headers::Headers::new::hc99944a9bd892ca3 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h3a7cdf1820c9ac2c + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_ab6fd82b10560829 + 1675 ┊ 0.03% ┊ ⤷ gloo_net::http::query::QueryParams::new::hdc32c25e0765d394 + 1260 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h4aef5bb0fa95ccf9 + 538 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h30838c9117dce3ae + 150 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::he949a75fd1efa286 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_UrlSearchParams::UrlSearchParams,wasm_bindgen::JsValue>>::h92a48ebb8cb62a84 + 321 ┊ 0.01% ┊ ⤷ web_sys::features::gen_UrlSearchParams::UrlSearchParams::new::hc6c1eacc6399265e + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_4c501d7c115d20a6 + 458 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::h5e572192b8e87540 + 394 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::convert::From<&str>>::from::h2124730b51b9e837 + 305 ┊ 0.01% ┊ ⤷ web_sys::features::gen_RequestInit::RequestInit::new::hff824be55c79ba8d + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::hdda5ec700945012f + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_RequestInit::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_RequestInit::RequestInit>::unchecked_from_js::h25192c0438d5f9f7 + 108 ┊ 0.00% ┊ ⤷ js_sys::Object::new::hc01b26abe3e77407 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_72fb9a18b5ae2624 + 2803 ┊ 0.06% ┊ ⤷ gloo_net::http::request::RequestBuilder::method::h799d7fe5d6a6291f + 1507 ┊ 0.03% ┊ ⤷ <http::method::Method as core::convert::AsRef<str>>::as_ref::h7ccd95ac60d716d2 + 1424 ┊ 0.03% ┊ ⤷ http::method::Method::as_str::hff13173d54325020 + 816 ┊ 0.02% ┊ ⤷ http::method::extension::InlineExtension::as_str::h34271592b6dc6d84 + 641 ┊ 0.01% ┊ ⤷ core::array::<impl core::ops::index::Index<I> for [T; N]>::index::h5b4c2480a6525886 + 541 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::hf9e6bc3b4e2b557b + 427 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index::he2ee559c932b4a22 + 289 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::hfb09c1d4e332a53c + 99 ┊ 0.00% ┊ ⤷ http::method::extension::AllocatedExtension::as_str::h224d34488f7ed2cd + 775 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<http::method::Method>::haa30876bd2c04d3f + 722 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<http::method::Inner>::hc27be7db792425dc + 633 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<http::method::extension::AllocatedExtension>::hea5f950e3fbdd563 + 580 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<[u8]>>::h820e9ea8829116c2 + 527 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h13ee42d407c85a0a + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hee5bca40df9106f6 + 341 ┊ 0.01% ┊ ⤷ web_sys::features::gen_RequestInit::RequestInit::method::h41a55087bd842427 + 1979 ┊ 0.04% ┊ ⤷ server_fn::request::browser::abort_signal::h73622bcd621ff509 + 508 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h035732ca3d905144 + 283 ┊ 0.01% ┊ ⤷ server_fn::request::browser::abort_signal::{{closure}}::h292cafd9397d6eed + 226 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortController::AbortController::signal::hf63c38e72582aaeb + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortSignal::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_AbortSignal::AbortSignal>::from_abi::hc47a571ea942c42e + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_signal_a61f78a3478fd9bc + 495 ┊ 0.01% ┊ ⤷ web_sys::features::gen_AbortController::AbortController::new::hbe338d0d3ae6a463 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h0945515246a0f832 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortController::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_AbortController::AbortController>::from_abi::hcc7f47ab775a4211 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_0d76b0581eca6298 + 339 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hed5c31fa6a919aed + 103 ┊ 0.00% ┊ ⤷ server_fn::request::browser::abort_signal::{{closure}}::h43f83fb75acc4277 + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::ha125cc9e998d9d57 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_AbortController::AbortController,wasm_bindgen::JsValue>>::h2220c36b95431732 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hbb32e4fa5bd44a65 + 1887 ┊ 0.04% ┊ ⤷ gloo_net::http::request::RequestBuilder::header::h7f979b683467a962 + 1713 ┊ 0.03% ┊ ⤷ gloo_net::http::headers::Headers::set::h13571a396d4083ef + 1035 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h646f4b4ccce82392 + 329 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h5d88c742ad4bfea5 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(),wasm_bindgen::JsValue>>::h5bd84bd03d0d4824 + 557 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Headers::Headers::set::h5721b6e8f60ee5a1 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_set_cb0e7a5c2dd66afd + 849 ┊ 0.02% ┊ ⤷ gloo_net::http::request::RequestBuilder::abort_signal::ha88d9c62ba77d566 + 701 ┊ 0.01% ┊ ⤷ web_sys::features::gen_RequestInit::RequestInit::signal::hbe6ff9d05a9d321b + 369 ┊ 0.01% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<core::option::Option<T>>>::from::h7c156f635ba4335e + 235 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h2523b7c6431d8d44 + 178 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<&T>>::from::hba2c0e42b7647613 + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortSignal::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_AbortSignal::AbortSignal>::as_ref::h3b6caa11d8039ab3 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_EventTarget::EventTarget>::as_ref::h4679539a1f6b49a4 + 838 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map_err::hfd55bc39ce719a8a + 127 ┊ 0.00% ┊ ⤷ <server_fn::request::browser::BrowserRequest as server_fn::request::ClientReq<CustErr>>::try_new_post::{{closure}}::h67dae16d7b22fdcf + 812 ┊ 0.02% ┊ ⤷ server_fn::client::get_server_url::h2d9c94f95be6d547 + 299 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get::h2cf804dbbdedff8e + 219 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::h5c458f9a80698f81 + 154 ┊ 0.00% ┊ ⤷ core::option::Option<&T>::copied::hea448c66d7a2e0d9 + 434 ┊ 0.01% ┊ ⤷ js_sys::Reflect::set::h97b2cb1a2f668aaa + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hda6f11f78f183c31 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_set_1f9b04f170055d33 + 308 ┊ 0.01% ┊ ⤷ std::panicking::begin_panic::ha684ddc873bbd2c7 + 206 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::h75211a6aeadfaa37 + 175 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic::{{closure}}::hac6cd7f68edd34a7 + 305 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hbbaa28b12206171e + 208 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::new::hbd69469e3779218b + 199 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::From<&str>>::from::h8f0993f25183a5f7 + 133 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::from_str::h1ef51b8f0a006875 + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::hdfc4b9a6fc7fb8c6 + 160 ┊ 0.00% ┊ ⤷ alloc::string::String::with_capacity::h837b852f527fa5c7 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_AbortSignal::AbortSignal>>::h5ec23523c531f5c3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_AbortSignal::AbortSignal>::h1814f2292af957dd + 121 ┊ 0.00% ┊ ⤷ <&mut T as core::convert::AsRef<U>>::as_ref::h3536eb5a6b203143 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_RequestInit::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_RequestInit::RequestInit>::as_ref::h343063d37f044000 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h502748f845b1af6b + 90 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<bool,wasm_bindgen::JsValue>>::h83e230cae425c23f + 79 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::is_ok::hafe6a6f67ba78685 + 77 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::hee55bfaaf9db8a54 + 71 ┊ 0.00% ┊ ⤷ alloc::string::String::push_str::hf276e3e55e7ad2b3 + 14 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::undefined::h1bb2e2efb9eceb13 + 27113 ┊ 0.55% ┊ ⤷ <serde_json::error::JsonUnexpected as core::fmt::Display>::fmt::h3190275d33b72320 + 24196 ┊ 0.49% ┊ ⤷ ryu::buffer::Buffer::format::h6b4e2bcaa193dfff + 23489 ┊ 0.48% ┊ ⤷ ryu::buffer::Buffer::format_finite::h555230b96459ce98 + 23096 ┊ 0.47% ┊ ⤷ <f64 as ryu::buffer::Sealed>::write_to_ryu_buffer::he1e9441bb7e1126d + 23024 ┊ 0.47% ┊ ⤷ ryu::pretty::format64::h3e8eac6bedded899 + 10851 ┊ 0.22% ┊ ⤷ ryu::d2s::d2d::hd39ea8aff9dfbe92 + 1401 ┊ 0.03% ┊ ⤷ ryu::d2s_intrinsics::mul_shift_all_64::h6fd1ed462078fa79 + 722 ┊ 0.01% ┊ ⤷ ryu::d2s_intrinsics::mul_shift_64::hde8330f3889b0010 + 96 ┊ 0.00% ┊ ⤷ __lshrti3 + 7 ┊ 0.00% ┊ ⤷ type[46]: (i32, i64, i64, i32) -> nil + 7 ┊ 0.00% ┊ ⤷ type[59]: (i64, i32, i32) -> i64 + 43 ┊ 0.00% ┊ ⤷ core::ptr::write::h6bf1d5f6e4ff5f23 + 10 ┊ 0.00% ┊ ⤷ type[60]: (i64, i32, i32, i32, i32, i32) -> i64 + 451 ┊ 0.01% ┊ ⤷ ryu::d2s_intrinsics::multiple_of_power_of_5::ha331109da1a96bcc + 361 ┊ 0.01% ┊ ⤷ ryu::d2s_intrinsics::pow5_factor::h80ab40f1bc0b23ac + 448 ┊ 0.01% ┊ ⤷ ryu::d2s_intrinsics::multiple_of_power_of_2::h6fb93b66d93eb1db + 399 ┊ 0.01% ┊ ⤷ ryu::common::pow5bits::h66e0c49dfadade7c + 331 ┊ 0.01% ┊ ⤷ ryu::common::log10_pow2::h1aa8bb9688b1fbb6 + 331 ┊ 0.01% ┊ ⤷ ryu::common::log10_pow5::h11b54048934cacda + 159 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_unchecked::h4df2189b5f6f7a64 + 84 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_unchecked::h56ecb6bf2eb33e6f + 45 ┊ 0.00% ┊ ⤷ ryu::d2s_intrinsics::div100::h3a61b416a375dfbd + 44 ┊ 0.00% ┊ ⤷ ryu::d2s_intrinsics::div5::h00bdd4a3c8229710 + 44 ┊ 0.00% ┊ ⤷ ryu::d2s_intrinsics::div10::hf7dd1496b6911052 + 2603 ┊ 0.05% ┊ ⤷ ryu::pretty::mantissa::write_mantissa_long::hbbc92771b6ed8763 + 1420 ┊ 0.03% ┊ ⤷ ryu::pretty::mantissa::write_mantissa::h93f14de76ba20388 + 1745 ┊ 0.04% ┊ ⤷ ryu::pretty::exponent::write_exponent3::h998f5afac4d798b4 + 1108 ┊ 0.02% ┊ ⤷ ryu::d2s::decimal_length17::hba78320fd31247ba + 352 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::hd6e8d1b0551ff585 + 269 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h199b288182d09d6e + 52 ┊ 0.00% ┊ ⤷ <isize as core::iter::range::Step>::forward_unchecked::hfa4c8d335d1fcb34 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h63049c173abd164a + 5 ┊ 0.00% ┊ ⤷ type[54]: (i64) -> i32 + 6 ┊ 0.00% ┊ ⤷ type[67]: (f64, i32) -> i32 + 113 ┊ 0.00% ┊ ⤷ core::slice::raw::from_raw_parts::h028623325f2ac35a + 293 ┊ 0.01% ┊ ⤷ <f64 as ryu::buffer::Sealed>::format_nonfinite::h6072200c1b189081 + 163 ┊ 0.00% ┊ ⤷ <f64 as ryu::buffer::Sealed>::is_nonfinite::h0473c5eb6be7f6c4 + 38 ┊ 0.00% ┊ ⤷ core::f64::<impl f64>::to_bits::h590c2fc0249bb105 + 38 ┊ 0.00% ┊ ⤷ core::f64::<impl f64>::to_bits::h18e4991f8ae471a7 + 5 ┊ 0.00% ┊ ⤷ type[65]: (f64) -> i64 + 2153 ┊ 0.04% ┊ ⤷ <serde::de::Unexpected as core::fmt::Display>::fmt::h1a72f6a0dfe186d9 + 226 ┊ 0.00% ┊ ⤷ ryu::buffer::Buffer::new::ha733065fd9767446 + 26171 ┊ 0.53% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::hbde2b46d20b43723 + 20847 ┊ 0.42% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::hf83de54e2645cf6a + 9490 ┊ 0.19% ┊ ⤷ leptos::component::component_view::h7deb99ee71551024 + 9433 ┊ 0.19% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::h4eec6b5853f77b42 + 9129 ┊ 0.19% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h933f66e92db371ff + 8825 ┊ 0.18% ┊ ⤷ core::ops::function::Fn::call::h9810e8d0fd349940 + 8523 ┊ 0.17% ┊ ⤷ leptos_meta::meta_tags::Meta::hef5c06d30c6d28e4 + 7685 ┊ 0.16% ┊ ⤷ reactive_graph::graph::subscriber::untrack::hb0382d15558679f7 + 7597 ┊ 0.15% ┊ ⤷ leptos_meta::meta_tags::Meta::{{closure}}::h560fe5617a3fd5eb + 7388 ┊ 0.15% ┊ ⤷ leptos_meta::meta_tags::__Meta::h55f29979cff6b799 + 1046 ┊ 0.02% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,At,(),Rndr>>::content::h9ccb4108f16c6f86 + 336 ┊ 0.01% ┊ ⤷ <(A,B,C,D,E) as next_tuple::TupleBuilder>::next_tuple::h9c1387e777bac459 + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::content::h2875c4c9a0edd14a + 954 ┊ 0.02% ┊ ⤷ tachys::html::attribute::global::GlobalAttributes::itemprop::h8ef45312d3a8e8a7 + 787 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::add_attr::AddAnyAttr<Rndr>>::add_any_attr::h4e37575003794f26 + 271 ┊ 0.01% ┊ ⤷ <(A,B,C,D) as tachys::html::attribute::NextAttribute<Rndr>>::add_any_attr::h8b7a3597b8835006 + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::itemprop::hf74fdff5fc70ca36 + 793 ┊ 0.02% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,At,(),Rndr>>::http_equiv::h1bcac6b1d9c9226c + 262 ┊ 0.01% ┊ ⤷ <(A,B,C) as next_tuple::TupleBuilder>::next_tuple::h38a86be47ef215dd + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::http_equiv::hb74fe99bc0dc1a21 + 590 ┊ 0.01% ┊ ⤷ tachys::html::attribute::custom::CustomAttribute::attr::h0d2f4099151eeff8 + 451 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::add_attr::AddAnyAttr<Rndr>>::add_any_attr::h4230607039eb92e7 + 166 ┊ 0.00% ┊ ⤷ <(A,B) as tachys::html::attribute::NextAttribute<Rndr>>::add_any_attr::hbda06af8ff8bdd9b + 570 ┊ 0.01% ┊ ⤷ leptos_meta::register::h6ca391867b7eae0a + 377 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,At,(),Rndr>>::name::he709851166492efd + 92 ┊ 0.00% ┊ ⤷ <(A,) as next_tuple::TupleBuilder>::next_tuple::h233d1c3e1d1fba0d + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::name::h10458eb35576063b + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h42717b86592b04f9 + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h828109400e1da111 + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h8c14f92b151986bc + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h9586a2c413155262 + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h9e86c95f156c1834 + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h94852d7f34c760fb + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::ha785071fceb36209 + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h8c46e97b5d257974 + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::he19bc1fb1ef6ef09 + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h90ee5c77a99660e1 + 350 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hf2d74f31efe76a09 + 78 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::h6ecc48aeec31397d + 311 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,At,(),Rndr>>::charset::h026d330ce0b49122 + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::charset::he8f758f933c09af8 + 78 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h2c474c0343aab43d + 17 ┊ 0.00% ┊ ⤷ type[23]: (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) -> nil + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::meta::h7fa24feb92bb66f4 + 2354 ┊ 0.05% ┊ ⤷ <leptos_server::resource::Resource<T,Ser> as core::future::into_future::IntoFuture>::into_future::h339229d29903c7ef + 2245 ┊ 0.05% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::future::into_future::IntoFuture>::into_future::h0d5481d28a379236 + 1506 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::get::hda084a2e1aaa4bce + 1451 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::h753c743f1448752f + 1373 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::Arena::with::h314de6de0b752329 + 1170 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::hd84b22002ab50170 + 747 ┊ 0.02% ┊ ⤷ core::option::Option<T>::and_then::heb752b28ff073679 + 552 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::{{closure}}::h777fb90b99315352 + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::h4209a8885efc7a4f + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h8cf57bb342002672 + 315 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h66914f352d122791 + 62 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h70de4d29922430df + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h9fdc66a3d274f8d2 + 136 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::future::into_future::IntoFuture>::into_future::{{closure}}::h9bc58b19a58e2b92 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::future_impls::<impl core::future::into_future::IntoFuture for reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T>>::into_future::hcf4bb8f90a5912ae + 1881 ┊ 0.04% ┊ ⤷ <reactive_graph::computed::async_derived::future_impls::AsyncDerivedFuture<T> as core::future::future::Future>::poll::h5ba53ec73f313e14 + 947 ┊ 0.02% ┊ ⤷ <core::result::Result<T,E> as core::clone::Clone>::clone::hc8e8b3d2dbdc37b1 + 596 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::clone::Clone>::clone::h2ed55b1c6ff7e1df + 245 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::Post as core::clone::Clone>::clone::hb7ba4cfa62ebe70f + 145 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::he7a9682952c8281d + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h5b3ad29dbabefd0a + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h62e9cac7e43e8533 + 1619 ┊ 0.03% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::h3855123faca0e423 + 248 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::he69eb413bcee7e6d + 148 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::h55105cfecaf5d0db + 74 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::{{closure}}::h4134807f0556f783 + 148 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::hc5199852fb1563bb + 74 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::{{closure}}::h928c5b5f4ba5e42d + 148 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::hdd5ed327662ee9bf + 74 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::{{closure}}::hdef60220b11ee2cc + 148 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::he9f11844d2159020 + 74 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::{{closure}}::h4ea4afd91a657672 + 92 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::h0bf8e44d5c49f59a + 46 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,__content,__attrs)>::build::{{closure}}::h393dbd4a3dbc298c + 50 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::h38fc8ccb0f8d3f74 + 50 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::hccf424c2aed5f67f + 977 ┊ 0.02% ┊ ⤷ <T as core::convert::Into<U>>::into::h31efd1f34bc53a4e + 890 ┊ 0.02% ┊ ⤷ <leptos::text_prop::TextProp as core::convert::From<alloc::string::String>>::from::hbe352091709efa24 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::ha2f55ca2dc860742 + 219 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<str> as core::convert::From<alloc::string::String>>::from::hfdc838b022a530b9 + 236 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,__name,__property,__http_equiv,__itemprop,(),__attrs)>::content::hf4d25656e139f984 + 207 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaPropsBuilder<(__charset,(),__property,__http_equiv,__itemprop,__content,__attrs)>::name::h4f3c3a5648ccf0d8 + 189 ┊ 0.00% ┊ ⤷ leptos_meta::title::TitlePropsBuilder<(__formatter,())>::text::h79dd3f49068e0694 + 122 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h0cb7e21fb1474157 + 122 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h13694cb2304a944a + 75 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h7c86db1f7fadfe93 + 24 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::h3a34225e8613007d + 16 ┊ 0.00% ┊ ⤷ <leptos_meta::meta_tags::MetaProps as leptos::component::Props>::builder::ha27e965bab1d6fac + 8 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::MetaProps::builder::h1ffcf33ee273d8bf + 2361 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h8cd060a4973b48df + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4e14206e2ae15752 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::haa3a5d34419e0790 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hcb2c08c68c1d0561 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hadc0825989dd1280 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hdfeba293393032b4 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hb84a1886577e7b3f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::h978f8c035308e660 + 330 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::hbd4c14f8c67ba111 + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hcbfee96b77e1331a + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::{{closure}}::hd783d57bca8f1700 + 2147 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::hf106003a131cdf58 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6f346fb4914e504b + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hfe77f56b026e7f12 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h6a139eb50a4ec7d3 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hdb626c20429816d1 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc25724e050556510 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8735de9aebbdd751 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::task::poll::Poll<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>>,<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as core::future::future::Future>::poll::{{closure}}>::{{closure}}>::hb968a5eaab9f28b0 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h5ddf9a9c94b2eb4a + 229 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hb9050a7c40284785 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::ScopedFuture<Fut> as core::future::future::Future>::poll::{{closure}}::h28915ead4423fb4f + 128 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::_::<impl reactive_graph::computed::async_derived::ScopedFuture<Fut>>::project::hd4d5a713927f9078 + 24765 ┊ 0.50% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::{{closure}}::h2b8add0f621e045c + 23655 ┊ 0.48% ┊ ⤷ <futures_util::future::try_future::UnwrapOrElse<Fut,F> as core::future::future::Future>::poll::h2e04bfd74bf01cf9 + 23469 ┊ 0.48% ┊ ⤷ <futures_util::future::future::Map<Fut,F> as core::future::future::Future>::poll::ha2dc49c2945b8ffb + 23283 ┊ 0.47% ┊ ⤷ <futures_util::future::future::map::Map<Fut,F> as core::future::future::Future>::poll::h68ded7d3bf4e5c3b + 20807 ┊ 0.42% ┊ ⤷ <futures_util::future::try_future::into_future::IntoFuture<Fut> as core::future::future::Future>::poll::h75023bf3992f3360 + 20621 ┊ 0.42% ┊ ⤷ <F as futures_core::future::TryFuture>::try_poll::h0235f909b85fcfa7 + 20529 ┊ 0.42% ┊ ⤷ <futures_util::abortable::Abortable<Fut> as core::future::future::Future>::poll::hbe89337c74a09063 + 20437 ┊ 0.42% ┊ ⤷ futures_util::abortable::Abortable<T>::try_poll::h945fe7c09c02d8c2 + 19404 ┊ 0.40% ┊ ⤷ <futures_util::abortable::Abortable<Fut> as core::future::future::Future>::poll::{{closure}}::h6e357da2b78fd436 + 19294 ┊ 0.39% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}::hed3f013a09193d86 + 16104 ┊ 0.33% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::Inner::pull::{{closure}}::h72cc15e9da400afc + 1353 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::resize::h8d73bef77d9bdabb + 937 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::extend_with::h7c64cf3c3bc1f759 + 103 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::set_len_on_drop::SetLenOnDrop>::hf9dcd7eb594f8e44 + 50 ┊ 0.00% ┊ ⤷ <alloc::vec::set_len_on_drop::SetLenOnDrop as core::ops::drop::Drop>::drop::ha64addbd78ef70df + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::hc232d6f29416c845 + 230 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::h8e0e0dde085c3460 + 1256 ┊ 0.03% ┊ ⤷ js_sys::Uint8Array::copy_from::h61eeece4aa092f5a + 539 ┊ 0.01% ┊ ⤷ js_sys::Uint8Array::view::h69869b1091fb73a6 + 206 ┊ 0.00% ┊ ⤷ js_sys::WebAssembly::Memory::buffer::hf2c27d049266a871 + 57 ┊ 0.00% ┊ ⤷ js_sys::WebAssembly::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::WebAssembly::Memory>::into_abi::h385eb225287edc6d + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_buffer_12d079cc21e14bdb + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::h8742ed5d8f094970 + 31 ┊ 0.00% ┊ ⤷ js_sys::WebAssembly::_::<impl wasm_bindgen::cast::JsCast for js_sys::WebAssembly::Memory>::unchecked_from_js_ref::h42c39d660e0ad747 + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::memory::hd4b44315bdff3619 + 24 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_memory + 189 ┊ 0.00% ┊ ⤷ js_sys::Uint8Array::set::h3f5075be84e3cbca + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_set_a47bac70306a19a7 + 149 ┊ 0.00% ┊ ⤷ js_sys::Uint8Array::length::haeb105b8ae32c5dd + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_length_c20a40f15020d68a + 31 ┊ 0.00% ┊ ⤷ <js_sys::Uint8Array as core::ops::deref::Deref>::deref::h2a02b446b8a48f49 + 1027 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::hc1fdf1a29919f413 + 305 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h8fba29843cc5cc2a + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h797be5ab24b79945 + 1016 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h0369d55ff51d46d2 + 294 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h9d3c0a6ca8eb2380 + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::ha2477ba371f2d434 + 1016 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h17157b2fbdf72c5d + 294 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h6e90435416645295 + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h780a226325543099 + 962 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Error>::h97d49df05b1d039f + 909 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::repr_unpacked::Repr>::hc7ad4577a15076bf + 856 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::ErrorData<alloc::boxed::Box<std::io::error::Custom>>>::h9768ddeaff2e2eed + 767 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<std::io::error::Custom>>::h87066d72a2f39e62 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Custom>::h58c312bb866e5f5f + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::h703268f6691c4c92 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9e4d528d77fc2779 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hd02b79c276e5bbc3 + 731 ┊ 0.01% ┊ ⤷ <futures_util::io::read::Read<R> as core::future::future::Future>::poll::h9a5554f88db78028 + 482 ┊ 0.01% ┊ ⤷ <&mut T as futures_io::if_std::AsyncRead>::poll_read::he809059528f71923 + 233 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as futures_io::if_std::AsyncRead>::poll_read::hc98ddd86bf48cc07 + 57 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::heb2ba9b60565d674 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::h937696a36319a232 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h888eac9f5bf2aac6 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::h4cc25a706ec9a1fc + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::hee675a32ab6fcfa5 + 542 ┊ 0.01% ┊ ⤷ <T as alloc::string::ToString>::to_string::h8177b2cc22b03b07 + 539 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController::byob_request::h2f94b2831adee65b + 359 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::hea4e9e6f86eecbbd + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableStreamByobRequest::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest>::from_abi::ha7d9b5fde63fcf5d + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableStreamByobRequest::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest>::is_none::he99890935ab3caf9 + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_byobRequest_72fca99f9c32c193 + 516 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::Index<I>>::index::h1f0a99585f2490b3 + 289 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::h1aae221a208a2600 + 454 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest::view::ha0076ffff6ae053d + 281 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::h4d8c3254c6805085 + 68 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for js_sys::Object>::is_none::h6fb22a305c518b43 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_view_7f0ce470793a340f + 382 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest::respond_with_u32::h35201401bd78e91d + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_respond_b1a43b2e3a06d525 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for u32>::into_abi::h6c418868b3156942 + 379 ┊ 0.01% ┊ ⤷ wasm_streams::util::checked_cast_to_u32::h614e2f7cbcc57bb6 + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h22b82f8cd389767e + 312 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController::close::hbe679da26c5ec2fa + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_close_184931724d961ccc + 290 ┊ 0.01% ┊ ⤷ js_sys::Error::new::h2a79ccbafba0da4a + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Error>::from_abi::hb87821a77f05b7d5 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_28c511d9baebfa89 + 246 ┊ 0.01% ┊ ⤷ js_sys::Uint8Array::new_with_byte_offset_and_length::hf71fda2251e0ee6e + 56 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newwithbyteoffsetandlength_aa4a17c33a06e5cb + 229 ┊ 0.00% ┊ ⤷ futures_util::io::AsyncReadExt::read::h977647bb22138cf1 + 64 ┊ 0.00% ┊ ⤷ futures_util::io::read::Read<R>::new::h67fedaea6ac4ecb2 + 55 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::hf4e838b20ba2b6fc + 228 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::Inner::discard::hf0480d8ee0212add + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::h4de30becd4c3f0f5 + 227 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::IndexMut<I>>::index_mut::h5f480fe9a1410807 + 227 ┊ 0.00% ┊ ⤷ js_sys::Uint8Array::buffer::h3e0c4570c2b04fa0 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::ArrayBuffer>::from_abi::h78e001c9cd5e4f29 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_buffer_dd7f74bc60f1faab + 153 ┊ 0.00% ┊ ⤷ js_sys::Uint8Array::byte_length::hb12ce647d8fb968d + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_byteLength_58f7b4fab1919d44 + 153 ┊ 0.00% ┊ ⤷ js_sys::Uint8Array::byte_offset::hdb96a1386f7a631f + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_byteOffset_81d60f7392524f62 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::hbc7ca4aa80c82c0c + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Uint8Array>::unchecked_from_js::h626b3c0a94aebadd + 119 ┊ 0.00% ┊ ⤷ wasm_streams::util::clamp_to_usize::h50b221e5916643c6 + 114 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h44031649a3777bc0 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<js_sys::Error> for wasm_bindgen::JsValue>::from::hc077772a8734bf48 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hfaf69eeeb3c87a75 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableStreamByobRequest::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest>::into_abi::h6e3dc2dfe0cd9eb3 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableByteStreamController::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController>::into_abi::h95aab236e35e57f7 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Uint8Array>::into_abi::hf0141676514f6196 + 55 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h8b3f7f1acb373711 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::ArrayBuffer>::h32075af66ce2e832 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h45c5b42271baeb6a + 31 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::ops::deref::Deref>::deref::h1c41285175420a97 + 31 ┊ 0.00% ┊ ⤷ <js_sys::ArrayBuffer as core::ops::deref::Deref>::deref::hf0bfd23a390d429b + 1466 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h7b32798971192807 + 647 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::ha34f86c0bf15c326 + 179 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hbcfed21368aacac4 + 84 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::cell::RefMut<wasm_streams::readable::into_underlying_byte_source::Inner>,core::cell::BorrowMutError>>::hb5384c950d5be85a + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h9da7c9bfdf21f42e + 184 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h765bc1b4e8e6fbfa + 61 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::Inner::pull::hbdc0b2740c73f6cb + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h7c0640fec67730db + 132 ┊ 0.00% ┊ ⤷ futures_util::abortable::_::<impl futures_util::abortable::Abortable<T>>::project::h82da10a76611df6b + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::he5ca3629a9f60e63 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h7fb44ed0ee3ff8a8 + 106 ┊ 0.00% ┊ ⤷ futures_util::abortable::Abortable<T>::is_aborted::h1e6242619057ae2c + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h66294133fe464db9 + 87 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::into_future::_::<impl futures_util::future::try_future::into_future::IntoFuture<Fut>>::project::h427b2e45fb8134ee + 989 ┊ 0.02% ┊ ⤷ futures_util::future::future::map::_::<impl futures_util::future::future::map::Map<Fut,F>>::project_replace::h63050fcfe15dba6c + 298 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<pin_project_lite::__private::UnsafeOverwriteGuard<futures_util::future::future::map::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>>::h388b34aec315dad4 + 245 ┊ 0.00% ┊ ⤷ <pin_project_lite::__private::UnsafeOverwriteGuard<T> as core::ops::drop::Drop>::drop::hcf04fec9ed5221cc + 63 ┊ 0.00% ┊ ⤷ core::ptr::read::hafda16a9ff09fbe6 + 63 ┊ 0.00% ┊ ⤷ core::ptr::write::he0dcf8db77f6fa3f + 166 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(pin_project_lite::__private::UnsafeDropInPlaceGuard<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>,())>::h180eaa289dd68b46 + 113 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<pin_project_lite::__private::UnsafeDropInPlaceGuard<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>>::hce94f9ac238e115a + 60 ┊ 0.00% ┊ ⤷ <pin_project_lite::__private::UnsafeDropInPlaceGuard<T> as core::ops::drop::Drop>::drop::h3411ccbc9a2b3b13 + 120 ┊ 0.00% ┊ ⤷ pin_project_lite::__private::UnsafeOverwriteGuard<T>::new::hcb4997bcabdf08d9 + 45 ┊ 0.00% ┊ ⤷ pin_project_lite::__private::UnsafeDropInPlaceGuard<T>::new::hff4e768337dad779 + 29 ┊ 0.00% ┊ ⤷ core::ptr::read::hab2af1decb032f3c + 636 ┊ 0.01% ┊ ⤷ <futures_util::fns::UnwrapOrElseFn<F> as futures_util::fns::FnOnce1<core::result::Result<T,E>>>::call_once::h3d8417ff99ed2b31 + 524 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::h727f08eadfbe09bc + 240 ┊ 0.00% ┊ ⤷ <futures_util::fns::UnwrapOrElseFn<F> as futures_util::fns::FnOnce1<core::result::Result<T,E>>>::call_once::{{closure}}::hd98334fca8b2e23f + 166 ┊ 0.00% ┊ ⤷ <T as futures_util::fns::FnOnce1<A>>::call_once::heb2fa45bf1969eb2 + 92 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}::h47fccb9fca789a54 + 226 ┊ 0.00% ┊ ⤷ futures_util::future::future::map::_::<impl futures_util::future::future::map::Map<Fut,F>>::project::he364f5bb2bcc730d + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h8b0f8bcdd5db9156 + 87 ┊ 0.00% ┊ ⤷ futures_util::future::future::_::<impl futures_util::future::future::Map<Fut,F>>::project::h84b64c13216d28b6 + 87 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::_::<impl futures_util::future::try_future::UnwrapOrElse<Fut,F>>::project::h38641e4ac3f6ba2a + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h18b062a2bb14c383 + 23869 ┊ 0.49% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h277911e7a0ff1dd8 + 23816 ┊ 0.48% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::{{closure}}::h5e701f67dc55f809 + 23709 ┊ 0.48% ┊ ⤷ core::ops::function::FnOnce::call_once::ha680862fdc14b188 + 23646 ┊ 0.48% ┊ ⤷ ssr_modes_axum::app::__App::{{closure}}::h941dd536741554b3 + 15195 ┊ 0.31% ┊ ⤷ leptos::component::component_view::hb9fdec8c42004da8 + 15138 ┊ 0.31% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::h16bca1c438ba5e7d + 14789 ┊ 0.30% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h18a881074c7044ff + 14440 ┊ 0.29% ┊ ⤷ core::ops::function::Fn::call::h3c73a7024fbf8849 + 14093 ┊ 0.29% ┊ ⤷ routing::components::Routes::h9a7166f87705ab47 + 13024 ┊ 0.27% ┊ ⤷ reactive_graph::graph::subscriber::untrack::hd832cbb7502a171e + 12936 ┊ 0.26% ┊ ⤷ routing::components::Routes::{{closure}}::h969f15c6f8eef259 + 12596 ┊ 0.26% ┊ ⤷ routing::components::__Routes::h0cbf11f4346efc32 + 5101 ┊ 0.10% ┊ ⤷ reactive_graph::owner::context::use_context::h15b762bc4e6a64a1 + 5018 ┊ 0.10% ┊ ⤷ core::option::Option<T>::and_then::h3d3d24763113fb42 + 4750 ┊ 0.10% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::h5e81a462979bd6d6 + 4697 ┊ 0.10% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::h5196a18426e5bee7 + 1736 ┊ 0.04% ┊ ⤷ core::option::Option<&T>::cloned::he4773e5d5c15d570 + 1572 ┊ 0.03% ┊ ⤷ <routing::components::RouterContext as core::clone::Clone>::clone::hf0984fb7b303f9aa + 745 ┊ 0.02% ┊ ⤷ <routing::location::Location as core::clone::Clone>::clone::hd43b5ef4f3caae5d + 77 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as core::clone::Clone>::clone::h166efd72475b8fa5 + 77 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as core::clone::Clone>::clone::h84660b2e75136d4c + 77 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as core::clone::Clone>::clone::hcd2ea89c236f0b53 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::h18210d7f656729f3 + 480 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hb7c4c9f7f22093a5 + 414 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::hb77f8bb415dd6486 + 261 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hec2bf91a6a868b3e + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h926a20b6015ccabd + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h269c7fba2d84e7c6 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h4cccd21eaafea828 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hab87e045f9419edb + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h5267e3f4a0592772 + 164 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h8603c59e24a9b833 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<routing::components::RouterContext>>::hbd9e861047371b2c + 1751 ┊ 0.04% ┊ ⤷ core::option::Option<T>::map::h4195c8617d4e94d1 + 1355 ┊ 0.03% ┊ ⤷ routing::components::__Routes::{{closure}}::hbd2e6d8f27666863 + 980 ┊ 0.02% ┊ ⤷ oco::Oco<T>::upgrade_inplace::h6f80e0a6d159e228 + 488 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<str> as core::convert::From<&str>>::from::h1c7964f97406652d + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::h23988d6542eac9a2 + 266 ┊ 0.01% ┊ ⤷ <oco::Oco<T> as core::convert::From<alloc::borrow::Cow<T>>>::from::h2551960b43a3e6e5 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h3b8a6dba85ffeb73 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h9bb397541dbc8abe + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hdc73f2d61a8ed8d9 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h4f0b66f62a23c472 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hd6ee98f83b1ea3f6 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h7d2d1943bac18a09 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h66f6ac9c01ac2c8d + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::he90355f00529d211 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::he71f658a155b5da5 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::he5394ecb22e4bd72 + 314 ┊ 0.01% ┊ ⤷ routing::matching::Routes<Children,Rndr>::new::hab2e41d08df4abab + 216 ┊ 0.00% ┊ ⤷ routing::components::RouteChildren<Children>::into_inner::hdc072448f36a16d1 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h9bc547f1518a447e + 145 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hdca4436fc12a2a1d + 5899 ┊ 0.12% ┊ ⤷ <routing::components::RouteChildren<Children> as leptos::children::ToChildren<F>>::to_children::h9300ae1b505061f3 + 5561 ┊ 0.11% ┊ ⤷ core::ops::function::FnOnce::call_once::he2ee070d9e871534 + 5498 ┊ 0.11% ┊ ⤷ ssr_modes_axum::app::__App::{{closure}}::{{closure}}::hf8048aa667399cc5 + 1233 ┊ 0.03% ┊ ⤷ leptos::component::component_view::h7145d3973862b3f5 + 1176 ┊ 0.02% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::h303635b3e5027cbb + 1001 ┊ 0.02% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h5c4f5afca4aeebce + 826 ┊ 0.02% ┊ ⤷ core::ops::function::Fn::call::hfbd183c6f8a2ef41 + 653 ┊ 0.01% ┊ ⤷ routing::components::Route::h4654cf15d18371d6 + 441 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h34274052c669ad97 + 353 ┊ 0.01% ┊ ⤷ routing::components::Route::{{closure}}::h7697bfdc9b3cf2a4 + 244 ┊ 0.00% ┊ ⤷ routing::components::__Route::h72ac3ee286b2b8f7 + 187 ┊ 0.00% ┊ ⤷ routing::matching::nested::NestedRoute<Segments,(),(),ViewFn,R>::new::hfefed62d0ead9f68 + 875 ┊ 0.02% ┊ ⤷ leptos::component::component_view::h09a332e24bb49a43 + 818 ┊ 0.02% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::hc9411a76c1106b70 + 709 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h389327b6e4ce4688 + 600 ┊ 0.01% ┊ ⤷ core::ops::function::Fn::call::h3b12db07f0c08180 + 493 ┊ 0.01% ┊ ⤷ routing::components::Route::h9c0bc1919a5c2e9a + 367 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h56223fe8fd3a8007 + 279 ┊ 0.01% ┊ ⤷ routing::components::Route::{{closure}}::h11a01e42a2ff908e + 240 ┊ 0.00% ┊ ⤷ routing::components::__Route::h15ab85307a793f0e + 167 ┊ 0.00% ┊ ⤷ routing::matching::nested::NestedRoute<Segments,(),(),ViewFn,R>::new::h2190f79fde9c56db + 414 ┊ 0.01% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,((Segments,),(ViewFn,),__ssr)>::build::h3897a1b5a06202b0 + 87 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::ha272230e7a3bb871 + 31 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::h82fdc27a2c1b71dc + 332 ┊ 0.01% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,((Segments,),(ViewFn,),__ssr)>::build::hc2dedc4a6ebc9eed + 138 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::hefdca2dc21996d63 + 90 ┊ 0.00% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,((Segments,),(ViewFn,),__ssr)>::build::{{closure}}::h19f2c9f8a26e3181 + 42 ┊ 0.00% ┊ ⤷ <routing::ssr_mode::SsrMode as core::default::Default>::default::h77981a757c7f97d1 + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h1158c3fc920281ff + 278 ┊ 0.01% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,(__path,__view,())>::ssr::hbc43447cb75e345f + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicU16::fetch_add::he0c8a72bf0481c98 + 207 ┊ 0.00% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,((),__view,__ssr)>::path::ha732cbc5efbffeaa + 207 ┊ 0.00% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,(__path,(),__ssr)>::view::h3ba16732ce6e15ce + 135 ┊ 0.00% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,((),__view,__ssr)>::path::hbc2de71c0b1fef02 + 120 ┊ 0.00% ┊ ⤷ routing::components::RoutePropsBuilder<Segments,View,ViewFn,(__path,(),__ssr)>::view::h9736d78e42c47196 + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h46de6052a6886638 + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::he90eadc3734440c1 + 21 ┊ 0.00% ┊ ⤷ <routing::components::RouteProps<Segments,View,ViewFn> as leptos::component::Props>::builder::hb54c62be8cb31675 + 13 ┊ 0.00% ┊ ⤷ routing::components::RouteProps<Segments,View,ViewFn>::builder::h2d93b2bcd20605a7 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h82dea79c74de0ed6 + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::ha3f8fc49c4d09adf + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::ha95b44e572dfeaed + 21 ┊ 0.00% ┊ ⤷ <routing::components::RouteProps<Segments,View,ViewFn> as leptos::component::Props>::builder::ha280a63c0562e6ed + 13 ┊ 0.00% ┊ ⤷ routing::components::RouteProps<Segments,View,ViewFn>::builder::h76a8cbad77966266 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h511066d9a741230b + 1285 ┊ 0.03% ┊ ⤷ routing::components::RoutesPropsBuilder<Defs,FallbackFn,Fallback,((FallbackFn,),(routing::components::RouteChildren<Defs>,))>::build::hd5b8e24ec47ef9dd + 216 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h7a93b38a4fc81f8c + 776 ┊ 0.02% ┊ ⤷ routing::components::RoutesPropsBuilder<Defs,FallbackFn,Fallback,(__fallback,())>::children::h7f587ea1dc5e44c8 + 147 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hd3961ca60a701f84 + 56 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h29080a0e619a8131 + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h077822276709c8f6 + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::hcc007ee765207a99 + 21 ┊ 0.00% ┊ ⤷ <routing::components::RoutesProps<Defs,FallbackFn,Fallback> as leptos::component::Props>::builder::hca6be97d7c46fc86 + 13 ┊ 0.00% ┊ ⤷ routing::components::RoutesProps<Defs,FallbackFn,Fallback>::builder::h5dea803aec988aac + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h524569677c3f0b15 + 21 ┊ 0.00% ┊ ⤷ routing::components::RoutesPropsBuilder<Defs,FallbackFn,Fallback,((),__children)>::fallback::h47a63b0233c4d9ac + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::main::ha43cbc7ac859b7b3 + 22 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::hbc7feb624a38624a + 19336 ┊ 0.39% ┊ ⤷ <serde_json::error::Error as serde::de::Error>::custom::h2f97bfb2b3c0a935 + 18334 ┊ 0.37% ┊ ⤷ serde_json::error::make_error::hd7f45e983d3f6571 + 12564 ┊ 0.26% ┊ ⤷ serde_json::error::parse_line_col::hcc62377db6662ea7 + 8299 ┊ 0.17% ┊ ⤷ core::str::<impl str>::rfind::h1242b44fc207492a + 7976 ┊ 0.16% ┊ ⤷ <core::str::pattern::StrSearcher as core::str::pattern::ReverseSearcher>::next_match_back::he070241c73a81b34 + 5389 ┊ 0.11% ┊ ⤷ <core::str::pattern::StrSearcher as core::str::pattern::ReverseSearcher>::next_back::h983ad6459c1f052d + 2031 ┊ 0.04% ┊ ⤷ core::str::pattern::TwoWaySearcher::next_back::ha9bc92e8fd31f852 + 61 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::rejecting::hda87dbe87a4a248f + 61 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::matching::hbe43fe35088d1d32 + 24 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::use_early_reject::ha3d632ac50cf0856 + 1417 ┊ 0.03% ┊ ⤷ core::str::validations::next_code_point_reverse::he59b251b439a55e4 + 466 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::h198f26db3cbeed0f + 290 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeTo<usize>>::get::hd1d64fbaf6790d1c + 2045 ┊ 0.04% ┊ ⤷ core::str::pattern::TwoWaySearcher::next_back::h492a6f21b4fd013a + 89 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::matching::h0bf66acdc0b010f9 + 47 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::rejecting::h97a8dfd38069abf9 + 24 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::use_early_reject::hcae10c0c89a2f0a3 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::h013b59c0b0028a8d + 82 ┊ 0.00% ┊ ⤷ <&str as core::str::pattern::Pattern>::into_searcher::h51ac0dab9794ccd5 + 714 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::Range<usize>>>::index::h90924054f34e3712 + 356 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::get::h721c3042d7585ece + 662 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeFrom<usize>>>::index::h2fe9659bf2fbc21b + 313 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::get::he0475493c5053671 + 530 ┊ 0.01% ┊ ⤷ alloc::string::String::truncate::h79490530124386c2 + 230 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::h63e7dc1ff13b2dfa + 413 ┊ 0.01% ┊ ⤷ serde_json::error::starts_with_digit::hc7e56afdb97b2425 + 112 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::first::hfa2e97b8ff99edbc + 341 ┊ 0.01% ┊ ⤷ core::str::<impl str>::is_char_boundary::h6d8a85cc72bbde4e + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::hfe8d18481c7db487 + 45 ┊ 0.00% ┊ ⤷ alloc::string::String::len::h767b95a955ab52a3 + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::hf6b2283fd18ad6ff + 5086 ┊ 0.10% ┊ ⤷ alloc::string::String::into_boxed_str::h1418e3b32dae53c1 + 4656 ┊ 0.09% ┊ ⤷ alloc::vec::Vec<T,A>::into_boxed_slice::h4ea90852a223da1d + 3770 ┊ 0.08% ┊ ⤷ alloc::vec::Vec<T,A>::shrink_to_fit::h6245093fd2023f0f + 3559 ┊ 0.07% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::h696d001a487dde44 + 1587 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::shrink::h82a72fb04361fd08 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h782d16c0c1a5c6d1 + 92 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::{{closure}}::h98c1c7667c3f1ceb + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h04959af888e77ee3 + 188 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::hd79e0b7410b11efa + 915 ┊ 0.02% ┊ ⤷ <core::fmt::Arguments as alloc::string::ToString>::to_string::h5c7298390e31bd17 + 775 ┊ 0.02% ┊ ⤷ alloc::fmt::format::h6270dfb3b3bfb2d8 + 525 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or_else::h5b34dc02b2a15465 + 180 ┊ 0.00% ┊ ⤷ alloc::fmt::format::{{closure}}::hb322d49ef98fb585 + 78 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5d5a6e714e33a43c + 18787 ┊ 0.38% ┊ ⤷ routing::location::handle_anchor_click::{{closure}}::h31d804d68498a409 + 3718 ┊ 0.08% ┊ ⤷ core::iter::traits::iterator::Iterator::any::h14af33e6e8068881 + 3601 ┊ 0.07% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h9828f602984a0c81 + 2957 ┊ 0.06% ┊ ⤷ <core::str::iter::Split<P> as core::iter::traits::iterator::Iterator>::next::h1ecdff07e844c96c + 2874 ┊ 0.06% ┊ ⤷ core::str::iter::SplitInternal<P>::next::h3115b836993f8be3 + 1933 ┊ 0.04% ┊ ⤷ <core::str::pattern::CharArraySearcher<_> as core::str::pattern::Searcher>::next_match::h970f63c61434e562 + 1723 ┊ 0.04% ┊ ⤷ <core::str::pattern::MultiCharEqSearcher<C> as core::str::pattern::Searcher>::next::h233c2953c3cdb5f5 + 591 ┊ 0.01% ┊ ⤷ <core::str::iter::CharIndices as core::iter::traits::iterator::Iterator>::next::ha9944c880a27f4ef + 551 ┊ 0.01% ┊ ⤷ <[char; N] as core::str::pattern::MultiCharEq>::matches::h74fcf7f4fc0097d2 + 351 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h30217eca533e2993 + 92 ┊ 0.00% ┊ ⤷ <[char; N] as core::str::pattern::MultiCharEq>::matches::{{closure}}::h2400b2ecf9e7fb61 + 429 ┊ 0.01% ┊ ⤷ core::str::iter::SplitInternal<P>::get_end::h62f83602b3afa2d9 + 75 ┊ 0.00% ┊ ⤷ <core::str::pattern::CharArraySearcher<_> as core::str::pattern::Searcher>::haystack::h5bf59871eb507e7b + 273 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::any::check::{{closure}}::hef9f262104b53403 + 106 ┊ 0.00% ┊ ⤷ routing::location::handle_anchor_click::{{closure}}::{{closure}}::habac1feb32825bcb + 833 ┊ 0.02% ┊ ⤷ core::str::<impl str>::split::h015f722fd7a535fa + 422 ┊ 0.01% ┊ ⤷ <[char; N] as core::str::pattern::Pattern>::into_searcher::h4ab65f0825784eb1 + 677 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h93a1160fbaa18fa4 + 441 ┊ 0.01% ┊ ⤷ routing::location::handle_anchor_click::{{closure}}::{{closure}}::h62d953399bd63cee + 135 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::cmp::PartialEq>::eq::h08d13ffb5f04d820 + 26 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_jsval_eq + 615 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::haf542e81638c915e + 301 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hd84303cf6c9c9841 + 226 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::h4bef971a97869e2f + 158 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlAnchorElement::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement>::instanceof::he23776e32130e344 + 58 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_HtmlAnchorElement_5fc0eb2fbc8672d8 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h3fe7c36ba914a07b + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlAnchorElement::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement>::unchecked_from_js::h1e63a38526f72ce7 + 523 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h26ac7ccd3f8f0340 + 505 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h8c75e295b828ea33 + 327 ┊ 0.01% ┊ ⤷ web_sys::features::gen_MouseEvent::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_MouseEvent::MouseEvent>::unchecked_from_js::ha9429b289c537a07 + 256 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::hb655af1cb728f29d + 199 ┊ 0.00% ┊ ⤷ web_sys::features::gen_UiEvent::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_UiEvent::UiEvent>::from::h214133ccfd43f4b1 + 128 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h2054f6829798a008 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_Event::Event>::from::h66626372d8d2c33b + 114 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::had7adbf954879ba3 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::_::<impl core::convert::From<web_sys::features::gen_Event::Event> for wasm_bindgen::JsValue>::from::h918490c1ededa6c5 + 443 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h4a7a502f17eed2e6 + 258 ┊ 0.01% ┊ ⤷ routing::location::handle_anchor_click::{{closure}}::{{closure}}::hea638bdbbef84436 + 166 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::as_bool::h57a44eedc9a2fd5e + 29 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_boolean_get + 408 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::unwrap::h27dee1b68c6769c6 + 323 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Element::Element::get_attribute::hba6f74607cf2948a + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_getAttribute_99bddb29274b29b9 + 305 ┊ 0.01% ┊ ⤷ routing::location::unescape::hb81b3d1823452e28 + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h8d711d61afa4d503 + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hf06303fb7c6a94b7 + 271 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Element::Element::has_attribute::h4594ae9b890ab991 + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_hasAttribute_8340e1a2a46f10f3 + 232 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::Event::composed_path::hb72c09986905a5ac + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Array>::from_abi::h5a232e7b00e8b2f1 + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_composedPath_58473fd5ae55f2cd + 201 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement::target::h0e15fb837632f033 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_target_f0876f510847bc60 + 199 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement::href::h523a453ea139b2f4 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_href_40fd5bca11c13133 + 179 ┊ 0.00% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::h1bb1f77e54288297 + 179 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::MouseEvent::button::h978373bf4d9b19f2 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_button_367cdc7303e3cf9b + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for i16>::from_abi::h16d8eebf9c9b584c + 171 ┊ 0.00% ┊ ⤷ alloc::string::String::as_str::h606227bf67388113 + 169 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::Event::default_prevented::h2c3a79d2d577cdad + 46 ┊ 0.00% ┊ ⤷ import wbg::__wbg_defaultPrevented_cc14a1dd3dd69c38 + 161 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::MouseEvent::shift_key::h9e29ee97d123323a + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_shiftKey_1e76dbfcdd36a4b4 + 160 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::MouseEvent::ctrl_key::h6d9f3f09d63d059f + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_ctrlKey_008695ce60a588f5 + 160 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::MouseEvent::meta_key::hc8f38256b6fd4851 + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_metaKey_86bfd3b0d3a8083f + 159 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::MouseEvent::alt_key::h651c7b65f4083282 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_altKey_07da841b54bd3ed6 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_MouseEvent::MouseEvent>::hb98c71b889e304bc + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_UiEvent::UiEvent>::h1056d8d20d51fa19 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_Event::Event>::hb2d56095ed6f8a8e + 133 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::from_str::h43b3227c64550dfc + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::h899499fc33d9d479 + 124 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::Event::prevent_default::h3bab77d4655fb6a4 + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_preventDefault_b1a4aafc79409429 + 119 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::arith::Add<&str>>::add::h2e06cd1fcf5901b2 + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlAnchorElement::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement>::into_abi::h97f2d86ec7f159d3 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_HtmlElement::HtmlElement>::into_abi::h98f15b5a1a25a8be + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_MouseEvent::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_MouseEvent::MouseEvent>::into_abi::h3bdac92e779350c2 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_UiEvent::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_UiEvent::UiEvent>::into_abi::he96612a84603615c + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement,wasm_bindgen::JsValue>>::hb4e43d0b595c9f30 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement>>::h1f2fd34eca5fe75e + 61 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for bool>::from_abi::hbb4dfb3328ae40b5 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Event::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Event::Event>::into_abi::h8629a61a6540b1cc + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement>::h7df114ecb415d68c + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlAnchorElement::HtmlAnchorElement as core::ops::deref::Deref>::deref::h2dca81523693f4af + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlElement::HtmlElement as core::ops::deref::Deref>::deref::h3e80273e412d5227 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Element::Element as core::ops::deref::Deref>::deref::hb8b0397707e0de5f + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Node::Node as core::ops::deref::Deref>::deref::h1fce690ce3099aa1 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_EventTarget::EventTarget as core::ops::deref::Deref>::deref::h4b1cb4c8fead977e + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_MouseEvent::MouseEvent as core::ops::deref::Deref>::deref::h817f0044ec71e730 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_UiEvent::UiEvent as core::ops::deref::Deref>::deref::hf13ad6fc924544f1 + 17493 ┊ 0.36% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for alloc::vec::Vec<T>>::deserialize::h0e0b1718e5a86f57 + 17438 ┊ 0.36% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_seq::h1e5b71ad0b3aeb7f + 15296 ┊ 0.31% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for alloc::vec::Vec<T>>::deserialize::VecVisitor<T> as serde::de::Visitor>::visit_seq::h2a181044cef12ea6 + 11723 ┊ 0.24% ┊ ⤷ serde::de::SeqAccess::next_element::hc19a3efa3cccc643 + 11668 ┊ 0.24% ┊ ⤷ <serde_json::de::SeqAccess<R> as serde::de::SeqAccess>::next_element_seed::ha9ab04af6d8f1f86 + 10216 ┊ 0.21% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hd79cb8c88ef4770f + 10161 ┊ 0.21% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::hfbf8d7cc9fc78e80 + 10076 ┊ 0.21% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_struct::ha51d0850bc99a2e9 + 5283 ┊ 0.11% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__Visitor as serde::de::Visitor>::visit_map::h90cd75b58de13659 + 2335 ┊ 0.05% ┊ ⤷ serde::de::MapAccess::next_key::h63a69dc63a88dc30 + 2280 ┊ 0.05% ┊ ⤷ <serde_json::de::MapAccess<R> as serde::de::MapAccess>::next_key_seed::h212c42b9233c8bba + 877 ┊ 0.02% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h17466fd29f202ea7 + 822 ┊ 0.02% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__Field as serde::de::Deserialize>::deserialize::h58af95fb9e0a8edd + 767 ┊ 0.02% ┊ ⤷ <serde_json::de::MapKey<R> as serde::de::Deserializer>::deserialize_identifier::h3413168d9daddcd6 + 712 ┊ 0.01% ┊ ⤷ <serde_json::de::MapKey<R> as serde::de::Deserializer>::deserialize_any::hdac22762bb73b7ea + 260 ┊ 0.01% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__FieldVisitor as serde::de::Visitor>::visit_str::h5ded15a03f7fce1f + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::h37fb185f6b1050f9 + 314 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h594a603f4bb87376 + 109 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h827e86d785573899 + 45 ┊ 0.00% ┊ ⤷ core::option::Option::Some::he926da5c7bd446bc + 131 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hda5452f5c00de5f0 + 923 ┊ 0.02% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__Visitor as serde::de::Visitor>::visit_seq::h6f7f5f327cf67e0c + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h8f49ef64c5c86ca7 + 1812 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::he82aff718e3a0f6f + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h7709667282c872c5 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h9ed2887599b419b7 + 788 ┊ 0.02% ┊ ⤷ serde::de::size_hint::cautious::h230da06c5151f2bd + 428 ┊ 0.01% ┊ ⤷ core::cmp::min::h3d1a620a3e57fced + 362 ┊ 0.01% ┊ ⤷ core::cmp::Ord::min::hab79be369640c18c + 296 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h7514cbb165617886 + 148 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::h8e31fdf4eabfc49a + 100 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::h298c42dc3fa24354 + 68 ┊ 0.00% ┊ ⤷ serde::de::SeqAccess::size_hint::h77d50ac39635ccd0 + 17353 ┊ 0.35% ┊ ⤷ core::ops::function::FnOnce::call_once::h9c7d8f58616cd151 + 17226 ┊ 0.35% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h8016f078f7d322d6 + 16633 ┊ 0.34% ┊ ⤷ tachys::view::either::<impl tachys::view::RenderHtml<Rndr> for either_of::EitherOf3<A,B,C>>::hydrate::h86e9a99262a593fb + 7894 ┊ 0.16% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B)>::hydrate::h1cbddf6166cab2f8 + 7060 ┊ 0.14% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::RenderHtml<Rndr>>::hydrate::hdb07b52b1175cf2e + 5918 ┊ 0.12% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::h4e9af1f52bf8c347 + 5712 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h2b342f791abf1999 + 5599 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hae52a05af37b55bf + 3339 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h3c56a6f0303d12c0 + 1308 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hbf5051276ac2c84f + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hfb15aca420a0d31f + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h725c28bc451aab3b + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::he6138549380aa568 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h018de33b02795a8f + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2069b336d3d0cac3 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h79b836613aa036bd + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h827be0f7d652523e + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h99187afc08dc2a98 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::hf219b6b3d9582064 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h8fac25b559c36bee + 572 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h87739b4dbd762f6b + 7601 ┊ 0.15% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B)>::hydrate::ha43f11cf001488c6 + 7039 ┊ 0.14% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::RenderHtml<Rndr>>::hydrate::hebeb2ad17b0241b4 + 6234 ┊ 0.13% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::hee46359c1c35864a + 5726 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h0b56e6997bc1490a + 5613 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h04c409b684438fcd + 3339 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::hf99ef3f917fbffd3 + 1308 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h768967e50ca8605d + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hb40e6f3aa658a401 + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h85297d36bd9d47f6 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h82c33bf6849484e4 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h639b29e42e47130a + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0dd19fed62e9a1cc + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5ee99dd63b0c7bfd + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h63e4e6ca8e8ed00c + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hba0e646d2612f256 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::hf287596e2efa8d13 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hdd5d7ec44cdd35fa + 16995 ┊ 0.35% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::h3f5046c578ea4e1c + 16581 ┊ 0.34% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::h064651f30cfe8613 + 14007 ┊ 0.29% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::h3a5c440aeb35c02e + 13772 ┊ 0.28% ┊ ⤷ core::option::Option<T>::map::hc10b551179d1f742 + 13317 ┊ 0.27% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::{{closure}}::h38ef75f092a2a34f + 13237 ┊ 0.27% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::hedc0defd084ddfab + 12515 ┊ 0.25% ┊ ⤷ core::result::Result<T,E>::map::h22ba084c8d79ed1b + 11971 ┊ 0.24% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::{{closure}}::hbdc7d467ba717412 + 11891 ┊ 0.24% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for alloc::vec::Vec<T>>::hydrate::h874f3a586032b723 + 11525 ┊ 0.23% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h600e005222948cb8 + 11513 ┊ 0.23% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::hd51a14dd4cb08b61 + 11341 ┊ 0.23% ┊ ⤷ alloc::vec::in_place_collect::<impl alloc::vec::spec_from_iter::SpecFromIter<T,I> for alloc::vec::Vec<T>>::from_iter::hc5b830a93fb8f431 + 4029 ┊ 0.08% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for alloc::vec::Vec<T>>::hydrate::{{closure}}::hb9ef853cd2d51915 + 3956 ┊ 0.08% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h8b9729eb093cdacf + 3102 ┊ 0.06% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B,C)>::hydrate::he82fc51b5110e28a + 1244 ┊ 0.03% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h5b55dc22977bbcb3 + 339 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B)>::hydrate::h520c80422dc32113 + 786 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h3d8d555fb8533004 + 109 ┊ 0.00% ┊ ⤷ <(A,) as tachys::html::attribute::Attribute<Rndr>>::hydrate::h95f35126a8fde986 + 3681 ┊ 0.07% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h0f54d0bad6f19eeb + 3002 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h96610b5b8508c592 + 2947 ┊ 0.06% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h8ca649881307dbc6 + 2272 ┊ 0.05% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::ha867aeefb81c7438 + 2172 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h6eb01c9b1eea266b + 1957 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h2f234fabd83eb1b8 + 733 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h730527008e332685 + 266 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hab131b1dc0080ad2 + 168 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::hc1b0abdb3197962a + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,(),tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h6d483cc3d187b583 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::{{closure}}>::hb67a2d7e756c3147 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::h9c0b513388efa18f + 55 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::hb978db6a4e8e38e4 + 2403 ┊ 0.05% ┊ ⤷ <I as alloc::vec::in_place_collect::SpecInPlaceCollect<T,I>>::collect_in_place::h91d29d40b3a99dcf + 2033 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::h4a4f9ec8fdb19f8d + 1863 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::he0c71ebac8f88e94 + 569 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h58465f220615bd19 + 57 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::adapters::SourceIter>::as_inner::h2fa98c36942aa040 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::h5e4a8f7652453648 + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h93cd3afed3eefad9 + 98 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::head2f5ad10eb1c35 + 491 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h4f75e1e56d9635b5 + 73 ┊ 0.00% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::RenderHtml<R> for core::result::Result<T,E>>::hydrate::{{closure}}::h225d656aae99e1ad + 523 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hfa5d589b9f847872 + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h25e5838c8373cdf7 + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h7651d1a6e96909be + 16877 ┊ 0.34% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for core::option::Option<T>>::rebuild::had53f5ef23a9b351 + 14794 ┊ 0.30% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::Render<R> for core::result::Result<T,E>>::rebuild::ha37c06c1d4366523 + 10767 ┊ 0.22% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for alloc::vec::Vec<T>>::rebuild::hdb12d663402be5ed + 3109 ┊ 0.06% ┊ ⤷ <itertools::zip_longest::ZipLongest<T,U> as core::iter::traits::iterator::Iterator>::next::h899d98b0b8b727e3 + 326 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::hbebce0f2dc721cbb + 269 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::h0201a224dc184d86 + 312 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::h15051b0339f9cb5f + 257 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::h0f14a140d3b95961 + 1923 ┊ 0.04% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h4390582d024ab2ba + 1590 ┊ 0.03% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B,C)>::rebuild::h6b7440ca88e88a96 + 511 ┊ 0.01% ┊ ⤷ <(A,) as tachys::html::attribute::Attribute<Rndr>>::rebuild::h32be358a9c991b68 + 404 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::h5e0d86ff4b024dcf + 282 ┊ 0.01% ┊ ⤷ <alloc::string::String as tachys::html::attribute::value::AttributeValue<R>>::rebuild::hf43989c9854d7363 + 436 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::hb75ad16749acdbb3 + 170 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::rebuild::heb89d09ac25e1f35 + 245 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h242597772c8e1a78 + 485 ┊ 0.01% ┊ ⤷ itertools::Itertools::zip_longest::hb49721d78ef09fab + 396 ┊ 0.01% ┊ ⤷ itertools::zip_longest::zip_longest::h70e83d67845416e8 + 116 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::ha3c487c867e3ef3e + 106 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::he0c032383bbd6c4f + 373 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::hb3f3c7e12332272f + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h784059566844b582 + 331 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::append::h30e87506b05560c0 + 269 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::h340ccddecca7951e + 240 ┊ 0.00% ┊ ⤷ tachys::renderer::Renderer::mount_before::h78231a712e9c7ce6 + 191 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<itertools::zip_longest::ZipLongest<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,core::slice::iter::IterMut<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>>::h262e3467f15f7d59 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::fuse::Fuse<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>>::h1425512beef79022 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>>::haa66a1806e06d24d + 186 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::clear::he5fcda7c5a19d0ef + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8e5b673897f590ba + 68 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::is_empty::h34351f6bc40446a4 + 68 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::is_empty::h5cc79a0cd7fbc9da + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::h00b14c2676d3b596 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h614df785c2a9b3ac + 2229 ┊ 0.05% ┊ ⤷ any_error::throw::h1040950935028d43 + 2065 ┊ 0.04% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::h55adf2f8ec5b9cdb + 1909 ┊ 0.04% ┊ ⤷ std::thread::local::LocalKey<T>::with::h14cbd49786f2b6b6 + 1639 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h623be98cfb340d3a + 1090 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::{{closure}}::hecd28ce9e35e2843 + 727 ┊ 0.01% ┊ ⤷ any_error::throw::{{closure}}::h6cd025987755f878 + 564 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h5565906d17f653b0 + 205 ┊ 0.00% ┊ ⤷ any_error::throw::{{closure}}::{{closure}}::h3681283a14d16f94 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::throw<server_fn::error::ServerFnError>::{{closure}}::{{closure}}>::h6ec0edee729e708a + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::with_borrow<any_error::throw<server_fn::error::ServerFnError>::{{closure}},core::option::Option<any_error::ErrorId>>::{{closure}}>::h3c060c793646ecec + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::throw<server_fn::error::ServerFnError>::{{closure}}>::h7c764e96f0c39245 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h45902ec5f400d063 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h5653a173e7a79038 + 252 ┊ 0.01% ┊ ⤷ <tachys::view::iterators::VecState<T,R> as tachys::view::Mountable<R>>::unmount::h2d8eb392ae605867 + 142 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::unmount::hf1610d3db9362ff1 + 72 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::ha42c66e7e6d86feb + 15687 ┊ 0.32% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::hf6343bb4d4878aa0 + 14546 ┊ 0.30% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryView<Chil,Fal,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h4488b4a243c7c924 + 7904 ┊ 0.16% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::hace4e64ef46eed20 + 7593 ┊ 0.15% ┊ ⤷ core::option::Option<T>::map::h9fe7f355fb8802f9 + 6911 ┊ 0.14% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for core::option::Option<T>>::hydrate::{{closure}}::haae8274788eb3ba4 + 6831 ┊ 0.14% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::hafda1dd061b9b354 + 5699 ┊ 0.12% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B)>::hydrate::h66b4926e8b92155e + 5349 ┊ 0.11% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h62c39da0e177bd08 + 4758 ┊ 0.10% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for (A,)>::hydrate::h645dffc3e531c86c + 4593 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::h5fe90e0d05d2d392 + 4343 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hec1ca0e72bf74f0d + 4228 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h6e2d40a15d9612dd + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hd9caeed6cc167582 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h482fdb7a8976b8d4 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h788008d873689398 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9aef46f7ab2b42f5 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0fa657ef88172ca0 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4e7fcd0b23131fd7 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h5329ac47ff0f2d84 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h0f62e62b64e7baed + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h6e4123a377e2aa6d + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h7dd844c801076c8b + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hbde25a01506087f8 + 619 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h1b60271b0056478f + 283 ┊ 0.01% ┊ ⤷ <(A,) as tachys::html::attribute::Attribute<Rndr>>::hydrate::h5616f73d81106dac + 210 ┊ 0.00% ┊ ⤷ <tachys::html::class::Class<C,R> as tachys::html::attribute::Attribute<R>>::hydrate::hec577920adfef1e1 + 137 ┊ 0.00% ┊ ⤷ <&str as tachys::html::class::IntoClass<R>>::hydrate::heacb214447df2a08 + 4515 ┊ 0.09% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::h19dfcc1727f37369 + 4350 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::he1aa493c96f5dd81 + 4100 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h788f069b2050bf3b + 4004 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h38dd66bd152a249f + 2477 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h88539257dbcd7041 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc3dc49c7b07479e9 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3f13053fb21ba2ff + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8b12710a492db064 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h922e4e0eb29de83d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h8e2820849fd9f6d4 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h72679f26cf5bcb20 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::hd4fe520fb8b6753c + 415 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h2233484798d6e5d7 + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h78ee9cfaa032997b + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hdf6eff38c46225ec + 619 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h37200b56feb718ed + 15430 ┊ 0.31% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h7b9f324dd4204fcf + 15375 ┊ 0.31% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::{{closure}}::ha9c6cb94b80bc469 + 15061 ┊ 0.31% ┊ ⤷ core::ops::function::FnOnce::call_once::h81c27b185cef5ee3 + 15013 ┊ 0.31% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::h592f3bd8ddde1b2e + 14012 ┊ 0.29% ┊ ⤷ leptos::component::component_view::h2256b5640d69b089 + 13939 ┊ 0.28% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::hdb52f3777fd9ad08 + 13838 ┊ 0.28% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h92bb479e17a1eecb + 13751 ┊ 0.28% ┊ ⤷ core::ops::function::Fn::call::h209d905f9639a1f2 + 13666 ┊ 0.28% ┊ ⤷ leptos::error_boundary::ErrorBoundary::h7b7dd46474ca28ac + 13560 ┊ 0.28% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h098dd73bb16aa0b8 + 13456 ┊ 0.27% ┊ ⤷ leptos::error_boundary::ErrorBoundary::{{closure}}::h0743984fcb5a483a + 13392 ┊ 0.27% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::h0d089884a0265592 + 6374 ┊ 0.13% ┊ ⤷ leptos::error_boundary::ErrorBoundaryErrorHook::new::h33fa61d20c520b20 + 4379 ┊ 0.09% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h9216fa1e47467873 + 4367 ┊ 0.09% ┊ ⤷ <std::collections::hash::map::HashMap<K,V,S> as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::hee2eacdf34822ea0 + 4034 ┊ 0.08% ┊ ⤷ <hashbrown::map::HashMap<K,V,S,A> as core::iter::traits::collect::Extend<(K,V)>>::extend::h2068d5b382cafc07 + 3256 ┊ 0.07% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hff5c4c4228725954 + 3187 ┊ 0.06% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h49d8055d3c3af8e6 + 1659 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<(any_error::ErrorId,any_error::Error)>>::h91ade3e0ed745052 + 1606 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::hc1d64c7155e17eaf + 782 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h192703cfb5c6263f + 596 ┊ 0.01% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h10aef4723dcff426 + 547 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<(any_error::ErrorId,any_error::Error),alloc::alloc::Global>>::hf8b34d0ac78704fa + 494 ┊ 0.01% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h5bcd76ca4ca4c23d + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(any_error::ErrorId,any_error::Error)>>::h80426aa2293fc7f0 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hb2d4acdf715dbdac + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[(any_error::ErrorId,any_error::Error)]>::hb04eef185542eb0a + 902 ┊ 0.02% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::h878343bd05230a86 + 299 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h9e491716aa67af00 + 170 ┊ 0.00% ┊ ⤷ <hashbrown::map::HashMap<K,V,S,A> as core::iter::traits::collect::Extend<(K,V)>>::extend::{{closure}}::hde64d8902324206d + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::he6e0607900084c64 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h918e4de37bc9248e + 968 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::hce252c47a29e98a2 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h7d30d063b995e21b + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hcb48691df104315a + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h78e6a7da80a99f6a + 1895 ┊ 0.04% ┊ ⤷ any_error::set_error_hook::h40d9bee369c6cfda + 1796 ┊ 0.04% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow_mut::h2ae3e22545b3f1aa + 1697 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::with::h24dc58de9cddf7f8 + 1499 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h892e82527934bd03 + 1002 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow_mut::{{closure}}::hca766d54af83fc5c + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::hee34fc787d4d3833 + 249 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::hb45899e4eb17b06d + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::BorrowRefMut>::h70263e61feeafddd + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRefMut as core::ops::drop::Drop>::drop::hd4127555e60d426b + 109 ┊ 0.00% ┊ ⤷ any_error::set_error_hook::{{closure}}::ha2403bf1d718eaa6 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::with_borrow_mut<any_error::set_error_hook::{{closure}},()>::{{closure}}>::hcd1fae4fcf5a044a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::set_error_hook::{{closure}}>::h5f1d6f6c561a1807 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h0ad3b6231b41a27a + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h8d1d13ea51c85abb + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::h43306a126998083c + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h96664ace178bd757 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb0d17e938fbef9a3 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h082b1f324f8dd44e + 454 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h46c3c794bb72153f + 151 ┊ 0.00% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::{{closure}}::h8793041f1d1e86f8 + 422 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h8e1bd87030ab0fe3 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h5e39f65cac23df76 + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h901bfa3edb6814b2 + 312 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h05ac6a3cb62e899c + 87 ┊ 0.00% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::{{closure}}::h40fc3f18c1d51498 + 251 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_default::hf63c83048789404c + 40 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T> as core::default::Default>::default::he504c68adfcda808 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h8824a71a8253b7a9 + 50 ┊ 0.00% ┊ ⤷ leptos::children::TypedChildren<T>::into_inner::hecf34a0f9db01f2c + 213 ┊ 0.00% ┊ ⤷ leptos::error_boundary::ErrorBoundaryPropsBuilder<FalFn,Fal,Chil,((leptos::children::TypedChildren<Chil>,),(FalFn,))>::build::h2b9d5082b2a5718e + 64 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h7b6aed001881f81a + 202 ┊ 0.00% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::h9cef6a383a9ebbad + 135 ┊ 0.00% ┊ ⤷ leptos::error_boundary::ErrorBoundaryPropsBuilder<FalFn,Fal,Chil,((),__fallback)>::children::hb8a9c9eda969433a + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::hc3d36ac5e94fb15f + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::h03389263c2a4d162 + 21 ┊ 0.00% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryProps<FalFn,Fal,Chil> as leptos::component::Props>::builder::hd662d89757012336 + 13 ┊ 0.00% ┊ ⤷ leptos::error_boundary::ErrorBoundaryProps<FalFn,Fal,Chil>::builder::hcb2dfa91ded30fdd + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::hdb4c53306a943d5c + 21 ┊ 0.00% ┊ ⤷ leptos::error_boundary::ErrorBoundaryPropsBuilder<FalFn,Fal,Chil,(__children,())>::fallback::h238ced2094ba6f13 + 152 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::h02cbfeb126e03bc3 + 15232 ┊ 0.31% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::h51aac4d98d7b0475 + 7513 ┊ 0.15% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h15ef167a8e1e8451 + 7501 ┊ 0.15% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h62b2744c900023b6 + 7254 ┊ 0.15% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h38437794558d6eed + 7242 ┊ 0.15% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::ha643d220611822d9 + 2372 ┊ 0.05% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h5fe15535eccea4cd + 2317 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h30c7a43b19e1ffd5 + 1698 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::hf0226e55a05b0ba6 + 1512 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hb16cbc42a86a92d2 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h19ce50a9f5ffb9de + 2094 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h5a44327141dd1f04 + 1142 ┊ 0.02% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::h5fbdfa317e5e5fc4 + 1033 ┊ 0.02% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::{{closure}}::hb1755d27e431f701 + 752 ┊ 0.02% ┊ ⤷ <T as alloc::string::ToString>::to_string::h70a65ca33e602360 + 210 ┊ 0.00% ┊ ⤷ <any_error::Error as core::fmt::Display>::fmt::h310a0bfad0c0eff5 + 122 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hae118fd060efc3bb + 569 ┊ 0.01% ┊ ⤷ <std::collections::hash::map::IntoIter<K,V> as core::iter::traits::iterator::Iterator>::next::hc80b822d01cef271 + 507 ┊ 0.01% ┊ ⤷ <hashbrown::raw::RawIntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hdc3e4e670d5e2329 + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hafe7eb86abd9b917 + 695 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<leptos::error_boundary::IntoIter,ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::{{closure}}>>::hcf93f4cffc52cfa3 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::IntoIter>::h53686ac36e66710e + 589 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::collections::hash::map::IntoIter<any_error::ErrorId,any_error::Error>>::h72c5b14a395e4e30 + 536 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<hashbrown::map::IntoIter<any_error::ErrorId,any_error::Error>>::h1c643663ea8e76e3 + 483 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawIntoIter<(any_error::ErrorId,any_error::Error)>>::h10efb6216a9066d5 + 430 ┊ 0.01% ┊ ⤷ <hashbrown::raw::RawIntoIter<T,A> as core::ops::drop::Drop>::drop::hb7d06483974c391f + 210 ┊ 0.00% ┊ ⤷ hashbrown::raw::RawIter<T>::drop_elements::hc6aa246d29757cd6 + 134 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h2746471206659fd0 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::hdf92263b07d3a1c8 + 184 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h39ce6abc526d0222 + 4443 ┊ 0.09% ┊ ⤷ reactive_graph::traits::Get::get::hde58c29229e82d1a + 3946 ┊ 0.08% ┊ ⤷ <T as reactive_graph::traits::Get>::try_get::hd9ac3616a78f9a37 + 3882 ┊ 0.08% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h1c33a5da82775e90 + 3818 ┊ 0.08% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::haf21f83173d2178b + 3724 ┊ 0.08% ┊ ⤷ core::option::Option<T>::map::h2538ccc55fe7f21c + 3388 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hb39a7607ab06f195 + 3314 ┊ 0.07% ┊ ⤷ core::ops::function::FnOnce::call_once::h4ac70329a5081267 + 3252 ┊ 0.07% ┊ ⤷ <leptos::error_boundary::Errors as core::clone::Clone>::clone::hd1774fc0fad9a046 + 3123 ┊ 0.06% ┊ ⤷ <std::collections::hash::map::HashMap<K,V,S> as core::clone::Clone>::clone::hba9fd15ce0b774b4 + 2994 ┊ 0.06% ┊ ⤷ <hashbrown::map::HashMap<K,V,S,A> as core::clone::Clone>::clone::hba3fdf4d061d8d44 + 2819 ┊ 0.06% ┊ ⤷ <hashbrown::raw::RawTable<T,A> as core::clone::Clone>::clone::hd0f7a947f4d53f31 + 1727 ┊ 0.04% ┊ ⤷ <hashbrown::raw::RawTable<T,A> as hashbrown::raw::RawTableClone>::clone_from_spec::h0f1c647efe8086e8 + 1665 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::clone_from_impl::h000d7958cafbe8c2 + 293 ┊ 0.01% ┊ ⤷ core::clone::Clone::clone::h872d97db7417358d + 122 ┊ 0.00% ┊ ⤷ <any_error::Error as core::clone::Clone>::clone::hee026f78671fa5a9 + 52 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::clone::Clone>::clone::hccf03a9b140b605d + 688 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTable<T,A>::new_uninitialized::hfdd8e90e070f2365 + 29 ┊ 0.00% ┊ ⤷ <core::hash::BuildHasherDefault<H> as core::clone::Clone>::clone::ha1ee66a14833c0e8 + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::he6610d6bf71d788e + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Get::get::{{closure}}::h48bdc62c31d9329a + 2534 ┊ 0.05% ┊ ⤷ <std::collections::hash::map::HashMap<K,V,S> as core::iter::traits::collect::IntoIterator>::into_iter::h9974377acd1bbd44 + 2231 ┊ 0.05% ┊ ⤷ <hashbrown::map::HashMap<K,V,S,A> as core::iter::traits::collect::IntoIterator>::into_iter::hdcd56b194132f11b + 1928 ┊ 0.04% ┊ ⤷ <hashbrown::raw::RawTable<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::heeace9ed48aeaa50 + 1535 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::into_allocation::h3cec110973c105b1 + 1086 ┊ 0.02% ┊ ⤷ hashbrown::raw::TableLayout::calculate_layout_for::h28b01af5e4a39a88 + 198 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::hcab6649d303da8ef + 15159 ┊ 0.31% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::{{closure}}::h9bc157f45d2a422f + 13369 ┊ 0.27% ┊ ⤷ <futures_util::future::try_future::UnwrapOrElse<Fut,F> as core::future::future::Future>::poll::h75d9d5cd17cacc9e + 13183 ┊ 0.27% ┊ ⤷ <futures_util::future::future::Map<Fut,F> as core::future::future::Future>::poll::h18b6751a2dbea36b + 12997 ┊ 0.26% ┊ ⤷ <futures_util::future::future::map::Map<Fut,F> as core::future::future::Future>::poll::h4914d8908d2429b9 + 9839 ┊ 0.20% ┊ ⤷ <futures_util::future::try_future::into_future::IntoFuture<Fut> as core::future::future::Future>::poll::h6c3565529ba98f9d + 9653 ┊ 0.20% ┊ ⤷ <F as futures_core::future::TryFuture>::try_poll::ha61463e8c18cef09 + 9561 ┊ 0.19% ┊ ⤷ <futures_util::abortable::Abortable<Fut> as core::future::future::Future>::poll::h940545878ac94b15 + 9469 ┊ 0.19% ┊ ⤷ futures_util::abortable::Abortable<T>::try_poll::hbd8d76130b281b62 + 8436 ┊ 0.17% ┊ ⤷ <futures_util::abortable::Abortable<Fut> as core::future::future::Future>::poll::{{closure}}::h2c81f015799e1a5f + 8326 ┊ 0.17% ┊ ⤷ wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}::ha9ae29f6932f6adc + 5365 ┊ 0.11% ┊ ⤷ wasm_streams::readable::into_underlying_source::Inner::pull::{{closure}}::hb38326ec411c31d2 + 1771 ┊ 0.04% ┊ ⤷ <futures_util::stream::try_stream::try_next::TryNext<St> as core::future::future::Future>::poll::hedccedd81893575a + 470 ┊ 0.01% ┊ ⤷ futures_util::stream::try_stream::TryStreamExt::try_poll_next_unpin::ha9210eb02c78b053 + 346 ┊ 0.01% ┊ ⤷ <S as futures_core::stream::TryStream>::try_poll_next::h8e0f193d93186598 + 254 ┊ 0.01% ┊ ⤷ <core::pin::Pin<P> as futures_core::stream::Stream>::poll_next::h75990daf071fb3ca + 57 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::hdb89f437b0193b7e + 429 ┊ 0.01% ┊ ⤷ <core::task::poll::Poll<core::option::Option<core::result::Result<T,E>>> as core::ops::try_trait::Try>::branch::h28c32e4483eae786 + 405 ┊ 0.01% ┊ ⤷ core::task::poll::Poll<T>::map::h9c35d3d366447ccb + 128 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h12312c891ad20f5d + 50 ┊ 0.00% ┊ ⤷ core::result::Result::Ok::h3941202fc421dfa9 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::hf953d884f26291a8 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h100a57b6c8a5ea0d + 84 ┊ 0.00% ┊ ⤷ <core::task::poll::Poll<core::result::Result<T,F>> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::he463f56064bc4903 + 1027 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h5a8607ea9398d87b + 305 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h5e13dd43b04d448b + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hca40f50f72982256 + 351 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableStreamDefaultController::ReadableStreamDefaultController::enqueue_with_chunk::h1dd28f92120c2125 + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_enqueue_ea194723156c0cc2 + 312 ┊ 0.01% ┊ ⤷ web_sys::features::gen_ReadableStreamDefaultController::ReadableStreamDefaultController::close::hacd120f84999527a + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_close_a994f9425dab445c + 140 ┊ 0.00% ┊ ⤷ futures_util::stream::try_stream::TryStreamExt::try_next::ha9b00fd51e46d6a1 + 45 ┊ 0.00% ┊ ⤷ futures_util::stream::try_stream::try_next::TryNext<St>::new::h7dc733479982edfa + 31 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h097714abf3d89b33 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hf7df6ffcb5e3ccc3 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableStreamDefaultController::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_ReadableStreamDefaultController::ReadableStreamDefaultController>::into_abi::hde5cd88cbbcaa14b + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hc421683c937d919e + 1466 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h19d29097abab18e2 + 647 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::hbffc0951cfbdbfb0 + 179 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hbb3bbc06065d7404 + 84 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::cell::RefMut<wasm_streams::readable::into_underlying_source::Inner>,core::cell::BorrowMutError>>::hcbe679258ad7a017 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h4e41d736755f5a4e + 87 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hb6dc76b160d5f43c + 61 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_source::Inner::pull::hfdcdb32d035c4ca3 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h5ae1c0907ca115f5 + 132 ┊ 0.00% ┊ ⤷ futures_util::abortable::_::<impl futures_util::abortable::Abortable<T>>::project::h976c6a959dfa3fd9 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h18b5be10b9294591 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::he32458e27ebe9f6f + 106 ┊ 0.00% ┊ ⤷ futures_util::abortable::Abortable<T>::is_aborted::h34db8bae898bb223 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::hd38d749407f44769 + 87 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::into_future::_::<impl futures_util::future::try_future::into_future::IntoFuture<Fut>>::project::hf8038e1bb71354c3 + 1663 ┊ 0.03% ┊ ⤷ futures_util::future::future::map::_::<impl futures_util::future::future::map::Map<Fut,F>>::project_replace::h4b0e3c42a5a7ede6 + 584 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<pin_project_lite::__private::UnsafeOverwriteGuard<futures_util::future::future::map::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>>::ha5f7964e3a2d360e + 531 ┊ 0.01% ┊ ⤷ <pin_project_lite::__private::UnsafeOverwriteGuard<T> as core::ops::drop::Drop>::drop::ha74b979fb30b403a + 206 ┊ 0.00% ┊ ⤷ core::ptr::read::h378984d5d1b4daaa + 206 ┊ 0.00% ┊ ⤷ core::ptr::write::hfc552a5d0ee0624b + 509 ┊ 0.01% ┊ ⤷ pin_project_lite::__private::UnsafeOverwriteGuard<T>::new::h6732ab0c4e83a20b + 166 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(pin_project_lite::__private::UnsafeDropInPlaceGuard<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>,())>::hef2e66e2e1461752 + 113 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<pin_project_lite::__private::UnsafeDropInPlaceGuard<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>>::hd90735df81550034 + 60 ┊ 0.00% ┊ ⤷ <pin_project_lite::__private::UnsafeDropInPlaceGuard<T> as core::ops::drop::Drop>::drop::h3ad12c96077e7682 + 45 ┊ 0.00% ┊ ⤷ pin_project_lite::__private::UnsafeDropInPlaceGuard<T>::new::h4c0088e1dad4c424 + 29 ┊ 0.00% ┊ ⤷ core::ptr::read::h108aa3458a39be0a + 636 ┊ 0.01% ┊ ⤷ <futures_util::fns::UnwrapOrElseFn<F> as futures_util::fns::FnOnce1<core::result::Result<T,E>>>::call_once::he281f53e4e82d932 + 524 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::ha3942850db4d6547 + 240 ┊ 0.00% ┊ ⤷ <futures_util::fns::UnwrapOrElseFn<F> as futures_util::fns::FnOnce1<core::result::Result<T,E>>>::call_once::{{closure}}::hbc4122178d2ece64 + 166 ┊ 0.00% ┊ ⤷ <T as futures_util::fns::FnOnce1<A>>::call_once::h49dbbe4683af7aac + 92 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}::h057582973683d340 + 225 ┊ 0.00% ┊ ⤷ futures_util::future::future::map::_::<impl futures_util::future::future::map::Map<Fut,F>>::project::h34072e12cb847a06 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::hc85d43ed3160918a + 87 ┊ 0.00% ┊ ⤷ futures_util::future::future::_::<impl futures_util::future::future::Map<Fut,F>>::project::h6fe2485aa2744ab8 + 87 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::_::<impl futures_util::future::try_future::UnwrapOrElse<Fut,F>>::project::h3fd00a8834cb3b27 + 184 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h5e22b1db77c9fe5d + 14339 ┊ 0.29% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::hfbadfdc54f8d8f5f + 14254 ┊ 0.29% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_struct::hf3e61f91c7651fcd + 7328 ┊ 0.15% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__Visitor as serde::de::Visitor>::visit_map::hdcd4be83473d6e84 + 2420 ┊ 0.05% ┊ ⤷ serde::de::MapAccess::next_key::ha15c670ea31309a3 + 2365 ┊ 0.05% ┊ ⤷ <serde_json::de::MapAccess<R> as serde::de::MapAccess>::next_key_seed::heee3ec35259feb3a + 962 ┊ 0.02% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hcda73ec43fe1c152 + 907 ┊ 0.02% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__Field as serde::de::Deserialize>::deserialize::hb2c22bed7e9f467e + 852 ┊ 0.02% ┊ ⤷ <serde_json::de::MapKey<R> as serde::de::Deserializer>::deserialize_identifier::h9861639dc0b140f2 + 797 ┊ 0.02% ┊ ⤷ <serde_json::de::MapKey<R> as serde::de::Deserializer>::deserialize_any::h35d0be3c44bdcff9 + 345 ┊ 0.01% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__FieldVisitor as serde::de::Visitor>::visit_str::h3061bcfe72cc9f01 + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::haf467e2dc0743e68 + 314 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hc495217455bd7b3a + 109 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6aba77f3e2aecd74 + 45 ┊ 0.00% ┊ ⤷ core::option::Option::Some::h9f6996ea1adb085a + 131 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h20f13a4abeeaae6c + 1901 ┊ 0.04% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__Visitor as serde::de::Visitor>::visit_seq::he0b8c47e1714a86e + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h6a7467557c24d11e + 14226 ┊ 0.29% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::h7108e75474d2fe87 + 12417 ┊ 0.25% ┊ ⤷ reactive_graph::traits::WithUntracked::with_untracked::h36d9eeed9e8c846f + 11862 ┊ 0.24% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hf17a5099f6fdc6f8 + 11167 ┊ 0.23% ┊ ⤷ core::option::Option<T>::map::hd30f2522877716c3 + 10805 ┊ 0.22% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h931957b072503e4c + 10621 ┊ 0.22% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::{{closure}}::hfb9c55b22dc8417f + 10460 ┊ 0.21% ┊ ⤷ <T as leptos_server::serializers::SerializableData<leptos_server::serializers::SerdeJson>>::ser::hcc2c5c147ed2ec2b + 10390 ┊ 0.21% ┊ ⤷ serde_json::ser::to_string::hdb21c1d439ce5b33 + 10049 ┊ 0.20% ┊ ⤷ serde_json::ser::to_vec::h3a2855de791c8c12 + 9723 ┊ 0.20% ┊ ⤷ serde_json::ser::to_writer::h32e2693c093157b3 + 9628 ┊ 0.20% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for &T>::serialize::hf1c01d0e0b99f3ec + 9555 ┊ 0.19% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for core::result::Result<T,E>>::serialize::h3a05f9c2cd94266c + 5317 ┊ 0.11% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::h30dd8cb4a9a8359a + 4355 ┊ 0.09% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for alloc::vec::Vec<T>>::serialize::hf2301488bb40e184 + 4289 ┊ 0.09% ┊ ⤷ serde::ser::Serializer::collect_seq::h4236bfd3e9cc1fc5 + 2003 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_for_each::hdd808b2a881041fc + 1923 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h1f5aff56f48ebb92 + 1578 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::h0c1fe7d93d10ec4a + 1498 ┊ 0.03% ┊ ⤷ serde::ser::Serializer::collect_seq::{{closure}}::h817aee2b3ba92223 + 1410 ┊ 0.03% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeSeq>::serialize_element::h51041b521e3b3405 + 806 ┊ 0.02% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for &T>::serialize::h7ce761d1a19fb75d + 733 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::ser::Serialize for ssr_modes_axum::app::PostMetadata>::serialize::hdfb39ae2134c4b86 + 115 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_array_value::hc83e02e105f3b475 + 47 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_array_value::hf591e759aec7b3c3 + 42 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::from_output::h789fb001116d2b07 + 662 ┊ 0.01% ┊ ⤷ serde::ser::iterator_len_hint::h054ed2bfee26cdc5 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::size_hint::hd018dc2f07a3373f + 579 ┊ 0.01% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_seq::h7bd1e8652d5fecb7 + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_array::h5a09f7d35339d02f + 300 ┊ 0.01% ┊ ⤷ <&alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hb332c672a5f275b8 + 199 ┊ 0.00% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeSeq>::end::h8407d3883605f8ba + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_array::h8644098a679d47a2 + 3978 ┊ 0.08% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::h1e4e55f6f106e787 + 3016 ┊ 0.06% ┊ ⤷ server_fn::error::_::<impl serde::ser::Serialize for server_fn::error::ServerFnError<E>>::serialize::h248c7ddbbc06176d + 1296 ┊ 0.03% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::hefac50d99e8f7e77 + 334 ┊ 0.01% ┊ ⤷ server_fn::error::_::<impl serde::ser::Serialize for server_fn::error::NoCustomError>::serialize::hb71972b1c81087cd + 255 ┊ 0.01% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_unit_struct::h912d91ac05079b72 + 184 ┊ 0.00% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_unit::h11768229e723703f + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::write_null::h4bef83aa493643e3 + 962 ┊ 0.02% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::h6d56bd1ac01184b4 + 57 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h779a5bbcb052699c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>,reactive_graph::signal::guards::Plain<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::h4fec52d94307e324 + 601 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h184b92394175cdf5 + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h95a33b57bb14fe59 + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h218d147b342c6604 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h44ad00a461789894 + 435 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h1fe3156c85f1d962 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::WithUntracked::with_untracked::{{closure}}::h04e450714b07212a + 918 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::async_derived::future_impls::AsyncDerivedReadyFuture<T> as core::future::future::Future>::poll::h64f37616d8a13c0d + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h4cd55c92d579cf14 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hb226ff826889c087 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::ha20e1fa15d7c44ed + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::haf2833c6899bbf20 + 87 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h20fb5308bdd90e47 + 13363 ┊ 0.27% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B,C,D)>::build::h14927b5d91b937ea + 6743 ┊ 0.14% ┊ ⤷ <leptos_meta::RegisteredMetaTag<E,At,Ch> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::h4f8405cee3a6f7ad + 6306 ┊ 0.13% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h7db382f2e40afea4 + 4913 ┊ 0.10% ┊ ⤷ <(A,B,C,D,E,F) as tachys::html::attribute::Attribute<Rndr>>::build::hda50e86c6491b7fa + 801 ┊ 0.02% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::h769535b8cba67385 + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::haecbd3c29a0ce690 + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h5571aac9f3eeda4f + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::h6113f492b4da2195 + 801 ┊ 0.02% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::h8abb8aa37578c6cc + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::h0f77b2816449496a + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h9f1a2a96ad813e78 + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::h1f3ea00f0deaaf7c + 801 ┊ 0.02% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::hc152dfad836d434b + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::hc6354561d4c71f04 + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hcd7efe592f437a8c + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::ha1edd81d7a4d8151 + 801 ┊ 0.02% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::hc70d54818721657f + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::he915d365fe8869f1 + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::he9a93bbfd4d37387 + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::h1ffc3bc55863897a + 801 ┊ 0.02% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::hf1c26632e5564c3e + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::h65917484a9f6018c + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h6eb5284886dff962 + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::h51738c6e920bd889 + 98 ┊ 0.00% ┊ ⤷ <tachys::html::attribute::custom::CustomAttr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::had3f44317801fee2 + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::h3bf1c2b49e3a6ba5 + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::h523ee896b25a91a6 + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h27126a8f289b83f2 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h815cb81f6b287856 + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::ha84e2f8c68be82aa + 4667 ┊ 0.10% ┊ ⤷ <leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::h86b27ed5fafcb48c + 4285 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hf012b27a5de579c1 + 4170 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hd64e28f75a27bf85 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h49093fc978fe7c56 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h67d498575785655e + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd79926bc3ffc768f + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1823c2f5476ff0fc + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0b67b58954fe6d92 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h08c6649e3c5c2c53 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc10df394a0e91e9f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<oco::Oco<str>,reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::{{closure}}>::{{closure}}>::hbe062c6284b9658c + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h05e803c3aa652ccd + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h4c27ddb715ad1d59 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hb3288b1236885bdc + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::ha005bde9d0ebb6aa + 368 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h36be014cdcdf3cc6 + 368 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::hfabf991f8a900e65 + 12433 ┊ 0.25% ┊ ⤷ send_wrapper::futures::<impl core::future::future::Future for send_wrapper::SendWrapper<F>>::poll::hd21f31e4d29f14a1 + 11809 ┊ 0.24% ┊ ⤷ <server_fn::client::browser::BrowserClient as server_fn::client::Client<CustErr>>::send::{{closure}}::hd04a23a8a920dd78 + 7823 ┊ 0.16% ┊ ⤷ gloo_net::http::request::Request::send::{{closure}}::h36cba4be7feddf0b + 702 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h6c5ce53a71ab8135 + 109 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hd10160036b47faaa + 45 ┊ 0.00% ┊ ⤷ <gloo_net::http::response::Response as core::convert::From<web_sys::features::gen_Response::Response>>::from::h9d37d602cbc3a559 + 615 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::hc4c1e4bd2c6bfaed + 301 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hb314550201d9cfdf + 226 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::h6a8fb7c52d8e9ce0 + 158 ┊ 0.00% ┊ ⤷ web_sys::features::gen_WorkerGlobalScope::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_WorkerGlobalScope::WorkerGlobalScope>::instanceof::ha81192ae849cb5ee + 58 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_WorkerGlobalScope_46b577f151fad960 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::ha91b98d5d448b20c + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_WorkerGlobalScope::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_WorkerGlobalScope::WorkerGlobalScope>::unchecked_from_js::h6e546cde56553f56 + 606 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h7af62a1946050d02 + 292 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hc59b2e66d1c313a9 + 217 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::hb711e27c89d10ba7 + 149 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Response::Response>::instanceof::h6ba5224b9405fba9 + 49 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Response_849eb93e75734b6e + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h6052f7a19b48fe15 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Response::Response>::unchecked_from_js::h548529af297fb71e + 603 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h2fb301a8abf9c170 + 204 ┊ 0.00% ┊ ⤷ gloo_net::http::request::Request::send::{{closure}}::{{closure}}::h73e1807d18206d92 + 540 ┊ 0.01% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h82d33d4b040b17fb + 242 ┊ 0.00% ┊ ⤷ web_sys::features::gen_WorkerGlobalScope::WorkerGlobalScope::fetch_with_request::hc39de01cae9f4c8e + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_WorkerGlobalScope::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_WorkerGlobalScope::WorkerGlobalScope>::into_abi::h6469945c7dab81a4 + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_fetch_921fad6ef9e883dd + 185 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Window::Window::fetch_with_request::h9e405836cd17d9fc + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_fetch_c4b6afebdb1f918e + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h1839de220522f492 + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::hd5cfa8ed8824210e + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::from_str::haec294c744649bb3 + 93 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::is_undefined::hb51aca5cc2a61fd6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_WorkerGlobalScope::WorkerGlobalScope>::h7e89fddf36690ffa + 31 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::ops::deref::Deref>::deref::h8670cecbaf6e026c + 927 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::heaa080808e8296a4 + 284 ┊ 0.01% ┊ ⤷ <server_fn::client::browser::BrowserClient as server_fn::client::Client<CustErr>>::send::{{closure}}::{{closure}}::hd5163efa4330878c + 160 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::new::h909a58a579a5dcfc + 748 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map_err::h6c040f14fc2cb56d + 127 ┊ 0.00% ┊ ⤷ <server_fn::client::browser::BrowserClient as server_fn::client::Client<CustErr>>::send::{{closure}}::{{closure}}::h2d2619e5e50158a9 + 493 ┊ 0.01% ┊ ⤷ send_wrapper::SendWrapper<T>::take::hba663cae490c10dd + 84 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::take::h14c31a6803d0dc53 + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h648b32f682c389c3 + 129 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hcfe523c831c4b893 + 114 ┊ 0.00% ┊ ⤷ server_fn::request::browser::AbortOnDrop::prevent_cancellation::h8cba46d56d0898cd + 87 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h881668a5113335f2 + 47 ┊ 0.00% ┊ ⤷ gloo_net::http::request::Request::send::h0c82434f8411ff99 + 322 ┊ 0.01% ┊ ⤷ core::pin::Pin<&mut T>::map_unchecked_mut::hb11a5b029d71cb71 + 216 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfcc2960db4ca0b97 + 143 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::deref::DerefMut>::deref_mut::h6075cdae85ea6d1d + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h3c3607f74e302663 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h14cd5d1690a965e8 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h28a9b8a421d1288a + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_poll::h4983adac35274a40 + 11877 ┊ 0.24% ┊ ⤷ routing::nested_router::__Outlet::{{closure}}::h3d760eea183ea337 + 8843 ┊ 0.18% ┊ ⤷ std::sync::mpsc::Receiver<T>::try_recv::h32dd5017caf7c136 + 8788 ┊ 0.18% ┊ ⤷ std::sync::mpmc::Receiver<T>::try_recv::he85f741234d28a3c + 3888 ┊ 0.08% ┊ ⤷ std::sync::mpmc::list::Channel<T>::try_recv::h420b347af72267e3 + 1971 ┊ 0.04% ┊ ⤷ std::sync::mpmc::list::Channel<T>::start_recv::h606c6dc44f6ff335 + 1346 ┊ 0.03% ┊ ⤷ std::sync::mpmc::list::Channel<T>::read::h335e879f057970cc + 775 ┊ 0.02% ┊ ⤷ std::sync::mpmc::list::Block<T>::destroy::h13ab9ef60013e72e + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::he816c0068ece4f8b + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h14b2d83e141314c2 + 38 ┊ 0.00% ┊ ⤷ std::sync::mpmc::list::Channel<T>::try_recv::{{closure}}::h4b4a31ebe062c7c1 + 2404 ┊ 0.05% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::try_recv::h116a1ef95029aeda + 1085 ┊ 0.02% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::read::hac9aac7511e544f0 + 330 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<std::sync::mpmc::zero::Packet<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::ha3e23f6ceda55b98 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hccc973878ac4dee1 + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h6307530ae050a968 + 38 ┊ 0.00% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::try_recv::{{closure}}::h9dd1294c80524cac + 2266 ┊ 0.05% ┊ ⤷ std::sync::mpmc::array::Channel<T>::try_recv::h84e4b0ac929c0132 + 1365 ┊ 0.03% ┊ ⤷ std::sync::mpmc::array::Channel<T>::start_recv::h550526836e3a527e + 330 ┊ 0.01% ┊ ⤷ std::sync::mpmc::array::Channel<T>::read::h032c11aacd8404f8 + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hb33370dd4ff6472c + 38 ┊ 0.00% ┊ ⤷ std::sync::mpmc::array::Channel<T>::try_recv::{{closure}}::hb0aaf73762174d14 + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h65833ca6899678ba + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::hb74ee767b9711718 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h8449e475bc849f41 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h0db414771f2b477e + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h6e7876edaedc6b12 + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h46f96af33b8714e7 + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::hd96720c1b66b0055 + 459 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h98fefe48422122b5 + 64 ┊ 0.00% ┊ ⤷ routing::nested_router::__Outlet::{{closure}}::{{closure}}::h30fae046d01e96a0 + 289 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::unwrap::h6f7d860e5b4b9aeb + 11522 ┊ 0.23% ┊ ⤷ tachys::view::any_view::insert_before_this::h276699dc4d293fb9 + 10840 ┊ 0.22% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::ha0ce4fe61bc6bde1 + 8617 ┊ 0.18% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::insert_before_this::hb71504a21f8a8a4c + 8424 ┊ 0.17% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::insert_before_this::h099b15124a10c906 + 8218 ┊ 0.17% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::he0496d6565fc0c2d + 8066 ┊ 0.16% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::hd281e239501fd305 + 7886 ┊ 0.16% ┊ ⤷ core::option::Option<T>::map::h9d6e186f4b616a2f + 7604 ┊ 0.15% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::{{closure}}::h2c1417b0e05dd63e + 7509 ┊ 0.15% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::h4db3fbe5b42f9207 + 7017 ┊ 0.14% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::insert_before_this::hbb3341325d6cc773 + 6811 ┊ 0.14% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::h04880d1c31deab23 + 6659 ┊ 0.14% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h778ecd5137308aa8 + 6479 ┊ 0.13% ┊ ⤷ core::option::Option<T>::map::hab79742e419854e2 + 6197 ┊ 0.13% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::{{closure}}::h5d9ee8ba06b7ccfc + 6102 ┊ 0.12% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryViewState<Chil,Fal,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::h8143fb3caab2f940 + 4148 ┊ 0.08% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::insert_before_this::h8640d537f5254528 + 3942 ┊ 0.08% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::he68dc8f3da9e0624 + 3790 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h89df764fb8aebe88 + 3610 ┊ 0.07% ┊ ⤷ core::option::Option<T>::map::h3284a2120ad50b6e + 3328 ┊ 0.07% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::{{closure}}::h3484fde4df4bde5d + 3233 ┊ 0.07% ┊ ⤷ <leptos::suspense_component::SuspendState<T,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::h113fe7f0254ba79f + 2946 ┊ 0.06% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::insert_before_this::he6aa9c9efee05d4c + 2560 ┊ 0.05% ┊ ⤷ core::option::Option<T>::map::h89716b5467d6e476 + 2278 ┊ 0.05% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::insert_before_this::{{closure}}::h8ee8c467de1cb6a6 + 2183 ┊ 0.04% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::insert_before_this::he5c844278ec35993 + 1175 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map::hba51f7670ad3c363 + 880 ┊ 0.02% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::insert_before_this::{{closure}}::h56546588e3c02e6b + 785 ┊ 0.02% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B,C,D)>::insert_before_this::h426aefbe95b9a0c1 + 295 ┊ 0.01% ┊ ⤷ <leptos_meta::RegisteredMetaTagState<E,At,Ch> as tachys::view::Mountable<tachys::renderer::dom::Dom>>::insert_before_this::h7c08a3314abb6176 + 138 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::insert_before_this::h528c92ba1b3dd027 + 137 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::insert_before_this::h8886f454289d548e + 67 ┊ 0.00% ┊ ⤷ <leptos_meta::title::TitleViewState as tachys::view::Mountable<tachys::renderer::dom::Dom>>::insert_before_this::h245161e4bee90c47 + 553 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::cmp::PartialEq>::eq::h23fb53b1e69e034f + 169 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h987046fed052bd0b + 78 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::cmp::PartialEq>::eq::h845c04d37c724806 + 174 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::as_ref::hf2518ba672e9c035 + 129 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h0acf24ec140a434a + 59 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::Deref>::deref::h6b0bdbb038dd7843 + 869 ┊ 0.02% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::insert_before_this::h81e8aec0868dcf2e + 514 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h785de1b88770fc14 + 232 ┊ 0.00% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::insert_before_this::{{closure}}::hcc1eb8202852e364 + 137 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::insert_before_this::hd981ac52af61e62d + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::ha9e80f98440f968e + 466 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h65d793394691c91b + 389 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hfb4127ac23d96e9d + 334 ┊ 0.01% ┊ ⤷ tachys::renderer::dom::<impl tachys::view::Mountable<tachys::renderer::dom::Dom> for web_sys::features::gen_Comment::Comment>::insert_before_this::h0d27c71fcea93685 + 209 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Comment::Comment as core::convert::AsRef<web_sys::features::gen_Node::Node>>::as_ref::h032f9f725405e218 + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Comment::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Comment::Comment>::as_ref::h99ef35a86c08b8c6 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_CharacterData::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_CharacterData::CharacterData>::as_ref::h83a7f731cdac8a9f + 31 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Node::Node>::unchecked_from_js_ref::h96b131ef8e238378 + 92 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for bool>::eq::hed79e0d1b8414fd1 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::ha25024709f86addf + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h9646076935cab6a6 + 1737 ┊ 0.04% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::insert_before_this::h96a477658625a386 + 1544 ┊ 0.03% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::insert_before_this::h0473765f30474c11 + 1338 ┊ 0.03% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::h7988176446b9aa62 + 1186 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h58fc1b86438f945f + 1006 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::hcb73002a2b6c26de + 724 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::{{closure}}::h5aef5e020c171d77 + 629 ┊ 0.01% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::h6a0f89f966684ae7 + 137 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::insert_before_this::h4b8a8d1c32c63086 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h420182b6f20c6274 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h6a7b4a6020a6b3d0 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h64be2454af24d4c3 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h9ebd264165dc9c04 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h94f8f2c902c6e769 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h299ea0ed1573a095 + 11495 ┊ 0.23% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for core::option::Option<T>>::rebuild::h8c5b407b71dbb0d5 + 10373 ┊ 0.21% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::Render<R> for core::result::Result<T,E>>::rebuild::h7e64730b2e46ecef + 7424 ┊ 0.15% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B,C,D)>::rebuild::h84037610a3dbd9d0 + 6297 ┊ 0.13% ┊ ⤷ <leptos_meta::RegisteredMetaTag<E,At,Ch> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::hfdd24626755bc851 + 5897 ┊ 0.12% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h38778d11a2b209a9 + 5519 ┊ 0.11% ┊ ⤷ <(A,B,C,D,E,F) as tachys::html::attribute::Attribute<Rndr>>::rebuild::h886a04c1e9618e20 + 720 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::h053d41d066e9ff72 + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::h475c29c6e410c1f7 + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::he696d55005137f64 + 720 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::h426c0e67eaed0ec5 + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::haab9edc9c4cbbf29 + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::hd61414e2f8d61dd0 + 720 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::hd6ecf9139dfdc1b5 + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::h58953bd82be5d322 + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::h8f1a1c8bf781a9ac + 720 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::hf67075c7b00dec1e + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::h31e1e47d30a34639 + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::h55eadbf949c09adf + 720 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::hfb347d43e4e56a1a + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::h2c2d30cc66ed9fff + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::h5432a07c690e1e7c + 716 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::custom::CustomAttr<K,V,R> as tachys::html::attribute::Attribute<R>>::rebuild::hd9d8dce60e55bb59 + 620 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::rebuild::h282732f17769dc73 + 96 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::rebuild::hf21db081454caee1 + 683 ┊ 0.01% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::remove_attribute::hd6bdcc9d0d87bb38 + 447 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Element::Element::remove_attribute::h3e6196d15cc138de + 45 ┊ 0.00% ┊ ⤷ import wbg::__wbg_removeAttribute_1b10a06ae98ebbd1 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h046c41c52e9b7b0f + 160 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h9d90da7a55fd0033 + 160 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::hd716b8d02a8d1ae8 + 53 ┊ 0.00% ┊ ⤷ <leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::h40bec1c934e27859 + 1661 ┊ 0.03% ┊ ⤷ any_error::throw::h969afe0da06eeedb + 1558 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::h6545018890db96f2 + 1441 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::with::h94da0a3022d735c0 + 1164 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::he9e9104c48671c9a + 789 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::{{closure}}::hce006e7fc750dc5c + 489 ┊ 0.01% ┊ ⤷ any_error::throw::{{closure}}::hfa314e5647f3b9df + 376 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h834e76846c6a40b5 + 142 ┊ 0.00% ┊ ⤷ any_error::throw::{{closure}}::{{closure}}::h30229ae790bd6471 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h878c9fd4083c8bf9 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::hd6a10f37deb91611 + 11150 ┊ 0.23% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::hb0b5003c9ef5f180 + 9308 ┊ 0.19% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::h4ea9d1256202b552 + 7489 ┊ 0.15% ┊ ⤷ core::option::Option<T>::map::hd71f783ed2961e9f + 6789 ┊ 0.14% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h1c28b249f23db5e3 + 6572 ┊ 0.13% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::hc9dff69c6f646812 + 6265 ┊ 0.13% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::h438bb964434f51c4 + 5897 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h28534a865728d463 + 5784 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hf7ee1482b034394a + 3277 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h07125685a4fa5bb0 + 1246 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h12d18823c3f06bf0 + 856 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h4290345802975895 + 721 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hfc3b899a4d829d5e + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc1f90cc1c2365673 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0192ae50cae6026c + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha3647541aa323884 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0dd2c74caa113616 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3f5ef5e154d08be5 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc21a8951cb290924 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h72dd012848d0ba9e + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h2186c6205db644ff + 852 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h4cda7739eb821b07 + 76 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h005d09fa629febc5 + 739 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h146b0a50d45a018b + 10918 ┊ 0.22% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::hf87c968823c5ade9 + 10856 ┊ 0.22% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::h6546340cf91a725a + 10792 ┊ 0.22% ┊ ⤷ reactive_graph::traits::With::with::hfb55fc4df0f8334e + 10258 ┊ 0.21% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::hf2dcc2bea373eb96 + 6236 ┊ 0.13% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hbe89c92c527873a8 + 3765 ┊ 0.08% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h954c550631d1b4b8 + 3687 ┊ 0.08% ┊ ⤷ core::option::Option<T>::map::h382630ca9f4fa319 + 3397 ┊ 0.07% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h5a9b4a7d32e22dbe + 3291 ┊ 0.07% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::haa338fb8425b4de0 + 2792 ┊ 0.06% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::hc0ddbd43d234794e + 2046 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<T>,U>::try_new::h21172046ad1b9f21 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::hbcefc61b1b8605c6 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::ha3bf921ca634fac8 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::he0f5431b0e773fcb + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h1b29cf5b746e4413 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::haf37d8530b5523d0 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h644a6925d76ccd2f + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::hd629e4910a90a885 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>>::h49b32d0e56ee520d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>::haa1d39b7c31f7bbb + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hde9a80e636ac5981 + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h2d32d5ee7430dff0 + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hdbc0e3107e177735 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h9a607f804fdf8785 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h581b0b967340e7a9 + 86 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::h4f2798087ba7391d + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h0d392c6471e588f1 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::haed92f2a0085789c + 1983 ┊ 0.04% ┊ ⤷ core::option::Option<T>::map::h3c7c7b1bc8c1f6bb + 1690 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hbac3b92ddd43a981 + 946 ┊ 0.02% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::h13f63ee9ecfa767f + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hf56b0a555126a526 + 169 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::hf665fa74e2aa9771 + 96 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or_default::h7cd0df51636739ad + 243 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::map_err::h669c4e5c75ed2a0f + 49 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}::ha845ac4f92ddac6d + 200 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::as_ref::h50fa8513059948fc + 511 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h19d310ab3ad6f9dd + 454 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Mapped<Inner,U> as core::ops::deref::Deref>::deref::h3778b0ae627899f0 + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h9117646409d63517 + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h128f21eaf99d7734 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h0b1433cd21bcc8d2 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::habc31e22d438b347 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>,reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>,core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h2cc342808333d00d + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>,core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>::hefde25a3409c1444 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h5b1d99a3e95f7f6b + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h53e49a5740e258d8 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h31492416173b2870 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hb5b1dffa0eb79a4c + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>::h0360a0c218fb4685 + 1852 ┊ 0.04% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as reactive_graph::owner::arena::StoredData>::get_value::hcececc980225efc5 + 1758 ┊ 0.04% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::get::heda114d0958b1078 + 1675 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::h838af30b415d8c62 + 1558 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::Arena::with::h9381fa5a4d2adee6 + 1335 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::hb7e687302166cc62 + 747 ┊ 0.02% ┊ ⤷ core::option::Option<T>::and_then::hab533ee5196d956a + 552 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::{{closure}}::h1caadba39298e58e + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hc0dcc1b692dd61b3 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h12440024ae2f2be0 + 440 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h42d317069726242b + 205 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h7805f56920cd3503 + 115 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as core::clone::Clone>::clone::hb35f939888f4d945 + 1760 ┊ 0.04% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as reactive_graph::traits::Track>::track::h5febe8c8bdf1fb00 + 1388 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h41a8a5626314b7af + 814 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h5960694e305b6157 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h3db82680f2710bb5 + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::h8c906a7bc3c21fac + 73 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::Source>::add_subscriber::hcf024257be3e938a + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h166f0fc50c1e10ae + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h54a66d191ba8640d + 391 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::ha5adefce74b3b495 + 166 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h53231e2dacc27f8a + 52 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::memo::Memo<T> as reactive_graph::traits::DefinedAt>::defined_at::h68929871db767956 + 10427 ┊ 0.21% ┊ ⤷ serde::de::MapAccess::next_value::h5c10ab453da4c1cd + 10370 ┊ 0.21% ┊ ⤷ <serde_json::de::MapAccess<R> as serde::de::MapAccess>::next_value_seed::hb1981d1b60480b48 + 10213 ┊ 0.21% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::hf9f5d693180c77ba + 10156 ┊ 0.21% ┊ ⤷ <serde::de::ignored_any::IgnoredAny as serde::de::Deserialize>::deserialize::h87cf243b07d95ccf + 10099 ┊ 0.21% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_ignored_any::h64701c1f472cd973 + 9916 ┊ 0.20% ┊ ⤷ serde_json::de::Deserializer<R>::ignore_value::h7981222e87818756 + 2401 ┊ 0.05% ┊ ⤷ serde_json::de::Deserializer<R>::ignore_integer::h400974c4d9ce9bd6 + 655 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::ignore_exponent::h806f124b174fd24c + 520 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::ignore_decimal::h373177b55f85ac2c + 216 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::next_char_or_null::he0438d990bb42539 + 1887 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::Extend<T>>::extend::h9bc10da8bddeaeb7 + 1654 ┊ 0.03% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::hb474cacd00abc809 + 1575 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h05b0371e2bc97193 + 773 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hc16c01706b9e4b8e + 649 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::he4216024b888aecc + 212 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hcab946b24031102a + 136 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h8f97c8921b0b207f + 124 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::next::had3819485f2eea2f + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<u8,alloc::vec::Vec<u8>::extend_trusted<core::option::IntoIter<u8>>::{{closure}}>::{{closure}}>::h77b4e9235656905d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u8>::extend_trusted<core::option::IntoIter<u8>>::{{closure}}>::h62e0e07fa1045086 + 189 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::size_hint::hb09bcca662fd1f22 + 117 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::iter::traits::collect::IntoIterator>::into_iter::hb5bf66ec5264af56 + 1382 ┊ 0.03% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::ignore_str::h7727d3cf9430e6d6 + 1325 ┊ 0.03% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::ignore_str::hf01733891f939040 + 420 ┊ 0.01% ┊ ⤷ serde_json::read::ignore_escape::hd078abcec10d20a7 + 265 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::pop::hebb5580c2b01e57d + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hf4dcbe8dd95ccca6 + 42 ┊ 0.00% ┊ ⤷ <serde::de::ignored_any::IgnoredAny as serde::de::Visitor>::visit_unit::h31c44c8909ab0c78 + 10107 ┊ 0.21% ┊ ⤷ hashbrown::raw::RawTable<T,A>::reserve::h8db7b94ec0bf9555 + 9848 ┊ 0.20% ┊ ⤷ hashbrown::raw::RawTable<T,A>::reserve_rehash::he9ed65f624ee168d + 4390 ┊ 0.09% ┊ ⤷ hashbrown::raw::RawTableInner::rehash_in_place::h49c8a45b6caa8cac + 1690 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTableInner::prepare_rehash_in_place::hec9724286c0e7c39 + 386 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::div_ceil::h541fbf4300bd0ae8 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::h950b89fb8ed133b9 + 574 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::find_insert_slot::h3e7f4ced55cbc29e + 322 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::prepare_insert_slot::h08ee6ea52606d12b + 9658 ┊ 0.20% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for core::option::Option<T>>::build::h857519c160e7530d + 9399 ┊ 0.19% ┊ ⤷ core::option::Option<T>::map::h417931b884acf037 + 8669 ┊ 0.18% ┊ ⤷ core::ops::function::FnOnce::call_once::haa2f3258f6f60d3e + 8504 ┊ 0.17% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h3ab21248929120ef + 6426 ┊ 0.13% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::build::hfea794f0af83c098 + 6122 ┊ 0.12% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::hd30e5e4c2ed215d3 + 4635 ┊ 0.09% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::build::h4a3ade0550ca0427 + 4468 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::h46bc25bf1644ae4e + 4287 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h0bde0035a97d0d5f + 4172 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h819fb3609f96cea9 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h4851df36aaeae4e7 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc3032060ec89a350 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h83d5384d787d5dc6 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::he636aedf028d0e28 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h96c98f990e24ae86 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h07251bf4d4c70a45 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h6100c8922d1377ff + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h7fca234ff73f6959 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h3694783cd6d47f56 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h2b1158b419cfc142 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h6ba09c8f02369385 + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h4590e069a903becb + 1213 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::h4dd9bcd10404ecf1 + 1072 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::hc5a9b092c29fc448 + 957 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::ha1e5ec25a88ab750 + 605 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h40cc1b0bde900acf + 379 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h1c713df4d70afbb1 + 287 ┊ 0.01% ┊ ⤷ <tachys::view::iterators::VecState<T,R> as tachys::view::Mountable<R>>::mount::h71e55f9f58a4bab5 + 134 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::had10bf80e008416d + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::h24006148995b3563 + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::hefdd3ca90889ac54 + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h74c07ad05b7bb5e8 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha35bc5dc8cb4b0b1 + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::h97ae07b4cd3e50a4 + 260 ┊ 0.01% ┊ ⤷ <(A,) as tachys::html::attribute::Attribute<Rndr>>::build::hc9d3b73974ee9223 + 187 ┊ 0.00% ┊ ⤷ <tachys::html::class::Class<C,R> as tachys::html::attribute::Attribute<R>>::build::hcb62dd5bfdb24990 + 114 ┊ 0.00% ┊ ⤷ <&str as tachys::html::class::IntoClass<R>>::build::h338f48d0628dd55a + 194 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::mount::hff2a37ef53023dce + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::h2a69f7207d1f1b1a + 9363 ┊ 0.19% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::hfd716522e778c849 + 7554 ┊ 0.15% ┊ ⤷ reactive_graph::traits::WithUntracked::with_untracked::h43c6b2150e318aeb + 6999 ┊ 0.14% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h55f6a452dfced0ed + 6304 ┊ 0.13% ┊ ⤷ core::option::Option<T>::map::heb6b38eecb02b52e + 5942 ┊ 0.12% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h94ac4452a130baea + 5758 ┊ 0.12% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::{{closure}}::h96dcccd13ee2844a + 5597 ┊ 0.11% ┊ ⤷ <T as leptos_server::serializers::SerializableData<leptos_server::serializers::SerdeJson>>::ser::h615c142a22172abf + 5527 ┊ 0.11% ┊ ⤷ serde_json::ser::to_string::h2e4d3831cda4e408 + 5186 ┊ 0.11% ┊ ⤷ serde_json::ser::to_vec::h672a8b607032b643 + 4860 ┊ 0.10% ┊ ⤷ serde_json::ser::to_writer::h76d1ca5749a66bd9 + 4765 ┊ 0.10% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for &T>::serialize::hd5b6711d45aec186 + 4692 ┊ 0.10% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for core::result::Result<T,E>>::serialize::habdf98e0de4a9c12 + 3128 ┊ 0.06% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::hcc5d8152f4f902f1 + 2166 ┊ 0.04% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for core::result::Result<T,E>>::serialize::h35e16abfebde159e + 1902 ┊ 0.04% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::hb057472fdd00947d + 940 ┊ 0.02% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::ser::Serialize for ssr_modes_axum::app::Post>::serialize::hbe62e53846a71d65 + 1300 ┊ 0.03% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_newtype_variant::hd9056964c2383dc3 + 338 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::_::<impl serde::ser::Serialize for ssr_modes_axum::app::PostError>::serialize::hdf02da743c5f7fe2 + 96 ┊ 0.00% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_unit_variant::h2c25328139e44841 + 57 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::hdf1b35e1dfb12d84 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>,reactive_graph::signal::guards::Plain<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h41ff0c04eda8e5ea + 601 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::he598709dd316eaa5 + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h28b523919e70f5ec + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1cb9841c81a82cce + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h5bbd5cc38e986ffa + 435 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h2612aeb7f83bc2b7 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::WithUntracked::with_untracked::{{closure}}::hfa27e2ceb0f493cb + 918 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::async_derived::future_impls::AsyncDerivedReadyFuture<T> as core::future::future::Future>::poll::h15e76973135e7b07 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::ha8f00c0dca037ac8 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hda712cb13e8bb188 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h2030250bdd3230c6 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h5f9f17b5b6d2fee9 + 87 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hf7c49c5801ac3caf + 9118 ┊ 0.19% ┊ ⤷ serde_json::de::Deserializer<R>::parse_integer::ha32b1a988f9aac38 + 2526 ┊ 0.05% ┊ ⤷ serde_json::de::Deserializer<R>::parse_exponent::hdc090442b6ad49c0 + 453 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_exponent_overflow::hd6f6424af327f2dc + 2163 ┊ 0.04% ┊ ⤷ serde_json::de::Deserializer<R>::parse_decimal::h0bed4fbb5151b99b + 458 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_decimal_overflow::h6150c565432e7bbb + 1140 ┊ 0.02% ┊ ⤷ serde_json::de::Deserializer<R>::f64_from_parts::hf094eb92cf298914 + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get::h18369b4c648eee84 + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::hcc266de4861108b1 + 116 ┊ 0.00% ┊ ⤷ core::num::<impl i32>::wrapping_abs::h1627c9a72140dc31 + 87 ┊ 0.00% ┊ ⤷ core::f64::<impl f64>::is_infinite::hc96d7ddb4c873187 + 714 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_number::h29cb450c61c7e0b9 + 538 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_long_integer::h41f470a520ae08ed + 8 ┊ 0.00% ┊ ⤷ type[28]: (i32, i32, i32, i64, i32) -> nil + 9111 ┊ 0.19% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::h8767505a56c19094 + 7464 ┊ 0.15% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::h4f8b13c92f09775a + 5779 ┊ 0.12% ┊ ⤷ core::option::Option<T>::map::h52d0183ab1cf60dd + 5323 ┊ 0.11% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::hbaf696b14639a3d9 + 5247 ┊ 0.11% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::h2b5d436052a1e186 + 5106 ┊ 0.10% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::hcfc9a6c788573c25 + 4515 ┊ 0.09% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for (A,)>::hydrate::hb6c1b2afcfdc2f34 + 4350 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::h26c5ee7e33f32a3b + 4100 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h76136842bfc8060c + 4004 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h19b18dc33235d81b + 2477 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hf3b4d17a69ddbf74 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7ec43ab3c0b06f49 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4bf607d12bd4dba5 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h322bcb6d02b18d44 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h1423451fd0e44c14 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hcf75cc345499abd2 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h20cf92adbd419745 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h0a2ef78eb008c657 + 415 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hb3d9ffee12156a1a + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::heabbce1754ed77e8 + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h485d7a1037527fd3 + 619 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hde9bd0b647c914ac + 852 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h7245cebf69178043 + 76 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h858b3bf87a466a45 + 610 ┊ 0.01% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h6808bd9272e9ee9c + 9049 ┊ 0.18% ┊ ⤷ std::io::impls::<impl std::io::Write for &mut W>::write_all::ha5dd84057850237a + 8969 ┊ 0.18% ┊ ⤷ std::io::impls::<impl std::io::Write for alloc::vec::Vec<u8,A>>::write_all::hc995c6a14f7548f2 + 8887 ┊ 0.18% ┊ ⤷ alloc::vec::Vec<T,A>::extend_from_slice::h149b28cc5209b4c6 + 8690 ┊ 0.18% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::he6704ee469e79431 + 8302 ┊ 0.17% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h6d438fcacce94e62 + 8116 ┊ 0.17% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hdb67fc96cd2f7ad0 + 7211 ┊ 0.15% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::ha8deff1981400b92 + 5138 ┊ 0.10% ┊ ⤷ alloc::raw_vec::finish_grow::h4b6ba6e0b0938c7b + 1848 ┊ 0.04% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h40d1e4ecb459c749 + 1713 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::h761c92faa7fa2be2 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h0afceac3b278c9bf + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h2c18ea746ca032b7 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h41a3be24a539283a + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h7c0552d94f2deb8c + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h6959e0fcfe797734 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h1b193f698a3e8bea + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h4b1118b99c61e9bb + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::hc8b6e849ad6c881a + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h524e55c8bba79019 + 800 ┊ 0.02% ┊ ⤷ alloc::raw_vec::handle_reserve::hc2c0eac724a81c71 + 571 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::ha635d3e646f407c2 + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::h8dfa3891a797af8e + 8943 ┊ 0.18% ┊ ⤷ <server_fn::error::ServerFnError<CustErr> as server_fn::error::ServerFnErrorSerde>::de::h202fc914467d2386 + 5378 ┊ 0.11% ┊ ⤷ core::str::<impl str>::split_once::h241ed192bb302ff7 + 2364 ┊ 0.05% ┊ ⤷ <char as core::str::pattern::Pattern>::into_searcher::h4c14e40ba4786416 + 1968 ┊ 0.04% ┊ ⤷ core::char::methods::encode_utf8_raw::h1b789cd5dad30f1f + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h987269c47829adc2 + 2352 ┊ 0.05% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match::hcf110de01619b75d + 339 ┊ 0.01% ┊ ⤷ core::slice::memchr::memchr_naive::hdc52343d872a5b47 + 295 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::get::h367e03e1ed31afe1 + 289 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::h7c44af810f61ef1b + 2789 ┊ 0.06% ┊ ⤷ core::option::Option<T>::and_then::h93197b0dd853bec3 + 2503 ┊ 0.05% ┊ ⤷ <server_fn::error::ServerFnError<CustErr> as server_fn::error::ServerFnErrorSerde>::de::{{closure}}::h6e6b5bb11c84cc79 + 67 ┊ 0.00% ┊ ⤷ <server_fn::error::NoCustomError as core::str::traits::FromStr>::from_str::he604995e0b6c29cf + 576 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h032bc49fbbb4320e + 290 ┊ 0.01% ┊ ⤷ <server_fn::error::ServerFnError<CustErr> as server_fn::error::ServerFnErrorSerde>::de::{{closure}}::h4fc675078ac929eb + 8719 ┊ 0.18% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::h5856575602890556 + 4247 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hcdef2cafd82f7cc1 + 2564 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hc2d6d53bee896316 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd8dfa50605519178 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h38ec7705ce5e8914 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h00a2b7df7236efcb + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h25fc358590968657 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hda38c96222d6793b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h3febf040450527f7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<routing::params::ParamsMap,reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>::update_if_necessary::{{closure}}>::{{closure}}>::h69a98785f56b00f6 + 533 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::haf04628fa193541c + 432 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h4f9eb7e1dc8650bd + 281 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::h90fa2338013029d6 + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hef0c25ade6a7770c + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h2a48fb45915b8dd8 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h3cae7caae9113f08 + 546 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h2e2ec415c436b9ef + 287 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::ha00d681880d32c30 + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h1b56525b98dbaede + 139 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h34f76161d7754344 + 134 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hf03a9dbcdb5a800b + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::h30a557d5e0a6114b + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::hd1e6b601093d111f + 8585 ┊ 0.17% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::h70109a12061922b9 + 4247 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h31d04ab46ea52532 + 2564 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::he21e51583b6ff1af + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc37b4b4c06cda1ff + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc93d5fb8e75e6395 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::haf0222ea589cd3d9 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h36883c2bde6cba19 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd399a491f9dcc25a + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h22c42a5179e7d7c0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>,reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::update_if_necessary::{{closure}}>::{{closure}}>::h210eb512ebb5f6b1 + 533 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h5151706fd6fc9568 + 432 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hca7863d3e956b12b + 281 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::hc067a36b5909eb9d + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h07c9f6d3b7d0d608 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hd56cdd65607ec890 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h7baded331378942c + 546 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h71554eb0cef268db + 287 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h5a07392e5909858b + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::he09c651efb1357a9 + 139 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h7c93d035af5b958e + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::h1aa5290041aefd29 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::h6a778ac10d56b10c + 8458 ┊ 0.17% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::build::h2819d3c6eb8c4c80 + 6998 ┊ 0.14% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::build::hd0efa368d87bed36 + 5888 ┊ 0.12% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::he9353653eb603162 + 5727 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h61be2f6167cd5598 + 5614 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h78fa55d51d93a64e + 3339 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h6e308554a3d73c79 + 1308 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h2bc01020c7187a6b + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h29498d7e9dfc0180 + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h38e2eedd951f992c + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hdd3588b7423a2a82 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb59275d6ac493b00 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9c5fe764823675fd + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h76b5bc349a2eade7 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hff4b0f54cecc3005 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h29a96304d65d81db + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h663ba95859865301 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h5dcb4e5325ac2edd + 1209 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::hd8d495b358c74e0d + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::hc9d7b7fd6ec5f109 + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::h04fa6cdc2cf1648d + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::hacaedba0df0806ca + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hdfebd786c7aa5893 + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::h503a8577f3a57551 + 8230 ┊ 0.17% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::hb38b3db66237a07e + 4375 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h279f4aa34a1a2a5b + 2674 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h45f312861cc8e8e4 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h9a37259dbe426211 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9bc105f149aec6ea + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h02a32f8d58e33749 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::haf3e4a4139045837 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h346f759488c4cf85 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h45a5e9e928d1e94a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<bool,reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<bool>>>::update_if_necessary::{{closure}}>::{{closure}}>::h5d72ae258aac2469 + 590 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::hfe61aa4caad884bb + 476 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h6e3b14eb7d0a789c + 294 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::h58b1113ee1c808ab + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hd5eee61155597403 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::he1c00a077e6d9a9e + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h259f370e205bbb73 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::ha6ce9e43b2afa572 + 286 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h5430a7e5d4b95c10 + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::he2661cb774ffd0fb + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::h98e05a64f7dc9d17 + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hb08c3eac59a35a76 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::he81fa7a28eca8460 + 8156 ┊ 0.17% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::hd6cde13e9177fc40 + 4247 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::ha2a60accad683720 + 2564 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h3b3a3deee0892ef7 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc054150bef24099c + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h8c55d2d47bbaf8f1 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h841b6232d1603f3a + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hdea321d29e989007 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h21e99e9ecb89acce + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h10a5a0f3691823c3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<core::result::Result<usize,ssr_modes_axum::app::PostError>,reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::update_if_necessary::{{closure}}>::{{closure}}>::hf9e5f06fae48f657 + 533 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::hc6d2183b8844a56a + 432 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hb8b22865dc4a36a9 + 281 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::hf52a03c37d4e3a4c + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h0a6d916f1641a3ec + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::he269b5f400ceaa52 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::ha15c31deb9bb621d + 546 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::hee8fdfc3a2b94a0b + 287 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h844b831e2bc727f1 + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::habfefecddc992962 + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::hddaeb8d8818e3f82 + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h423aa5be7c1a951d + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::h1003016e1dc0361a + 8129 ┊ 0.17% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::hede5812f5a454937 + 4257 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h03db1cf0448b3f09 + 2578 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hc7c88550753ae714 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5070af492ed5044e + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h600300c7fe8ff402 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2c42a06a8135bcb9 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h974a70a8b8959a03 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h5b693401b9962591 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4852b0ee0dda9101 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(),reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<()>>>::update_if_necessary::{{closure}}>::{{closure}}>::hb3443c6e8fb412eb + 527 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h8b54a5491826f77c + 428 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h29ccadb478dfc65f + 279 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::h87764b5aab1fc076 + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h9efa279ecab63f75 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h006b0bd1d94190f3 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h8366465fa0627b84 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h3a53c415570fd40a + 286 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::hd274626e65f8d7ee + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::haeb4566a03ce2bbd + 103 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hd3810681026ff230 + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::hb9d7ea1aad1958a5 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::ha3cf08020a4bcacc + 7919 ┊ 0.16% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for alloc::vec::Vec<T>>::build::hb9a99ee365af185b + 7656 ┊ 0.16% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h6aed6f54113709c0 + 7644 ┊ 0.16% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h49a9d8f3a0e226ee + 7526 ┊ 0.15% ┊ ⤷ alloc::vec::in_place_collect::<impl alloc::vec::spec_from_iter::SpecFromIter<T,I> for alloc::vec::Vec<T>>::from_iter::hd1127a9333cad57d + 3537 ┊ 0.07% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::hfa46ce5acb01eac0 + 2917 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::hbfa20818d43e5c91 + 2862 ┊ 0.06% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h9226e9f032f79307 + 2230 ┊ 0.05% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hea98002af1753f55 + 2130 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h03555168d71d459a + 1957 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h7903f3b49a85f6ce + 733 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h711a4ddb8aa67652 + 266 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hda6c5890e75999bb + 168 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h60e5174d3a5eb543 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,(),<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build,core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::{{closure}}>::{{closure}}>::h6bdf81c894794d10 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::{{closure}}>::ha07514fe61f94a00 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::haae4f2a92e05fdc3 + 55 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::he56ea5d178878216 + 2403 ┊ 0.05% ┊ ⤷ <I as alloc::vec::in_place_collect::SpecInPlaceCollect<T,I>>::collect_in_place::hfdb0d8c410fe6517 + 2033 ┊ 0.04% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::h76b86c1183750067 + 1863 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h0b873af32ef7a377 + 569 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h571eaf761f5dbb83 + 390 ┊ 0.01% ┊ ⤷ core::ops::function::FnMut::call_mut::h81478eb1c278b767 + 57 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::adapters::SourceIter>::as_inner::h80be3180fac6d463 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::h7d3f5a3a804f19e3 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::he8e1f56bf1cacef2 + 69 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h2e2577c182509de0 + 7820 ┊ 0.16% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::build::h5db6d18ab8465055 + 7291 ┊ 0.15% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::build::h99c1b9c927c55832 + 6486 ┊ 0.13% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::hb42c8ac5e2fe7110 + 6045 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h66e9944bf7226ad4 + 5932 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hcb85da5fcb8cc8c2 + 3339 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h8ca05db2b87be529 + 1308 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hcfa4d2e54a06db3d + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h872ce44d89d8391b + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h0c36c8e96ea37f38 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h354feb15bfb4206a + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h39129bd3735e1206 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h10224fdecc94db21 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6d7b9fa56c3edc45 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::had0243bfe3f533d9 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7f4f2f49339b4cad + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h3a5442a01b542706 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h226808038e11c920 + 7779 ┊ 0.16% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::{{closure}}::h5a618aa4b4708852 + 7567 ┊ 0.15% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::complete_navigation::hafb45d0ccb5319f9 + 4053 ┊ 0.08% ┊ ⤷ routing::location::history::BrowserUrl::scroll_to_el::h97a0b0de908c0c99 + 662 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeFrom<usize>>>::index::hf6daef3d00534065 + 313 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::get::h8cc9083b6839d96f + 392 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h8bdce44ebf43dd2f + 219 ┊ 0.00% ┊ ⤷ routing::location::history::BrowserUrl::scroll_to_el::{{closure}}::h48c3c61e3efca4b9 + 84 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::as_string::h70a8168c4309d000 + 31 ┊ 0.00% ┊ ⤷ <js_sys::JsString as core::ops::deref::Deref>::deref::h616e94f4cbef2d63 + 310 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Document::Document::get_element_by_id::h7b99c5b5af2226fd + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_getElementById_c369ff43f0db99cf + 305 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or::hc19387665230325a + 281 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Window::Window::scroll_to_with_x_and_y::hddab52651e5dd0df + 47 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::split::ha06f746eda93ff87 + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_scrollTo_4d970c5e1c4b340b + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for f64>::into_abi::hb499bbce556f5d6d + 6 ┊ 0.00% ┊ ⤷ type[53]: (i32, f64, f64) -> nil + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::hecb9842124469359 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<js_sys::JsString,wasm_bindgen::JsValue>>::h371c4519db6a2688 + 140 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<alloc::string::String,wasm_bindgen::JsValue>>::h1fba9bf0c0bc0896 + 124 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::Element::scroll_into_view::h875147bea8f18228 + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_scrollIntoView_0c1a31f3d0dce6ae + 793 ┊ 0.02% ┊ ⤷ routing::location::State::to_js_value::h7fe257a2b28496d7 + 264 ┊ 0.01% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::clone::Clone>::clone::hcc3325b875f0dccf + 77 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::h3646731fbf60be34 + 75 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::deref::Deref>::deref::h69f03d74fd1f86f1 + 250 ┊ 0.01% ┊ ⤷ send_wrapper::SendWrapper<T>::take::hbb4fa15527b9b90f + 45 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::take::h860a87977a64e67c + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::hccb382ff72283bee + 592 ┊ 0.01% ┊ ⤷ web_sys::features::gen_History::History::replace_state_with_url::heb2a7290427b1033 + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_replaceState_ec9431bea5108a50 + 589 ┊ 0.01% ┊ ⤷ web_sys::features::gen_History::History::push_state_with_url::ha311c7cd840bb16b + 39 ┊ 0.00% ┊ ⤷ import wbg::__wbg_pushState_b8e8d346f8bb33fd + 525 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Window::Window::history::h75245e8ef6d61951 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h7353b2778da4bc4b + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_History::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_History::History>::from_abi::h161264bfd16da8ce + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_history_bc4057de66a2015f + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::he38104df4bb4a444 + 131 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h4cc2c17c22776bfa + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_History::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_History::History>::into_abi::h8198b8697e150253 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_History::History>::h5ddc97f835248be4 + 7693 ┊ 0.16% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::{{closure}}::h70fc3312bec01d64 + 5933 ┊ 0.12% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}::h9db7e64201e2add5 + 4482 ┊ 0.09% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::write::{{closure}}::h7334451a5105965a + 3144 ┊ 0.06% ┊ ⤷ <futures_util::sink::send::Send<Si,Item> as core::future::future::Future>::poll::hf8b10f067573f2bf + 1740 ┊ 0.04% ┊ ⤷ <futures_util::sink::feed::Feed<Si,Item> as core::future::future::Future>::poll::h7d6d43801ff489d5 + 347 ┊ 0.01% ┊ ⤷ <&mut S as futures_sink::Sink<Item>>::poll_ready::h8e2e7d47f8e11889 + 197 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as futures_sink::Sink<Item>>::poll_ready::h93ac07a891353e84 + 347 ┊ 0.01% ┊ ⤷ <&mut S as futures_sink::Sink<Item>>::start_send::hb0a6564104d65a5a + 197 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as futures_sink::Sink<Item>>::start_send::h73f25b62a3289aff + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h160ade9165758eed + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h838a6cccfb2914bf + 197 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as futures_sink::Sink<Item>>::poll_flush::hc0762a8a52abd377 + 124 ┊ 0.00% ┊ ⤷ <core::task::poll::Poll<core::result::Result<T,F>> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h86ec0392f34fb105 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::h926238f25497b655 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h9db367e1e470d5c6 + 68 ┊ 0.00% ┊ ⤷ futures_util::sink::feed::Feed<Si,Item>::is_item_pending::hb5131191c998f5d3 + 59 ┊ 0.00% ┊ ⤷ futures_util::sink::feed::Feed<Si,Item>::sink_pin_mut::h53a00d9ff8b778d1 + 384 ┊ 0.01% ┊ ⤷ futures_util::sink::SinkExt::send::h0bf5487f8c4d61ec + 228 ┊ 0.00% ┊ ⤷ futures_util::sink::send::Send<Si,Item>::new::h5f95ddb836163ba0 + 89 ┊ 0.00% ┊ ⤷ futures_util::sink::feed::Feed<Si,Item>::new::h8584d7c01d7d2b58 + 55 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h9724601227345cd2 + 55 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h57970ca0a26e4890 + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hde7672c93bb5950a + 48 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}::{{closure}}::h647bc8a7b21b08ae + 119 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h9f14e13188899319 + 61 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::write::h0ff1738485c3cdb6 + 184 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h0d8abd0c78c74dd1 + 7571 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h990662994e1ba495 + 4965 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hbc92803f01005c2d + 3282 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::hde469f4805033d54 + 1251 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h9c2d8cb09cb02a26 + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hedfe40037117d7ca + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hefc3b9899d6067fc + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7f081be6c9822d8d + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h5c7d459f642172a6 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf6b12b97c17c09fc + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7a221ee19ebe6227 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hde04f31156feb866 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h60b7edf6cbab048a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h4071de574c0b2d75 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h5f3d16061dab0382 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h25033f5bbab7be8b + 7567 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h103de19566b80360 + 4965 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h14bf6640d3e95cae + 3282 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h2902134776cbdee1 + 1251 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hb88a20a39d3de778 + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hc5c5eae46f698481 + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h4cafc996c7087437 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h2eaa865b01ca8b66 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hbd7939cbd06809dc + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0f3c537acca1ca9a + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h20a2936c718eacd9 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3916364c48fdaaae + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8d7e7470b241b69a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::hab4c100594b5b0ff + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hfb0b21abd8dea479 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h2f9a5be0cce33f75 + 7567 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h48c8fefbcc6993a2 + 4965 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h8185de5e8cd4ed19 + 3282 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::he4e07ead09a69c8c + 1251 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h12ce1a897c3b18f9 + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h758cdd8ea8492882 + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h24d19a205cfe3e8f + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hb5cb52d4fc5adad8 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd0bcc60ab888b8a1 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hfaafe5d9bc4677f1 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hecf2075e9b83629a + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3aad9271b0daeea5 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0ae925582d32d783 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h230b75d5f01b132c + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hdeb44a8d45402fb6 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h93ea8d0640495de1 + 7567 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hec64a726f6bebc7f + 4965 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h537b179b11ba26bd + 3282 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::hb69427a56f4d2959 + 1251 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h0d48ba0b9ac36652 + 845 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h6765b7ee806a9e60 + 710 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h9d75e0655ed2545d + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h59b54ef7b6ce4862 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h00bbc12058542856 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hd0a7c04f815935d5 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h701ed55428f6b050 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd8fa647c8ad98eba + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hbdc9ed3967836560 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h9228f869c31c33b9 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::he03a96e0e2f484bc + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h0c8fa1ced6924182 + 7501 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hcbbde692c64617d8 + 4936 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h4fddb977f10f1b61 + 3253 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::h628b0f9db35d19bc + 1222 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hadf1098fb617daee + 856 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::he8edd30623698d05 + 721 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hfd696ad6b6f2fa61 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h14f99c819efad0c0 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb829c7576c381101 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hb36744de433a2573 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8fd706715145e435 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hded1b6e6f52dc681 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4b6821aa45839af4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h29bac9cddca1268f + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::ha032cf86b023e54c + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::hd66bd79d6b67f9b2 + 7501 ┊ 0.15% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hf0ace6f6b6788e60 + 4936 ┊ 0.10% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h8e7dec654dbbc18d + 3253 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::hf45a5f0ff07216ec + 1222 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::he0f20d76f4ee21e1 + 856 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h46233ac69b8a8890 + 721 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h852e88bef927e4e4 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::he430ac8c1a096cdb + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h435d94ed5726363b + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4bf643038db8abda + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0cad407ae6848675 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hbc3c48f60a566206 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hbeb8aa34bf641c66 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h4076acdeff1f9e7d + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h2858d684115f1b7a + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::hbf5e1c5d3f6b758c + 7483 ┊ 0.15% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::hfa7075b54e49c77b + 6953 ┊ 0.14% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for alloc::vec::Vec<T>>::hydrate::hecb9d3dfb873c41b + 6587 ┊ 0.13% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h90c61036291dda80 + 6575 ┊ 0.13% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h11c0340448047007 + 6403 ┊ 0.13% ┊ ⤷ alloc::vec::in_place_collect::<impl alloc::vec::spec_from_iter::SpecFromIter<T,I> for alloc::vec::Vec<T>>::from_iter::ha96e08eb2381602b + 2862 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::hc9f1d6bb4c3dba48 + 2183 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h6cb67c4753680161 + 2128 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h71db8ea7c87df2fd + 1453 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::h5e950bde2241ed1a + 1353 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::hea9fef5bc6fc1f62 + 1138 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::haed95630b0351c88 + 624 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h1f0e9ccb27dc78fb + 353 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hff606344aa853430 + 213 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h335c0cb25e7f3465 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,(),tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}},core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::{{closure}}>::{{closure}}>::h2ff5bd754f2e7792 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::{{closure}}>::hd1df74572ce94028 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::{{closure}}>::h00dd27edf4b5b8a8 + 55 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::hded949e437d3abb0 + 1633 ┊ 0.03% ┊ ⤷ <I as alloc::vec::in_place_collect::SpecInPlaceCollect<T,I>>::collect_in_place::ha37da47f85cfb3aa + 1265 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::hc43708d3c293f52b + 1095 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::hec7d6d6a99ad8176 + 371 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h7df39c0d0a2c2748 + 687 ┊ 0.01% ┊ ⤷ tachys::view::iterators::<impl tachys::view::RenderHtml<R> for alloc::vec::Vec<T>>::hydrate::{{closure}}::hcb0164c9b39e4f32 + 614 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h50086cdd4de9057d + 57 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::adapters::SourceIter>::as_inner::h0493fd63c06adae0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,tachys::view::iterators::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hydrate<_>::{{closure}}>>::h68e728012ffcbe07 + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h30e1762e336fae40 + 98 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::he6be85a9f77fefa8 + 7313 ┊ 0.15% ┊ ⤷ reactive_graph::traits::With::with::hfe0a5e55b664bcb8 + 6769 ┊ 0.14% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::hc46a109aa8c5bffa + 4583 ┊ 0.09% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h48cbcdfeaf9eeb39 + 2770 ┊ 0.06% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h6ff90d365b67d077 + 2169 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::hf14bd5a5a0bcc850 + 1286 ┊ 0.03% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h9d6e7c1d9b135a80 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hc228c9f0da778408 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h0bfa45b4bcc659d1 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hc4821845c505d9ee + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h424bcff6434ad3b0 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h61a864bf65dc26db + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h5b911bcb91adf247 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hc8b0ee86072995d0 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h750cb00e3fa6f0df + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h1f8356775108dd42 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>>::h2bd503521736161f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::h9c2609664f217312 + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h9dadadd397bcad9c + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hc8bc4288f64c0791 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::hd3c102c19aa5ea13 + 1146 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h414d39b9ecf02e58 + 833 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::ha7ce00eddd631d13 + 497 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::hf4fd106ca85e7f14 + 440 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::hcaa4c323439b42d4 + 383 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::hb645447696a18935 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h19f9f3fd9d616438 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h8d5f57a912f3bbb7 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hb446494c0fbc100b + 143 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h9cacd7bc78453299 + 68 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::is_empty::hdf98fc7adf6e9a85 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>,reactive_graph::signal::guards::Plain<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::ha767015314f94d36 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::ha583454cd14a6887 + 571 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::hc5f9393770f4e4fe + 262 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::hb29d768110828d79 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::h3ebd3bc3992399c3 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::ha14205d286009b0f + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::hd122e37e5a9abd90 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hfda5f6b697fb1155 + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h290ac5062ea40aa9 + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::he382584d067439ab + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::he13a95a43a26d682 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::hcb9b576bdf9da508 + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h104731f8607c2f1b + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h2a3ef02cf0351f6a + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::h4c74e9bf2818d974 + 419 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::he2a0d2c7679b7434 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h07a2dad039171de7 + 7017 ┊ 0.14% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for alloc::vec::Vec<T>>::rebuild::h03d79b0c21d82e10 + 1471 ┊ 0.03% ┊ ⤷ <itertools::zip_longest::ZipLongest<T,U> as core::iter::traits::iterator::Iterator>::next::hdb380ada991a1c45 + 326 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::ha9ec29551ace7cc2 + 269 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::h3dd15a76ee3737bd + 312 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::h79c8badc756e8370 + 257 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::hebe9293f87e82276 + 485 ┊ 0.01% ┊ ⤷ itertools::Itertools::zip_longest::h752af1d9d92191b8 + 396 ┊ 0.01% ┊ ⤷ itertools::zip_longest::zip_longest::hb2be3bf51841602a + 116 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::h48fd60155386bf13 + 106 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::h9c7a9d2c25bc99b8 + 437 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::hc4857ae6a97bdfa4 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h8cccdfc0521b631e + 329 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::append::hfc0e05db574ffa4f + 268 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::haf88d09c2cd9caa1 + 240 ┊ 0.00% ┊ ⤷ tachys::renderer::Renderer::mount_before::h0f5997628b92cf30 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::h475bfbea1e5a3246 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hfdef2a799a6b817f + 191 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<itertools::zip_longest::ZipLongest<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,core::slice::iter::IterMut<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h1510d296d51a270d + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::fuse::Fuse<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>>::h9a1a67e2de2229ad + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>>::h97ff331704a4dbb9 + 186 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::clear::hfdb5babf425c5a9f + 160 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h7977c80dcddf0d08 + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hbc991803b329382c + 68 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::is_empty::h321b6dcfc00ba9cc + 68 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::is_empty::h9f41ae756e1437d3 + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::h3b420bb5023e5cfb + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h24a00529edfa8d0b + 6883 ┊ 0.14% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::parse_str::h3dc77b6ba66f201f + 6802 ┊ 0.14% ┊ ⤷ serde_json::read::SliceRead::parse_str_bytes::hacda27c11ec904db + 3448 ┊ 0.07% ┊ ⤷ serde_json::read::parse_escape::h3971ed21a95ed41c + 272 ┊ 0.01% ┊ ⤷ serde_json::read::peek_or_eof::hcaa4cb2ea0197534 + 253 ┊ 0.01% ┊ ⤷ core::char::from_u32::hc951fd90e951ccd9 + 188 ┊ 0.00% ┊ ⤷ serde_json::read::parse_escape::encode_surrogate::hbef06a58fe919d9f + 150 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hccbc810d7741a278 + 115 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::encode_utf8::h9d7dd4e49f1371f0 + 436 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h3f1278d8a0c971bc + 139 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6cc603b218c4fc87 + 61 ┊ 0.00% ┊ ⤷ serde_json::read::Reference::Copied::h68b72ef483904807 + 436 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::ha169f7bff4482241 + 139 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h786af99951151e68 + 61 ┊ 0.00% ┊ ⤷ serde_json::read::Reference::Borrowed::hd0fa8fb4390b5418 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::hd6142b21a6e4195b + 123 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::hc6d1711e18c22ac0 + 123 ┊ 0.00% ┊ ⤷ serde_json::read::error::hc8922a0b3ab214b9 + 110 ┊ 0.00% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::parse_str::{{closure}}::h9186e798c2625195 + 68 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::is_empty::h52fbabee9d6a816b + 6825 ┊ 0.14% ┊ ⤷ reactive_graph::traits::Get::get::h3158a85ee92769ac + 6283 ┊ 0.13% ┊ ⤷ <T as reactive_graph::traits::Get>::try_get::h45ab0df687257b03 + 6217 ┊ 0.13% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h2c27512fd923eb75 + 4693 ┊ 0.10% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h1dec57017be04dda + 3070 ┊ 0.06% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h4fd9f220ae540ba6 + 2046 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<T>,U>::try_new::h684dfa848f483070 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::ha36f03c0283a23a3 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h676221e9153fdf8d + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h5659b31847cc3c27 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::hae283161b810e4eb + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hff662ca772961c90 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::hcba84f5fee308dbb + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h69c63963fbd3eb71 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<bool>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<bool>>>>>::h96379c30c93aa358 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<bool>>>>::h1593ccb51af1775d + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hd67b6b400d418c73 + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h4eeb4da9d291af0d + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h81738fb20ef0cc8f + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h77b787cd1d55f3f2 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::hd0f64d057511c222 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hcb41750634d54992 + 86 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::hc2ac1699a306b5de + 1133 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h65c81590ffe1b351 + 820 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h668cdf30ed3bf8d5 + 511 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h4c045b5098179d5a + 454 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Mapped<Inner,U> as core::ops::deref::Deref>::deref::h3096ff6ccf7a379e + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::haadb4c4c07ce5fcf + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h0829bf39467d231b + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::haf889adc9c5723f6 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h2bce42ae2c31ed57 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<bool,reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<bool>>,bool>>>::hd72dacdf287a8177 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<bool>>,bool>>::hff9186508842826b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<bool>>>::h84a14a0594f17b77 + 63 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h22671e12ef08dde0 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<bool>>>::h112b19424a9c3184 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h709d41f6b384a1d6 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hf0f67967e9e5c344 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<bool>>>>::hb6a3bbfdffeac278 + 1388 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h55e671240e2474d0 + 814 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h5941c61bdba91c02 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::hd6490a53906f7f1e + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::hd6f7304d71d51443 + 73 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::Source>::add_subscriber::h421f04fdf3ff8b1b + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h41c1a1e44a6a1cfa + 419 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hf1d875a3c6c0228e + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Get::get::{{closure}}::h07d65a89220477fc + 6615 ┊ 0.13% ┊ ⤷ routing::hooks::use_params::{{closure}}::h724076ed3431d331 + 6544 ┊ 0.13% ┊ ⤷ reactive_graph::traits::With::with::h63467220b23ec966 + 5989 ┊ 0.12% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::hc5092f2b2ed3fa80 + 3805 ┊ 0.08% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h882c438ebfed230c + 3623 ┊ 0.07% ┊ ⤷ core::option::Option<T>::map::hb89a8818150879e6 + 3261 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::he8029fe639b74ebd + 3187 ┊ 0.06% ┊ ⤷ core::ops::function::FnOnce::call_once::h97f2f323774096ef + 3125 ┊ 0.06% ┊ ⤷ <ssr_modes_axum::app::PostParams as routing::params::Params>::from_map::h94edd315d0239c7e + 924 ┊ 0.02% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::find_map::hd6c4d8080bcc337c + 544 ┊ 0.01% ┊ ⤷ routing::params::ParamsMap::get::{{closure}}::ha092c1ef3c9d7463 + 365 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h252085148825e5ee + 265 ┊ 0.01% ┊ ⤷ alloc::string::<impl core::cmp::PartialEq<str> for alloc::borrow::Cow<str>>::eq::hbfd3b3bc04749886 + 773 ┊ 0.02% ┊ ⤷ <core::option::Option<T> as routing::params::IntoParam>::into_param::hba9680d847581b97 + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hed45fb756937b48b + 334 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h8224d41c2b700c6f + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h0f579c231c465509 + 185 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h10c7a030016c8b1f + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h980a7bc8a6fd73fc + 88 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_read::ArcReadSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h158403eb6313448d + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h15fcdbe6d7737e1f + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::h8ae78f1be18a3810 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h20497d1d694d43d0 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h214f4c48b849b0a5 + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h50c0292794bc4214 + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h98d3024da52f9b60 + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::hd9d61689ff272eb2 + 435 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h467642657c3d554b + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h9fa1ff5cbbf49cf3 + 6585 ┊ 0.13% ┊ ⤷ reactive_graph::traits::Set::set::hda66bac8fff9d760 + 6283 ┊ 0.13% ┊ ⤷ reactive_graph::traits::Update::update::hdeab02b46bc51a08 + 6227 ┊ 0.13% ┊ ⤷ reactive_graph::traits::Update::try_update::h2b3645faedf86728 + 5910 ┊ 0.12% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::hdb288ecd3c67d50c + 4710 ┊ 0.10% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::h44d727a7002f524a + 1673 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write_untracked::h8df4630c6477774f + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h031048c4946ed801 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h351938cfe59fea93 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h77b309fdc9bc5da4 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hc2e43137c1b3fa73 + 554 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hd2f01f05a56eff11 + 225 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hff830b7c5a2ae90d + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::convert::From<std::sync::rwlock::RwLockWriteGuard<T>>>::from::hbe2026b613fa5dbb + 336 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::ha0b6cc54853de94b + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<std::sync::rwlock::RwLockWriteGuard<routing::location::Url>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<routing::location::Url>>>>::h17dc3536bf5c4f8a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<routing::location::Url>>>::h8aacb1dfbdde5b98 + 1416 ┊ 0.03% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::h68ef31f3376a8072 + 981 ┊ 0.02% ┊ ⤷ reactive_graph::traits::Set::set::{{closure}}::h9e65838d9b5cd69e + 248 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::h100309aec770e5f1 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<routing::location::Url>>::hb5b8a6d765b6fb5f + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h575dfad692387f17 + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hd0310c0c67276437 + 124 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hab5efbfb4fec4729 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h64a60a2da113b947 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<reactive_graph::signal::arc_rw::ArcRwSignal<routing::location::Url> as reactive_graph::traits::Update>::try_update<(),<reactive_graph::signal::arc_rw::ArcRwSignal<routing::location::Url> as reactive_graph::traits::Set>::set<routing::location::Url>::{{closure}}>::{{closure}}>::h1174d3db9c669e89 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<reactive_graph::signal::arc_rw::ArcRwSignal<routing::location::Url> as reactive_graph::traits::Set>::set<routing::location::Url>::{{closure}}>::h6df22163f12501e2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::UntrackedWriteGuard<routing::location::Url>>::hb5088314be53f801 + 921 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Trigger>::trigger::h58e70070c76bb5a4 + 868 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_dirty::h0183430f274a56ba + 815 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_subscribers_check::h72d85669e0a55a19 + 6505 ┊ 0.13% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h6a0b926f22d848a4 + 4507 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h27e1a2cda490118f + 2824 ┊ 0.06% ┊ ⤷ reactive_graph::owner::Owner::with::h44ab867feac7c871 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hed1593be1391cf42 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::he30a643971f0d728 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h2bb888c48ff1f372 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::ha4abd541ad2b54ec + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h5169d4862aaefbd1 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7de61df4714275da + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h71af6d798b291f74 + 793 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hae453ff687b875a9 + 573 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h90ff63b9fd44f040 + 438 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h2aa6cb9c8fbb2ed5 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h1c4a5c7767f5b053 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h76bd9de61062d34d + 6499 ┊ 0.13% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h3c10b7cde7da6153 + 4507 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h03052190aaf40cf0 + 2824 ┊ 0.06% ┊ ⤷ reactive_graph::owner::Owner::with::hd90ca682c7bd9ead + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h38eaa176092247d8 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h66111baab980828d + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8ab3c85ca0a8f7d7 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h9fded616996d9bce + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h33fda0e7d0e05d37 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::haab7d3978702c208 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h34e67c17e7315ce3 + 793 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hbba63646c3aa8ff0 + 573 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::ha3ec2cbe5cedcf90 + 438 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h2ff1fa8cf4ef0044 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h1a3bdfc9179033cc + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h36e57d908575116d + 6449 ┊ 0.13% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::hebc8541c2d128a4c + 6164 ┊ 0.13% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::h33cc3c8b352b3c5c + 5841 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hf4be02ebb6de1b2a + 5728 ┊ 0.12% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h1ec101b8bb23d91e + 3277 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::with::hd5ee1af293dca816 + 1246 ┊ 0.03% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hf86bb3ce3daf44aa + 856 ┊ 0.02% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h8b1b073ec14de40f + 721 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hd3febc317633486e + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hdad476414f60ffb8 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hde85ec03b511d88d + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h44baeb7d2efaf2db + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h1e0b7a51c1ffa622 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h88425659789d1b21 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hcfb474c5ca102693 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h71b9f4beb41b15af + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hc79a81914b3cb980 + 6315 ┊ 0.13% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::errors::haf7a9884e84d4d54 + 5698 ┊ 0.12% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h8f50222068518973 + 5686 ┊ 0.12% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h4b2887a7c27f7a81 + 5546 ┊ 0.11% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::hebfc21e5414fd886 + 5534 ┊ 0.11% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h88c4c641fff4787a + 2333 ┊ 0.05% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h4d226c2899b61119 + 2278 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h7d1e403c72c2c363 + 1698 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::hfd606cdfee889511 + 1512 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hf0994a346ad2f832 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h6cacefa1cd18adf1 + 1022 ┊ 0.02% ┊ ⤷ <core::iter::adapters::filter_map::FilterMap<I,F> as core::iter::traits::iterator::Iterator>::next::hcb07a3de59596270 + 954 ┊ 0.02% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::find_map::h9aa738b0286f234a + 530 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut::he60f3d5d81b54885 + 452 ┊ 0.01% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::errors::{{closure}}::ha3b049fe984b7494 + 169 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hd5aa17db69539f1b + 78 ┊ 0.00% ┊ ⤷ <hydration_context::SerializedDataId as core::cmp::PartialEq>::eq::h638dbda67284bcab + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h3704ee99f71c9b00 + 466 ┊ 0.01% ┊ ⤷ <core::iter::adapters::filter_map::FilterMap<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h474153921b4405a6 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::size_hint::hbe65c2cec2112c81 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::ha4e4a71220aba597 + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::hde6af92ac0ff2f88 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h5650a1bfc151c089 + 64 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::filter_map::hbfe5e581e3afe99d + 6063 ┊ 0.12% ┊ ⤷ core::ops::function::FnOnce::call_once::h5563d55f9e963533 + 5936 ┊ 0.12% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h786b6d8a61d88780 + 5399 ┊ 0.11% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::hb1889792bb49c913 + 5149 ┊ 0.10% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h855eab8391dad917 + 5049 ┊ 0.10% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hb5e22fc8a67b0f9e + 2938 ┊ 0.06% ┊ ⤷ reactive_graph::owner::Owner::with::haff69cdd630dac5f + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hed6f1242e2ac8d61 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9b4cf9e4cfa602a2 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h646fc5eb7ca5e9d7 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7ddc1b6ee097e7f3 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hcbadc12a76e4f13b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hdd6d58a627a50c56 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h11f5d701bc097623 + 907 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hbf95a704e1c319e0 + 573 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h78833b490cd7cd07 + 438 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::he80c0b98f4b122d3 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h9be777cbc5420326 + 6058 ┊ 0.12% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::h7b51370b5f4a0eb3 + 5958 ┊ 0.12% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h00499239456d24ca + 4394 ┊ 0.09% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::build::hcd1ee613d86c8ea3 + 4227 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::hffaab4f677b9255e + 4046 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h6981cd91f98c2c31 + 3950 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h168b066b5801d077 + 2477 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h713e80cac922488a + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h009f41c57a46cde4 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0513b308a7eb41dd + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h7e59b4150f0daa8c + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h2d2bd9036c4fa7d1 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd27e9138b8cd3ddd + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h46d73f35596bb9f4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::hafbd7d30d5665263 + 415 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hd6eb68d97c5eab50 + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h5cf27c25f5f797ce + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::ha7ff1ea49be9aa2f + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hb819d37092925e82 + 1290 ┊ 0.03% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::he57ba89e9d8026d4 + 1149 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::h3ef1a9b130729449 + 1034 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::hd9af67aef52a4c9a + 717 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hca8683bc8d75f5f5 + 491 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h1f06f802fb44d107 + 399 ┊ 0.01% ┊ ⤷ <leptos::suspense_component::SuspendState<T,Rndr> as tachys::view::Mountable<Rndr>>::mount::h5f0ca1c954ed627e + 195 ┊ 0.00% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::mount::hf92a192c90ef718b + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h999fed7666d034b6 + 6040 ┊ 0.12% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for alloc::vec::Vec<T>>::build::h1d1227db2b177add + 5777 ┊ 0.12% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hde81204c65f14d60 + 5765 ┊ 0.12% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h3c75f5155e23b7f5 + 5647 ┊ 0.11% ┊ ⤷ alloc::vec::in_place_collect::<impl alloc::vec::spec_from_iter::SpecFromIter<T,I> for alloc::vec::Vec<T>>::from_iter::hc9acdc08c682dcdf + 2718 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h5a3fa65ebd2dcc69 + 2098 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h3feda3ebdd816e00 + 2043 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h1e3b691acd274f99 + 1411 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::h1db3560f4ef40ba9 + 1311 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::hafa6521f86715322 + 1138 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::ha1b919d268cf5c05 + 624 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h89649b35e111c894 + 353 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hca574ad64fda0b14 + 213 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::haa34698920e8c388 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,(),<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build,core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::{{closure}}>::{{closure}}>::h365068621f3b560c + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::{{closure}}>::hc8fc363436b4bbae + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::extend_trusted<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::{{closure}}>::h093840319b1aa90e + 55 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h17f49d539b84e667 + 1633 ┊ 0.03% ┊ ⤷ <I as alloc::vec::in_place_collect::SpecInPlaceCollect<T,I>>::collect_in_place::h60ae38b49925a608 + 1265 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::h6ddf2ccb87e1693c + 1095 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h049ba35cb4a07012 + 371 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h3ee418b81359e8fa + 107 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h4715a7c74efe7158 + 57 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::adapters::SourceIter>::as_inner::hbc3b1ec9f9d82ef8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>,<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::build>>::hada2ae93b1ce325b + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::he4711ae90161eaa8 + 69 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h9527575ad2000b8f + 5864 ┊ 0.12% ┊ ⤷ core::ops::function::FnOnce::call_once::he2c259116ba81ef4 + 5769 ┊ 0.12% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::he1f86541d7dc4896 + 5263 ┊ 0.11% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::hae4b908858b2aba5 + 5082 ┊ 0.10% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h1b8b8fb3e0cea8f6 + 4982 ┊ 0.10% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hd04b1fce54c28a09 + 2938 ┊ 0.06% ┊ ⤷ reactive_graph::owner::Owner::with::h50adc4569759674c + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h777ce134503bbb2e + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd9ff282b526584f4 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8d409cb5eb55edda + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h25bcb3ddaf29c1dd + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h06a15c0c6253de87 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h13c30360f044d89a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h55212faf7d1e9917 + 907 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h321fceb22f9ed2fa + 573 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h3da93a01455c4bec + 438 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h17952b8810b63893 + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h24c151321eb1bb1e + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h072d70ef8005228a + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hcb2e732ae4bd58ae + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h0d608ab879c0deb3 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4aa7e229ebeea0d6 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h5718fff63c580ab1 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hbb4f68e4eb94139e + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hedbb28920ec07196 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h88b77b02bb61422d + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h769355c31e90fdbd + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::hbb73e049fdf53dc0 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hfe39e2a97077757f + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h38935d8af348ba1d + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hb21576abb7063493 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hfc757f3d7dfd2740 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h0798e93576e256bc + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h11fc57bd01ba89ce + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h47800886c0d2243a + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h08c7aaeda1fec2df + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h860282805349f5c2 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h80bbda2cadc220c7 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h74dd945e8835dd53 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8c60873c0ea0da2b + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3709e74e3f132183 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::haf1ee83925bd19f9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h9740054fe16f0d72 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h0054f9caa96c241e + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h255715ed2bcac323 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h6f08cca945a2ca51 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h53754a205d8cb72f + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h7ac0ba3c60347c68 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h147b50eef4fd0b86 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h043f778d5f47a03d + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h9ae49ea2f34b01e1 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h723f6a4d7dc86246 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h75d14691d797935e + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hee37b978af9bb837 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h21858dd602f2e471 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb0152bed965f9531 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0ceb48e5bce81e65 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::hac52071a77725d6a + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h0533ab41ab8ab8bb + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h659c9e8c270b37f5 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::ha67dfee2a8116419 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h0800f83e7fe12b4b + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h1ed7a8f4793b1925 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h1ca270e5dbf7321c + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hd94cbc8736bfaea8 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hf50e4e6b68d0ac2c + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h3ad6691c2d7654e3 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd38e04ca449804c9 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hbcd93ca47216d241 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::haff6d27bcafd9221 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hed9bfa207247f1f9 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h167ff55ef8c11716 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h71480486b38d2b8a + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h3da45d7abed8f9e4 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h81c8b0f852a2b939 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::haafceb4d876e77f6 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h389c6ba65223dbee + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h7e53ce3615c71f8b + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h1f2a1a1a1e90ee9b + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hd3f3ba7f252b621e + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hae6af9694c3f47e8 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h64cbadc3fac30caf + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hdd8b72ba8dc7cc8b + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc7ea66adb874f8ba + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hee5eac23765c6584 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb04bb9ce1252be77 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h72fbfdb7a4da9a50 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h830da2a24f60aeb8 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h479f2cc128fd9424 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hc362f8e9e023d47c + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h23a1ca88fa7c33be + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h95ff090083d3e0ae + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h21b1d7f38f15e406 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h253e67bb41235405 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h6a6f03cfa98fb839 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hdf23c2821abbe5be + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h123e923ed0bded40 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::he3cfcefb94173ded + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1f05be798b420524 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h42ead1a7564da3ed + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hcaaa079b13ad1546 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hbc389a10b1b65c8c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h1b1b282ed1d8e5f4 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h1c6ca350dc9a449c + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hdd6d9e0244f36601 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hfe78f54d6c783ab7 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hfc9f82dee90f19ff + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h5ab940018a96cc2e + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h401a4584e5df2c3c + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h5ce1212a4e4d4e4c + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hd86325d03e5c3d17 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h74bc54b0f50838d7 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h6e430c6c573e62f4 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1c50ccf95aeae27d + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h83f896dca300a78e + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha20dee4314946da9 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h6794235412e8e053 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h5802e09725f1c916 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h7af1e5a175f29b30 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h5dad26edc5005400 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h1b9553bd36943651 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h90a8cbe6ca37347b + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h2d1578e8f216f648 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h5b94204588e37237 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h4a8806e8414b0b87 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h89606d1455ada445 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8d03bc2dc27b3a5e + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hfd5b94292c31b874 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hb9a085cbe3cfbf1f + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h94496881c94467d8 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h75fff5cc73bbf50b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h65ceb5394359ea56 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h4c33cf3e390ec98b + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h7f031efadde1cbaa + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hf700fd61f19c26c1 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hfe9c5f613434e4ef + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h4319b413b8bffb5d + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h5d98fbcb491e5cb9 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h6f1c7d6a12b74bd6 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h3379cc5787e14a9d + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hbc3c20c1bb9f2c36 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8a71518fc9302399 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h593c2dd1439b11a0 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h277bb8413cea0e36 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h891b9335118d6d21 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hbff9b7a7a6fba5a2 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hdbf4367e3c099918 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h5260f1998f7b9ee3 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h7fcef2f8a4408b77 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::ha287ef2a88d39fbd + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h5eaa1280b8072c3a + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h68a82dd0cfdaf9d4 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h7a42535b2c7c75c3 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h9e23dc19f3df506b + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h4be0502d1d7be8fc + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h15efa242712997eb + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h3dae31f21f2a9a29 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc31841caf1bc61ab + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::heee139c5b591552b + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h226c9606747f50f8 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd226ec8454599f6e + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hea211d58f5179e58 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::ha2b1a8884a3c899c + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h265f55951a8fd305 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h44a2aa382db0ca07 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::heb43d2876279bba6 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h37651e2dc945ddba + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h107883875377938b + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hb70f2fcd4659c638 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h25b7f89007afd66e + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h59a9ced09d2aea12 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hb33f874ebd83c2e8 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4cb1577a0e0e9a61 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h396d6cbf747e8122 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd36d9778edaef66d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h643ef908a72b7931 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hda8111534fda3a14 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h4c51434bf32cee9d + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h2506ec5d395626a7 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h170916deea7b2e7f + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h2abf4aa9ef9f7507 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h384ed89cc8b256c3 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::hf0fe75614028e9cd + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hc689d34e8bb5f8ab + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hd1413cbafd632069 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h7ae8403fe944c3fa + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h0f3d6feb3c96bbba + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h056664d0855bf029 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h5ebe910dc3a245c1 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h865704949ccf49aa + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hf9f9537794ab4bc4 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc56766e6f39a5fce + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h18bdc1854017c68c + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h2175ff0dda4d6e6e + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h24c2e74fa5f2cbac + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hb972b0851c818c28 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h908245c8b75c9626 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h1f40dabae9bcc14c + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hd8606b669b3164ac + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hcbe768f573307249 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h07c7ac8bb47b0dd7 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5fb5a91b5c0a31bb + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb6dbe37492ebac06 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf62f18dd34aa1c06 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hec844102d69c65b3 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h643cbdd8d4b7d05b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hfe19a95bc04d3ee1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h82618ab6531f6ac1 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h0815c5dd954199e5 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h7c5dbd02f8d2da5a + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h7881fbe3a36d978f + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h5cc9ecb828fab4a2 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h088007d6b1631386 + 5572 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::he09ba7b0887fd9d5 + 4173 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h9c9250186d461721 + 2490 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h05f30defab1b05c5 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7e4ddf2fa1f73328 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h6466b972dbbeb9e5 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha776de3a8feb4403 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd6eab4f0cd7c6877 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0ba7892590cf76df + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0f0a75029be33138 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h4ef7d97cd80eb937 + 459 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h676d9ae0760ac067 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hda1fa1f0cc8db314 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hf3eb4182b8fd9c4a + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h573dc4500d94530c + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::he92871c4f5bb5fbb + 5564 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h6cb027ec01733759 + 4150 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h291f27bfff80d687 + 2467 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h69648409dfd46343 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6a55a441931da55d + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::haba109e218165631 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hd98e804635112037 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h512a64e649b43b60 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h60ac7c2f704f7aa4 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha15161887d5f7f85 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<oco::Oco<str>,reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h3e4aebae059e70ec + 436 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h03e2b7ac1c5f3b61 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h3da3b195873e249d + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h24870f55fdfade9c + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hefea16dcd1684f37 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h62ffa8606cd2f4bd + 5564 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h02c452765a2ab095 + 4150 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h49ccf1850e5a1290 + 2467 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h38ce2fb8a7b4f674 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h168554a25a697096 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h47291b1e06cfa3c7 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h477da7165ef266ed + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h15333db429439ded + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3fbd613e42ba71da + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h59685c3dd37baeb1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<oco::Oco<str>,reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h91b63dd5f96f394d + 436 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h86e228ea190bb091 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h765e37e5fdac52e9 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::ha5ff5689c2344cf4 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hee237a8040228707 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h1bee1349652d2ccc + 5498 ┊ 0.11% ┊ ⤷ core::ops::function::FnOnce::call_once::h80bfcf0eabbdae18 + 5333 ┊ 0.11% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h1a513f06a1b2dfd2 + 4372 ┊ 0.09% ┊ ⤷ tachys::view::either::<impl tachys::view::Render<Rndr> for either_of::EitherOf3<A,B,C>>::rebuild::h34f0f592c006ea64 + 631 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::rebuild::h897e2f2f52991ef6 + 115 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::h30261cfdb17aa866 + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::rebuild::hc845adf11dd003da + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h702bc7caa2e75250 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::hc816a4ccbde9520b + 318 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::rebuild::h8baceaa81ab57167 + 115 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::hf2fdb66d4a70dd1b + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::rebuild::hc5b56d4a090c0264 + 5470 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h502369123b62acee + 4058 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::hb4a3b721044c0291 + 2375 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h84b5bdbd973904ab + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd8516982760cbf14 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h743b651baa0dc706 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h124656005e042688 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc0d9b887013f7fe9 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7809cfd2f36ae74a + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h489d429bf92ebce1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h9655eafe5af7c2a8 + 344 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h979f0ce09cfd47f4 + 252 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h1ac3ce0cb039df3e + 117 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hd2895ce8b984f565 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hc5ec82be775eb235 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h94eb621157abeff8 + 111 ┊ 0.00% ┊ ⤷ core::mem::take::h1417141144a422bf + 22 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h6a26cf784b7fb5f4 + 5264 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::ha829e7f820b23fe5 + 4104 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h4eff8b430754f6f3 + 2419 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hefe8c719e61164f0 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6c8e92fc2f67af30 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::haacf69b6e68cec24 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hd773ec4b5877e8d3 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8b1cbb598243f167 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hac7377b054f66e1e + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::ha0239808d3e1d9ff + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::he9a01248c67f6436 + 357 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h056e498e5a2e97e0 + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h2868350a2f099202 + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hdf0f79a7c1b68ee0 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h70b529f85e80e0b0 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h4f3e10acd1561833 + 5264 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hfccad2231c850961 + 4104 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h43563c48da960490 + 2419 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h000b6fdd391ff451 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hea9ecc8e4733a9d6 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h14ef4d762e40d7ea + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h3e5befc4f582205d + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7de4ad40329fdce0 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3f2d30e6aa93073b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0e21532d151dd0bc + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h9054adff04bbf4a8 + 357 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::he56e2ada883c4e2d + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h5cb48fdf3dc274f9 + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hd7d3566b5ff4c525 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h65e1bd0626734b90 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::hc6fa59c9a2968c35 + 5239 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h8b798185e6e12397 + 4104 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h514883cbe86baaa5 + 2419 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hfa8521251bd16b1d + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::haaaee86afab18036 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc23706abaf991435 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hdf7deb80909f1ef8 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hfff40da5028f738d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hdd436bda239363aa + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h28a72d4b8fc15712 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h7ee42544deb5891c + 357 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::he6b690e507544db4 + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hfcc441fdcb7a3b82 + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::hbf2876112e23ca29 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hecf6cb6b93a61526 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h94e246d47ccc0c37 + 5239 ┊ 0.11% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h94b19bd196292d43 + 4104 ┊ 0.08% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::h3fc7b3700d392257 + 2419 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h6e2bb49a503ea3a2 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4b0ea4e7328f06bf + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd9b8648f689657ed + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h729ccb358642eca0 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7ffe69bc0641243a + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd92e0ffa8cfb3d1a + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h150554d7448bc379 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::build::{{closure}}>::{{closure}}::{{closure}}>::{{closure}}>::h57254672f39be7f8 + 357 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h1c20c2694d40f0ed + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hf242e5615677ff81 + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::{{closure}}::h771ba51ae2e78518 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h7a067ca757a46d8e + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::hdd690bb94d337076 + 5227 ┊ 0.11% ┊ ⤷ send_wrapper::futures::<impl core::future::future::Future for send_wrapper::SendWrapper<F>>::poll::h8a36ec2284d72381 + 4592 ┊ 0.09% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::try_into_string::{{closure}}::hbea1539159d9d332 + 2654 ┊ 0.05% ┊ ⤷ gloo_net::http::response::Response::text::{{closure}}::hb74f528ee86f6dd7 + 540 ┊ 0.01% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h7914a0e9da542f52 + 444 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Response::Response::text::h9caa05f480ccd7c9 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h885a42d883497864 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_text_450a059667fd91fd + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h6b99788e1d118cfe + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<wasm_bindgen::JsValue> for js_sys::JsString>::from::h32c0e1b1b2612d7b + 931 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map_err::heaa8c0d5786a6aac + 127 ┊ 0.00% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::try_into_string::{{closure}}::{{closure}}::h37ea0e99ccf3516d + 55 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hcf0be8ecd3b3e389 + 47 ┊ 0.00% ┊ ⤷ gloo_net::http::response::Response::text::h523aa9687a7365aa + 333 ┊ 0.01% ┊ ⤷ core::pin::Pin<&mut T>::map_unchecked_mut::he7e237054c7ebde8 + 227 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1a194889418d32b0 + 154 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::deref::DerefMut>::deref_mut::hf545af24679747be + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h537d8cffe735dade + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h5e91cb72c65d59b7 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::haa261d363088fe5c + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_poll::h7ee59c1d7d3a7eff + 5208 ┊ 0.11% ┊ ⤷ <url::host::Host<S> as core::fmt::Display>::fmt::hc15ebe8ad5250ba5 + 4075 ┊ 0.08% ┊ ⤷ url::host::write_ipv6::hcbac4ad56b491c47 + 1496 ┊ 0.03% ┊ ⤷ url::host::longest_zero_sequence::h169996235f3084eb + 352 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::hb72082119e1892c2 + 269 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h1b4037a6131bcb99 + 52 ┊ 0.00% ┊ ⤷ <isize as core::iter::range::Step>::forward_unchecked::h6984c8247468d07c + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h12658b51e039fb30 + 1411 ┊ 0.03% ┊ ⤷ core::net::ip_addr::Ipv6Addr::segments::hf428ea9df7dafa12 + 459 ┊ 0.01% ┊ ⤷ <core::net::ip_addr::Ipv4Addr as core::fmt::Display>::fmt::hd55f28d05437c287 + 105 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::he61849ecc12ad68a + 53 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h76d5c45214649653 + 5028 ┊ 0.10% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h6bdf6568daa3bfb5 + 3625 ┊ 0.07% ┊ ⤷ alloc::raw_vec::finish_grow::hf0e15c7125aa2352 + 1625 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h8c8bfa779bb20808 + 1490 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::hb6b07a1efbb2f498 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h5e93584709fd8993 + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h8d720d1f37491897 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hf6600d3bc0fb93c0 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::hfeebf9cc3a63a68a + 4969 ┊ 0.10% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::Render<Rndr>>::rebuild::he86d4092296e7882 + 321 ┊ 0.01% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::h06514d6a3415bb0f + 53 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::rebuild::h574aaf88be87a6fd + 240 ┊ 0.00% ┊ ⤷ tachys::renderer::Renderer::mount_before::h00b6ed9bce771bd5 + 4879 ┊ 0.10% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::clear::hfeaf031fd48a700e + 4803 ┊ 0.10% ┊ ⤷ reactive_graph::traits::Update::update::hcd7a5d64315cb9fb + 4740 ┊ 0.10% ┊ ⤷ reactive_graph::traits::Update::try_update::hcd38ef9ff131e66c + 4649 ┊ 0.09% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::h4f27436a05c64c3b + 4363 ┊ 0.09% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::hf63fe23717f83a4d + 3975 ┊ 0.08% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::hc4fd2865e365a0aa + 3868 ┊ 0.08% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::clear::{{closure}}::ha9c456fae0fdabc9 + 3737 ┊ 0.08% ┊ ⤷ leptos::error_boundary::Errors::remove::haf5065abe408234e + 3645 ┊ 0.07% ┊ ⤷ std::collections::hash::map::HashMap<K,V,S>::remove::ha2f141a7fdb76bc0 + 3553 ┊ 0.07% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::remove::h7464882749ac1b58 + 3274 ┊ 0.07% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::remove_entry::hfedf8c7ea5b6e29e + 3158 ┊ 0.06% ┊ ⤷ hashbrown::raw::RawTable<T,A>::remove_entry::hf80a340c6c5cc4ee + 1526 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::remove::hf06a40342a63041c + 1036 ┊ 0.02% ┊ ⤷ hashbrown::raw::RawTable<T,A>::erase_no_drop::hf4d5c9fae646b0b7 + 916 ┊ 0.02% ┊ ⤷ hashbrown::raw::RawTableInner::erase::hf1166c53b3f8c89a + 1337 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find::h9fafeade32677342 + 4878 ┊ 0.10% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h01dd77f1702c03f8 + 3991 ┊ 0.08% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B,C)>::build::h687cb69fdb427f8b + 1182 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::hdb76f39108de581d + 293 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<Rndr> for (A,B)>::build::he3f703299879db29 + 105 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::mount::hd282ae3c99e7f569 + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::h1fc616e5996cdcbd + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::hcbcb6a81db230d7d + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5fd812cede2928a8 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha3bf627a7dde64d2 + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::hf40fa15b28d6075e + 542 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::ha64ccba465f3cdf0 + 471 ┊ 0.01% ┊ ⤷ <(A,) as tachys::html::attribute::Attribute<Rndr>>::build::h5da690ada2935aed + 362 ┊ 0.01% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::build::h9f69a21b006b966a + 238 ┊ 0.00% ┊ ⤷ <alloc::string::String as tachys::html::attribute::value::AttributeValue<R>>::build::hdc3a447bc9f6619b + 311 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B,C)>::mount::h1dac68a79345dc4e + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::hb64bcf94364aeee0 + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::hd5c795be68a5521b + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::h162cc62bb82a2c16 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h65ddada2cea605f7 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h93a9088d1db3b2de + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hdd95b1899e948bec + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6f525aae7cb4699f + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha33cd44f62bdd373 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hac78297f5bcf742e + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h330d056c4049a860 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h629cb555e4cae43b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9960e4caa482f17a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::hf9d1d8729c5f6945 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::ha55746626885e0ac + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hc46789c488b1f136 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h74f5bd925728b7a8 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hb0d12f6fb491c5d4 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::h1f4f38c69887a907 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hacece93f3e5b1c33 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hc0ef72cf0a5a5d42 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h81fa1c21aca55ad2 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hf563c1026b042591 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h476a934628f341e7 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hd9f9b04b5f04468f + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5870803fa2d18d92 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha890d03e6384c3cc + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h66ab0227d150c8b2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h6d118e66000cda8c + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h166ad543281a2e16 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hca48f363e6eef303 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hed5a1dfb5cde63b7 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hb13640ce02913cbc + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::h798189edcce5f6bd + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h4df3ff7cb44b9005 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h65ca44f1ed496dec + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::ha94092fabbcfec70 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4090cdf848fe6258 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hf844b366ca05ef39 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h57738b2b9d353c69 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h1c636bf82d0b0cee + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h29c10b952fa6f860 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hefe5cafdc83b0be8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h4caa07799994cab6 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h270b37760b968c4d + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h57c1f28b789f5ba9 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h49de6883a9dc51c7 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h8c308d26f8e19eea + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::h83a3ce8395d0a29d + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hb56ba10061701d7b + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h38ddc47dfa2adf8e + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hd3a959ad1a4db014 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h76adbb75a67837a2 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hde634c78ad79425e + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h03d61d30196c0d92 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::habc1d7bc34207f6d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h71ca5fc1c71ad27a + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h3ebe01102ef79108 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h1385f5979aa2d1a8 + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h20136ced148681fd + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hdae182d39854652e + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h7252b2330fa06c5f + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h4df0b2d5f1cfa646 + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::hd20b308e1a030063 + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hdb8a38739db6a44e + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::hfd8f9d1781b1a944 + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h1392e0744c3363dd + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hf718e8a6caf51db3 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4a6c459d21dc048b + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hde3a6b0d8fb7b61a + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h5b7b33272ce56829 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::he6899b0603a3c18b + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1fb97250aa64798c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h3099579e9bdcbc5a + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hac2c0a2b6a4ba6b5 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h193b2e94a55c3893 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::he096dedf43e4e605 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h817a4ddd39a1fade + 4714 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::hd65980aa8275cedf + 4371 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hdec535674be2edc7 + 4256 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h6f9243337a10735e + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hb4a6063986785464 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::ha5cd2a1b7b4b5236 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h93bb72d48e4c8645 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf43da79a3f00d7be + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h00762c18ce8fbc4a + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4b39d1ec75df66f0 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf30ad85a41bd1a7a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(web_sys::features::gen_Element::Element,oco::Oco<str>),reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::hd47aa0a72b137d5e + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::hc593f08b1d8afa44 + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hf7cea588167024fd + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h68d4548a51777275 + 620 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h1912f2fa1f279903 + 4701 ┊ 0.10% ┊ ⤷ leptos::suspense_component::SuspenseContext::task_id::hc396bb7719058e0d + 1631 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<K,V>::try_insert_with_key::heb58f8fbb488131d + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_mut::hd83ab2340ecb672c + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_mut::h414c22027a58ed6a + 170 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h9b270529d16ad4f0 + 78 ┊ 0.00% ┊ ⤷ <slotmap::DefaultKey as core::convert::From<slotmap::KeyData>>::from::hf1e02e55181a61c1 + 49 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hc4dc6fda8048f89c + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h6cbd44d6dcab6747 + 36 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::insert::{{closure}}::heb444a41ff772f4d + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h16706b68286dc849 + 1388 ┊ 0.03% ┊ ⤷ reactive_graph::traits::Writeable::write::h94351d05f42dfece + 708 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write::hbabb595bdcbb6968 + 566 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h40c59896758e23fb + 188 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write::{{closure}}::h190eac4401b789b9 + 100 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::WriteGuard<S,T>::new::haa492aa0b4027214 + 487 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h9f75ed3c2861944f + 176 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Writeable::write::{{closure}}::had26f2bf5806f66e + 40 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Writeable::write::{{closure}}::panic_cold_display::h53d87c6d24972eb3 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::caller::h0d491f8c565b9a2e + 519 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as slotmap::util::UnwrapUnchecked<T>>::unwrap_unchecked_::h80b18afe26739eb9 + 168 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h9dccc97545fa9281 + 5 ┊ 0.00% ┊ ⤷ core::hint::unreachable_unchecked::h587fcce8d680e964 + 485 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::WriteGuard<reactive_graph::signal::arc_rw::ArcRwSignal<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>,slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::hccff07e5c9f38127 + 284 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::WriteGuard<S,T> as core::ops::drop::Drop>::drop::h0c5dfc650da7316b + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hba5b3da82ad17927 + 75 ┊ 0.00% ┊ ⤷ core::mem::drop::hba8e1f0009b9484a + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::h74221f9f0ced12ae + 372 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::WriteGuard<S,T> as core::ops::deref::DerefMut>::deref_mut::hf6b6d1bcbfd4be49 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h4a5be7d43bb7be22 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::ha4fc9d19cf1bfce8 + 4394 ┊ 0.09% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::hee1fbbee182292ac + 4227 ┊ 0.09% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::h7fef0bcfcb5de8d0 + 4046 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h69a63ea807ec3a0b + 3950 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h590e9472b255b08a + 2477 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hae1b6822922d0bdf + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::ha82fd6fbcc7b17c1 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h6920092304668ed9 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h4acbe702d3710289 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h176d434dd277e28a + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h383c8ff0e35eb27c + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h31804d3d94852aec + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::build::{{closure}}>::{{closure}}>::{{closure}}>::h2f2f4fc6554caa32 + 415 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h06d44f35cb165510 + 254 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h696398986ba1749d + 94 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h57c65bd116cc98da + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hb8b5335764da3f6b + 4292 ┊ 0.09% ┊ ⤷ console_error_panic_hook::hook::h283736fdca10bea5 + 4239 ┊ 0.09% ┊ ⤷ console_error_panic_hook::hook_impl::hcb9a22dcc3b224cb + 1527 ┊ 0.03% ┊ ⤷ console_error_panic_hook::error::hf51175551abbbde1 + 1272 ┊ 0.03% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::h30ba041e4760c557 + 1004 ┊ 0.02% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h98d6f4f654e4df2f + 651 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::{{closure}}::hd23c5b346e8af575 + 409 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::vec::Vec<T>>::into_abi::hfe03f7e90e07f533 + 299 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::boxed::Box<[T]>>::into_abi::h078cb2a150b394cf + 207 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::VectorIntoWasmAbi for u8>::vector_into_abi::h1626c928ff0a65ec + 36 ┊ 0.00% ┊ ⤷ core::mem::forget::h99e9be59e548d9ec + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for *const T>::into_abi::he4e071be24c73215 + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::into_bytes::h624056b275a7a404 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::{{closure}}>::h0942da49e6adb26d + 47 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::unsafe_get_cached_str::h1c1c910f4d7f1cb7 + 78 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::slices::WasmSlice as wasm_bindgen::convert::traits::WasmAbi>::split::ha1498b1bdf3167fc + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_error_f851667af71bcfc6 + 927 ┊ 0.02% ┊ ⤷ <T as alloc::string::ToString>::to_string::h062d95cd336acd28 + 385 ┊ 0.01% ┊ ⤷ <core::panic::panic_info::PanicInfo as core::fmt::Display>::fmt::h016c8dd221666f92 + 666 ┊ 0.01% ┊ ⤷ console_error_panic_hook::Error::stack::hce9c1bfd934f5d12 + 170 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::traits::WasmRet<T>::join::he0d776d45fa986bf + 78 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::slices::WasmSlice as wasm_bindgen::convert::traits::WasmAbi>::join::h9a85a42a85a65a79 + 156 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::FromWasmAbi for alloc::string::String>::from_abi::h12dd18396bdbb955 + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::from_utf8_unchecked::ha70c0cbd0ed9f0a4 + 95 ┊ 0.00% ┊ ⤷ console_error_panic_hook::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &console_error_panic_hook::Error>::into_abi::h209c994edc0c18eb + 38 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &wasm_bindgen::JsValue>::into_abi::hf72b1cc824259455 + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::split::he065b6dc45d626b7 + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_stack_658279fe44541cf6 + 435 ┊ 0.01% ┊ ⤷ console_error_panic_hook::Error::new::hd0f9c0466204b1c4 + 218 ┊ 0.00% ┊ ⤷ console_error_panic_hook::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for console_error_panic_hook::Error>::from_abi::h7ee2e887b985708d + 102 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::h3c6c277282ea0afd + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h262c4cb9019d9863 + 38 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h361cdde9430201d9 + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::traits::WasmRet<T>::join::hd75220d81b042120 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::h14d001bd04f6e0a8 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_abda76e883ba8a5f + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::hfb5f11deadd45c84 + 71 ┊ 0.00% ┊ ⤷ alloc::string::String::push_str::h41d8427a1697c4d7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<console_error_panic_hook::Error>::h2c75b81eeadac2cc + 4279 ┊ 0.09% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_str::h7c901182c5fb508a + 4154 ┊ 0.08% ┊ ⤷ serde_json::ser::format_escaped_str::hb9e0c2ed5c300426 + 3642 ┊ 0.07% ┊ ⤷ serde_json::ser::format_escaped_str_contents::hae1998473fae44dd + 904 ┊ 0.02% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::hb791956bc75bcfbc + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h11bd00876a74395d + 606 ┊ 0.01% ┊ ⤷ serde_json::ser::Formatter::write_char_escape::h217f9ddb4550264d + 471 ┊ 0.01% ┊ ⤷ serde_json::ser::CharEscape::from_escape_table::h790e2bb04226cc6c + 176 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h11a8395f651bb17e + 102 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::write_string_fragment::h8c0fff0b1c8de346 + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::enumerate::h0150310e4b28897d + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::ha1a2931a505091f6 + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_string::h6becf7dcd6875aba + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_string::h48e088a28456676c + 4258 ┊ 0.09% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::Render<Rndr>>::rebuild::h9ad474111da9c545 + 412 ┊ 0.01% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::h98ee226ca4ef8d8f + 305 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::hadc255809838ccd5 + 145 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::rebuild::hf7fa7995b47cbe21 + 29 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::rebuild::h3760e45288769032 + 240 ┊ 0.00% ┊ ⤷ tachys::renderer::Renderer::mount_before::h6b4f278c261bd3d4 + 4137 ┊ 0.08% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::{{closure}}::h4957110e7e3370a3 + 2676 ┊ 0.05% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}::h1bfbe3917501f4ac + 1429 ┊ 0.03% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::close::{{closure}}::he2ed4c1d4cecfda4 + 606 ┊ 0.01% ┊ ⤷ <futures_util::sink::close::Close<Si,Item> as core::future::future::Future>::poll::h481b13fc4f98dcac + 347 ┊ 0.01% ┊ ⤷ <&mut S as futures_sink::Sink<Item>>::poll_close::h17aee924d4fc1333 + 197 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as futures_sink::Sink<Item>>::poll_close::hf98a1b0d25c28f02 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::he1ea26a48e218524 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h90d39ba35949b220 + 140 ┊ 0.00% ┊ ⤷ futures_util::sink::SinkExt::close::h833a188f4042827e + 45 ┊ 0.00% ┊ ⤷ futures_util::sink::close::Close<Si,Item>::new::h26d6a78ccfcc203b + 31 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h14ae0d047800a662 + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::ha8fb65b43151b155 + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h8b81841093a2113a + 48 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}::{{closure}}::h56c1a2b4422631ed + 55 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h9290ad7ef5553245 + 47 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::close::he71fb9270079183c + 119 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h1e92b9667febdfc8 + 4118 ┊ 0.08% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeStruct>::serialize_field::h6c3063f8f476b7c2 + 4034 ┊ 0.08% ┊ ⤷ serde::ser::SerializeMap::serialize_entry::h61df317989583640 + 3864 ┊ 0.08% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeMap>::serialize_value::h2d0786e325beb78c + 3494 ┊ 0.07% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for usize>::serialize::hf085e893e8217e65 + 3410 ┊ 0.07% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_u64::h2e7fe7c1abcb3b9a + 3294 ┊ 0.07% ┊ ⤷ serde_json::ser::Formatter::write_u64::hfbcc38df4fa4b406 + 2788 ┊ 0.06% ┊ ⤷ itoa::Buffer::format::h0f9a4a3df5d3c31c + 2685 ┊ 0.05% ┊ ⤷ itoa::<impl itoa::private::Sealed for u64>::write::h1a3b4ce42d79b7f6 + 113 ┊ 0.00% ┊ ⤷ core::slice::raw::from_raw_parts::hdb52856d01b7b894 + 348 ┊ 0.01% ┊ ⤷ itoa::Buffer::new::hcdaf2aa619bd02ea + 3995 ┊ 0.08% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::suspense_component::TaskHandle>>::h80653935fcac3cb3 + 3910 ┊ 0.08% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::TaskHandle>::hdf3340bdc53deca0 + 3852 ┊ 0.08% ┊ ⤷ <leptos::suspense_component::TaskHandle as core::ops::drop::Drop>::drop::habd2dcccd14f83a7 + 3772 ┊ 0.08% ┊ ⤷ reactive_graph::traits::Update::update::h79a098cac230b003 + 3709 ┊ 0.08% ┊ ⤷ reactive_graph::traits::Update::try_update::hcf8bb0503d994dd7 + 3618 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::ha7c6d8cbc37c9268 + 3332 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::he1eb63ce7e5abdc3 + 1893 ┊ 0.04% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::hf15f6f011e463a42 + 1786 ┊ 0.04% ┊ ⤷ <leptos::suspense_component::TaskHandle as core::ops::drop::Drop>::drop::{{closure}}::h4f021a25491dfa51 + 1700 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<K,V>::remove::hf296515937a5e708 + 1037 ┊ 0.02% ┊ ⤷ slotmap::basic::SlotMap<K,V>::contains_key::hc802c5e662de2abb + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or::h20b118b3d90cd66d + 142 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::contains_key::{{closure}}::h825bbde648035cbe + 31 ┊ 0.00% ┊ ⤷ core::num::nonzero::NonZeroU32::get::h7c007787df2cfa95 + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get::h72e105fadb6ca388 + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::h60075263bd80b76b + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h3bcf02a3f2d44444 + 145 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_unchecked_mut::h6fc20a3b994c26f9 + 70 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::h479b2970197bb114 + 57 ┊ 0.00% ┊ ⤷ <slotmap::DefaultKey as slotmap::Key>::data::hbe1cc3c538dbb5bd + 36 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::take::hc2ac26b78ca80468 + 719 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write_untracked::ha0415fc7ea9ef1cf + 554 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h0872e192c7cfe3ce + 225 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::haa43956662962261 + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::convert::From<std::sync::rwlock::RwLockWriteGuard<T>>>::from::h28c692d7c2644b66 + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hd6670358f83a9a9d + 57 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h4078cfa0d72e99a4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::UntrackedWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::he59b80827bbd1a7b + 3660 ┊ 0.07% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::h522b4de52114d3ef + 3272 ┊ 0.07% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::hb09754371b7c2ad3 + 722 ┊ 0.01% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for core::option::Option<T>>::build::h2363e5b046f81dd6 + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h560a9b3b4ad31b56 + 122 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h8ddd21904b76c701 + 523 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hf29428061a1474ae + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h16ab787c320ef631 + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::{{closure}}::h16df42d015f37bbb + 3659 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::h0ea4f35bbba4aebd + 3576 ┊ 0.07% ┊ ⤷ core::option::Option<T>::and_then::h7fa0123da024a065 + 3312 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::he29643fae7804cd3 + 3259 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::hbbf9c45d16d4a5ca + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hb93190eb17cf8b79 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h33e43637164fce4c + 307 ┊ 0.01% ┊ ⤷ core::option::Option<&T>::cloned::hfb0d6fcaec3c4d45 + 116 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::SuspenseContext as core::clone::Clone>::clone::hc0c016169ca93f74 + 257 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h77649996e4d2b05f + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::hd38730ae26695e82 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h3eb0d64d64f5ea44 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h95db5a527de21fe6 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h4ca699a64e180e78 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h25ef8775b2433641 + 163 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::hb6dae3862eb9017a + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::suspense_component::SuspenseContext>>::h595bc9dc16088b80 + 3532 ┊ 0.07% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::h24949e893779c8cf + 1727 ┊ 0.04% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::Render<Rndr>>::build::h766c86feb50e1014 + 901 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::hca2dbb9deb933f37 + 276 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h5c58fa7401859214 + 739 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::build::{{closure}}::hc76753b1ed49d247 + 3500 ┊ 0.07% ┊ ⤷ <T as core::convert::Into<U>>::into::hd9018258a3ca1a0f + 3413 ┊ 0.07% ┊ ⤷ server_fn::error::<impl core::convert::From<server_fn::error::ServerFnError> for any_error::Error>::from::h174edfbcfd987245 + 1974 ┊ 0.04% ┊ ⤷ <any_error::Error as core::convert::From<T>>::from::h5de91ee3273cf6ef + 1877 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T>::new::h96123105f17f8f22 + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::h982bc4f64b227c9e + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h4bc94515feb29e35 + 1323 ┊ 0.03% ┊ ⤷ <server_fn::error::ServerFnErrorErr<CustErr> as core::convert::From<server_fn::error::ServerFnError<CustErr>>>::from::hab5bbc2231ad4d14 + 3414 ┊ 0.07% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::parse_with_base::hde43b7cf651b49c9 + 561 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Url::Url::new_with_base::h15b323fd5d60c784 + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newwithbase_6aabbfb1b2e6a1cb + 203 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::pathname::hec6909aa035da3ea + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_pathname_c5fe403ef9525ec6 + 201 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::origin::h3420f46558b29c06 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_origin_ea68ac578fa8517a + 199 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::hash::hff8756073f349c14 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_hash_cdea7a9b7e684a42 + 162 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha5cd54a8c6f0fbce + 154 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::search_params::h298beea9762ca85c + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_searchParams_bc5845fe67587f77 + 3362 ┊ 0.07% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::hb7433d750dc040a8 + 2974 ┊ 0.06% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::h0fda36e2611c5cf8 + 523 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h3bb756c4e695c7be + 465 ┊ 0.01% ┊ ⤷ tachys::view::iterators::<impl tachys::view::Render<R> for core::option::Option<T>>::build::hcc40a576bb5cc8a3 + 375 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h5147c515a7336877 + 91 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::he2fb8f9a16bea5b4 + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hba8ef5b4e7e3c626 + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::{{closure}}::h0a2abbb1ef0a7ace + 3319 ┊ 0.07% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::h99b05dd44fa78cfc + 3313 ┊ 0.07% ┊ ⤷ gloo_net::error::conversion::js_to_error::h68730e42ff507597 + 3054 ┊ 0.06% ┊ ⤷ gloo_net::error::conversion::js_to_js_error::h119f1ace09801b9a + 2339 ┊ 0.05% ┊ ⤷ <gloo_utils::errors::JsError as core::convert::TryFrom<wasm_bindgen::JsValue>>::try_from::h0b3f9f32e441a629 + 951 ┊ 0.02% ┊ ⤷ <gloo_utils::errors::JsError as core::convert::From<js_sys::Error>>::from::h441ec67e22536e38 + 150 ┊ 0.00% ┊ ⤷ js_sys::Error::to_string::h13791c76ac52fff6 + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_toString_ffe4c9ea3b3532e9 + 149 ┊ 0.00% ┊ ⤷ js_sys::Error::message::h70eb4ae61fc73fe4 + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_message_5bf28016c2b49cfb + 146 ┊ 0.00% ┊ ⤷ js_sys::Error::name::h854cc672956dead0 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_name_e7429f0dda6079e2 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Error>::into_abi::h1a611fda8f5c4ae6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::Error>::hfd783fdcc9222e3f + 634 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h36d71fc0a66d944f + 320 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h0af00922966a3b7b + 214 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::h903a565a0a6c4584 + 146 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Error>::instanceof::hc9a3bffe2ca10da2 + 46 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Error_e20bb56fd5591a93 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::h1d5e2854eb5eab53 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h00ea074b736111de + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Error>::unchecked_from_js::h39993bac253e333b + 122 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::h71e9c13c617c0126 + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h783f974b90c763af + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<wasm_bindgen::JsValue> for js_sys::JsString>::from::h1eb622a800086879 + 209 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<gloo_utils::errors::JsError,gloo_utils::errors::NotJsError>>::h684c09ac24ed07ac + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_utils::errors::NotJsError>::hf71b33b45a90ce8f + 3293 ┊ 0.07% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::insert::h4a5ebec95c353255 + 1844 ┊ 0.04% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find_or_find_insert_slot::h7c28002115eb46ee + 1520 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTableInner::find_or_find_insert_slot_inner::hb49017b39121e195 + 747 ┊ 0.02% ┊ ⤷ hashbrown::raw::RawTable<T,A>::insert_in_slot::h97f7a6c9dde2bbfd + 3283 ┊ 0.07% ┊ ⤷ <wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::h9ccf36c2a817afa0 + 689 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::hba01ac78476b51ce + 441 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::new::hdd951117d919f977 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h2e0817399583063e + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::hacac7724a34c67c7 + 223 ┊ 0.00% ┊ ⤷ js_sys::Promise::then2::h6783b17a50549dc2 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_then_a73caa9a87991566 + 202 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<dyn core::ops::function::FnOnce<()>+Output = ()>::once::h4400b48f0ffd3bef + 124 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::closure::WasmClosureFnOnce<A,R>>::into_fn_mut::hb47bd393053e1e3c + 202 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<dyn core::ops::function::FnOnce<()>+Output = ()>::once::he17d367385564050 + 124 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::closure::WasmClosureFnOnce<A,R>>::into_fn_mut::h4ebc338e3a61ffb5 + 3280 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h99726ba0f65f7ce6 + 1257 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::signal::subscriber_traits::AsSubscriberSet>::as_subscriber_set::h1ecb5ddb279b92c0 + 1070 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::hf97cf71a6fcecdbb + 953 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::Arena::with::h8b717aa57d90c58a + 730 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::hed1662d687758c98 + 314 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h7837716e608a46f9 + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::signal::subscriber_traits::AsSubscriberSet>::as_subscriber_set::{{closure}}::h20423d733db42751 + 268 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hdc231fd74968b71a + 73 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::{{closure}}::hce914f53ec48290e + 96 ┊ 0.00% ┊ ⤷ core::option::Option<core::option::Option<T>>::flatten::had7b68b5bc4d4f7b + 934 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::hc28fc92eb3ce312a + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hef472e7295ed56a2 + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h3b4c858e15084286 + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h70097667f73123ec + 114 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::hf3c2c8a894a962de + 588 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::h930ce5d74b6ed37b + 3167 ┊ 0.06% ┊ ⤷ <serde::de::OneOf as core::fmt::Display>::fmt::hb8c90089badafd21 + 904 ┊ 0.02% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::h97fc999531b8ac19 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::ha44f1dc3a4379996 + 308 ┊ 0.01% ┊ ⤷ std::panicking::begin_panic::hc541cb148d813c4a + 206 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::hbaa787e21a2bb937 + 175 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic::{{closure}}::h86d9fcb41dc48b03 + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h6c175855c7061dbd + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::enumerate::hf922aeabff093f8d + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h65f0863aaae33c07 + 3163 ┊ 0.06% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h3d71578fe063c28d + 3084 ┊ 0.06% ┊ ⤷ alloc::string::String::push::hbe0484a9766c6658 + 2271 ┊ 0.05% ┊ ⤷ core::char::methods::encode_utf8_raw::hb40130325bdb176c + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h3acc66880a47caad + 303 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h9de36866dd66a0c3 + 360 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::hf7147d96fe8607e5 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h0980e07504fb5087 + 3122 ┊ 0.06% ┊ ⤷ serde_json::de::Deserializer<R>::peek_invalid_type::hf60215ba92941107 + 297 ┊ 0.01% ┊ ⤷ serde_json::de::ParserNumber::invalid_type::h07db289261b82a02 + 285 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::unwrap_or::h148b30818a35d347 + 90 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<u8,serde_json::error::Error>>::h910f04d3e12614be + 161 ┊ 0.00% ┊ ⤷ <serde_json::read::Reference<T> as core::ops::deref::Deref>::deref::h471231010c8fe5e9 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(),serde_json::error::Error>>::hb096bf7a237dacb7 + 72 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::parse_any_number::hc103c7a042657352 + 3075 ┊ 0.06% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::{{closure}}::h131e0932e7a54441 + 1614 ┊ 0.03% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}::h878d76babc38b675 + 322 ┊ 0.01% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::abort::{{closure}}::h2d2e8c51440fbbbe + 254 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::hcfcd349758fa49f6 + 48 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}::{{closure}}::h04e97f17869e9cf7 + 61 ┊ 0.00% ┊ ⤷ wasm_streams::writable::into_underlying_sink::Inner::abort::hbd7dd31ccf972c1b + 55 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h716940cab66c011b + 119 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h66cdd7ccb075d18f + 2907 ┊ 0.06% ┊ ⤷ <server_fn::error::ServerFnErrorErr<E> as core::fmt::Display>::fmt::h036b22805407544d + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h8246018d5df793c4 + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::h1130cf35f97284aa + 2816 ┊ 0.06% ┊ ⤷ <T as reactive_graph::traits::Read>::read::h0e008d76c1e43a49 + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h2a5daf15593b24c3 + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::h07042cea7edb61a3 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h09311cdefa843dfc + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::hce2f555ecbd7466b + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hb1f30dc3a2aa1dda + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h98c9c2cf56c2ab5c + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::h4a102be3ba38116d + 632 ┊ 0.01% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::hbacac776e8640709 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hb59007714a939613 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::hed0d20f8e2e3dde2 + 88 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h486ee75b9be8f2f4 + 2792 ┊ 0.06% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h6bd2b2dcdf3816da + 2046 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<T>,U>::try_new::hed6316b606dbc251 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h3252cb20e3624ee7 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h59de430f07f6eab4 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::hd86b7697ae72d387 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h14ab0da97668310b + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h0d724714f4a1da0b + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h3fb1e8335a141586 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h7d43147a253ca5dd + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>>::h418c351b9dca596c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>::h7ca5643c922eb401 + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h0d621dd9ad2bd4fb + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h6a62d941f06519f4 + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h725a7f1b4068ee1f + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1751d93bc7bd4896 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::hc1fef5416af44e44 + 86 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::he62aba8676d47047 + 2792 ┊ 0.06% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::hd849d1a670ebaba9 + 2046 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<T>,U>::try_new::h70294e5e55583b19 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h7875d3b5aba6ff4c + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h40509f144f91a914 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::hb068b914603388fe + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h1b309d3d654a0429 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h1210ec4f5cc16ba6 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h19ebf15e56af94de + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h848d3b1e94593721 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<()>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<()>>>>>::h5fdb48865935d5d9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<()>>>>::h9eb2c112e0a4f725 + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h05f15cd0880b15db + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h2b1b92a473f0119c + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::ha08489d20eaea355 + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::ha63f9a1f80c19984 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h00a60c8900c2e5a8 + 86 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::hb816907593b1e948 + 2786 ┊ 0.06% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::h5dcfc689e3a13b2b + 1175 ┊ 0.02% ┊ ⤷ <tachys::view::either::EitherKeepAlive<A,B> as tachys::view::Render<Rndr>>::build::h2d4c678b7b1fdc67 + 480 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hdd1fa99f0f0d7d63 + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h9c24f9440574797a + 610 ┊ 0.01% ┊ ⤷ <leptos::suspense_component::SuspenseBoundary<_,Fal,Chil> as tachys::view::Render<Rndr>>::build::{{closure}}::h85139e2d5c3c4ac8 + 2770 ┊ 0.06% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h3ef9004336168242 + 2169 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h131707f3ae7ac915 + 1286 ┊ 0.03% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h6ca31996cdd88db0 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hb4b1988102262dd8 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h4305460b900ed4dd + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h05c16447a4dae685 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::ha08b8c0448a5f1c9 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h2dc8589395c3d507 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::ha572c2fd50e03f7e + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h212c9c100edb1946 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::hcbf10c828a093672 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h471942b33f0ba072 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<leptos::error_boundary::Errors>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<leptos::error_boundary::Errors>>>>::h577cf79cb28424b3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<leptos::error_boundary::Errors>>>::h94d10c1ff9e131ce + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::he7320b89f399c147 + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h2f118892ae79b77d + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::hf1068620e1e00837 + 2733 ┊ 0.06% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h5f8e91f671485427 + 2654 ┊ 0.05% ┊ ⤷ alloc::string::String::push::hbc269562dee54e27 + 1612 ┊ 0.03% ┊ ⤷ core::char::methods::encode_utf8_raw::ha3989b8456431234 + 589 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h9c89c42a07866a08 + 320 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h0dcbef8a2b998f2e + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::h31e87611d83d5795 + 2676 ┊ 0.05% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::h0a978d4e31f72301 + 1637 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h7be1a93fa4d86b88 + 962 ┊ 0.02% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h158a4167ce79daa6 + 319 ┊ 0.01% ┊ ⤷ core::option::Option<T>::expect::he28455401631c544 + 447 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::he70fd03a60f5aeaa + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::hd91e39e83eb179b9 + 2643 ┊ 0.05% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::hba86294897cb357c + 1637 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h74bed177f91225b8 + 962 ┊ 0.02% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h89b7a1d985809f87 + 319 ┊ 0.01% ┊ ⤷ core::option::Option<T>::expect::h7d98422f939ade1a + 447 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::h663abf993c6ddfc5 + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::hb5a2658c892a3ca5 + 2620 ┊ 0.05% ┊ ⤷ futures_core::task::__internal::atomic_waker::AtomicWaker::register::hdee1c0d67a125f5d + 478 ┊ 0.01% ┊ ⤷ core::task::wake::Waker::will_wake::ha34b9c2482475603 + 270 ┊ 0.01% ┊ ⤷ <core::task::wake::RawWakerVTable as core::cmp::PartialEq>::eq::h96516f6d80d1e900 + 226 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::he83ff569f939444a + 31 ┊ 0.00% ┊ ⤷ futures_core::task::__internal::atomic_waker::AtomicWaker::register::{{closure}}::hc29e315cd4b19ba4 + 215 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::swap::h5449a60d7ebb963c + 150 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hfadcec66542b8981 + 146 ┊ 0.00% ┊ ⤷ <core::task::wake::Waker as core::clone::Clone>::clone::h40571f67bcc260e0 + 126 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::compare_exchange::hc339c04485da5a86 + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h4c3f5d9b2a83a647 + 76 ┊ 0.00% ┊ ⤷ core::task::wake::Waker::wake_by_ref::ha9c63a28b1a53f51 + 2500 ┊ 0.05% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::hfdbda03f8be2c38e + 2421 ┊ 0.05% ┊ ⤷ alloc::string::String::push::h89cd44a0a1de7d3a + 1968 ┊ 0.04% ┊ ⤷ core::char::methods::encode_utf8_raw::h495ef00a6e909989 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hc82d937f53c8eed0 + 2500 ┊ 0.05% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h56b4563a96b2f945 + 2421 ┊ 0.05% ┊ ⤷ alloc::string::String::push::h6e6b969d4a6635f2 + 1968 ┊ 0.04% ┊ ⤷ core::char::methods::encode_utf8_raw::ha7efe53db51e6d2c + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h08988ef408bf3321 + 2472 ┊ 0.05% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::{{closure}}::h626f97453dea120f + 1583 ┊ 0.03% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::h04d046514989ea8d + 492 ┊ 0.01% ┊ ⤷ <T as tachys::html::attribute::global::ClassAttribute<C,Rndr>>::class::h15084a7dd60d313c + 384 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::add_attr::AddAnyAttr<Rndr>>::add_any_attr::ha17186a49cf14545 + 78 ┊ 0.00% ┊ ⤷ <() as tachys::html::attribute::NextAttribute<R>>::add_any_attr::h3cb7ff7f6b56034b + 321 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h7858afee93e73eb9 + 123 ┊ 0.00% ┊ ⤷ <(A,) as next_tuple::TupleBuilder>::next_tuple::had0b632ca189dc02 + 210 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hb9f21dd640d1ecbd + 78 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h146113288a127bc3 + 191 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h7a6d73a8c5fbb7a7 + 69 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h28ec02d2adece685 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::div::he8516b4aeb7f4935 + 135 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::ha825d17b024d224b + 29 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::h7486ad86fdabe434 + 2455 ┊ 0.05% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h14282379a099cada + 2400 ┊ 0.05% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::ha584fcb30dacbf04 + 2324 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hccb49690fd8d4dfc + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h119693eedcbc2354 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd20af3594a0b8d63 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h8111f7718833c405 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4d934ce319a6b3a4 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9e46b87658dc9374 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h41ea9113ea148f44 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}::{{closure}}>::{{closure}}>::hab34c8e766431414 + 264 ┊ 0.01% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::{{closure}}::h06af2117fcfb5871 + 2455 ┊ 0.05% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h192f715a24dfe794 + 2400 ┊ 0.05% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::{{closure}}::he7094face615c69e + 2324 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h5c6a5e547afe139e + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h42e406d14e1a8e58 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h375fcbcaf7db26b5 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h11c8f0bde7381317 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc3621bd2912b37ca + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h72bd17ce4de1e9aa + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1472a969009e7cd5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::rebuild_nested_route::{{closure}}::{{closure}}>::{{closure}}>::h6bc1f43ea45c5712 + 264 ┊ 0.01% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::{{closure}}::{{closure}}::h7ebe8c3127a93fd1 + 2447 ┊ 0.05% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h2bbb6f64ada6d8e9 + 2368 ┊ 0.05% ┊ ⤷ alloc::string::String::push::h755b62f46c666c3d + 1915 ┊ 0.04% ┊ ⤷ core::char::methods::encode_utf8_raw::he61f02696fc36345 + 303 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::hc201cf75d6fa59ca + 2441 ┊ 0.05% ┊ ⤷ <once_cell::unsync::Lazy<T,F> as core::ops::deref::Deref>::deref::ha844f8b24928d8a2 + 2384 ┊ 0.05% ┊ ⤷ once_cell::unsync::Lazy<T,F>::force::h2ac9fbc097978097 + 2311 ┊ 0.05% ┊ ⤷ once_cell::unsync::OnceCell<T>::get_or_init::h2b210ecd619137d7 + 2186 ┊ 0.04% ┊ ⤷ once_cell::unsync::OnceCell<T>::get_or_try_init::hd6a9cdff9a8f00e7 + 486 ┊ 0.01% ┊ ⤷ once_cell::unsync::OnceCell<T>::set::hf5139f0fb045018f + 299 ┊ 0.01% ┊ ⤷ once_cell::unsync::OnceCell<T>::try_insert::h11b828d0c55df344 + 467 ┊ 0.01% ┊ ⤷ once_cell::unsync::OnceCell<T>::get_or_init::{{closure}}::h019b7db20d5417ea + 396 ┊ 0.01% ┊ ⤷ once_cell::unsync::Lazy<T,F>::force::{{closure}}::h4e86d23799760703 + 139 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::take::h93e3db619e3a1ea5 + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h9d0290f042001560 + 57 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::ha97a6cd5f5ff082c + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::hb8a19f7e5204a1e6 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h65b59994ee119003 + 88 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hbf42c8bf942162b6 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(),web_sys::features::gen_Element::Element>>::hc7b83a58398e86cf + 68 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::is_ok::h75b218c32ae41792 + 64 ┊ 0.00% ┊ ⤷ once_cell::unsync::OnceCell<T>::get::h3d46b0bc2d2c00ec + 45 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_unchecked::h70d4e345d3a5d21d + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hd1a3c826664bd70f + 2422 ┊ 0.05% ┊ ⤷ core::ops::function::FnOnce::call_once::hc320a8ee710c3d59 + 2322 ┊ 0.05% ┊ ⤷ <leptos_meta::MetaContext as core::default::Default>::default::{{closure}}::h5aaeba7ccb2ccef8 + 439 ┊ 0.01% ┊ ⤷ core::option::Option<T>::as_deref::h9ca689e6cde66106 + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::h0cc744b0b4cc55ac + 370 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h6645c5825422b24a + 293 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h8fc5da77fe1059d9 + 206 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::Node::text_content::h3fa315fdf9e381b9 + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_textContent_8e392d624539e731 + 160 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::new::hfa11fce6bc553a65 + 150 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::Node::node_type::h44e2665ecbcd00af + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_nodeType_9dd609af1b555b54 + 2416 ┊ 0.05% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h29f74ae46808c21c + 2361 ┊ 0.05% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::{{closure}}::h654e9b78845e3286 + 2285 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h9b12a91231672a01 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h278143031797965d + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h779371e59fd06848 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h92c19a7c4f0a8f51 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h657268f679224009 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4e5b4430cf4d5405 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc01dae00f9b5a27d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,<either_of::EitherOf3<(),(),()> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::rebuild_nested_route::{{closure}}::{{closure}}>::{{closure}}>::h748f0f25b6d8a3cb + 225 ┊ 0.00% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::{{closure}}::{{closure}}::h3c2a05a95cc55f23 + 2416 ┊ 0.05% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h75f3f2cd58851017 + 2361 ┊ 0.05% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::ha7b6879a21954e14 + 2285 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::habcf3f7c06b1942f + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcb4977de08f6d395 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hecfe4d9a27927a53 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::he29f0bd0e3271269 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h9cfc70053d50d8dc + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hb0d3cf41c74f95e5 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hc02c95cb795455eb + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,<either_of::EitherOf3<(),(),()> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}::{{closure}}>::{{closure}}>::h71db9f48c5d8ab0b + 225 ┊ 0.00% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::{{closure}}::hf20ed7adafed42f6 + 2410 ┊ 0.05% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h76fbbea5d6509a4c + 2355 ┊ 0.05% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::h4dabc7e5fc4e272b + 2300 ┊ 0.05% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_u64::h885e1d1f12a75846 + 2245 ┊ 0.05% ┊ ⤷ serde_json::de::Deserializer<R>::deserialize_number::h9af996b1b2e8e7eb + 1065 ┊ 0.02% ┊ ⤷ serde_json::de::ParserNumber::visit::h1d5ceb0c6203c331 + 338 ┊ 0.01% ┊ ⤷ <serde_json::error::Error as serde::de::Error>::invalid_value::h2d6bb151dbd52796 + 245 ┊ 0.00% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::PrimitiveVisitor as serde::de::Visitor>::visit_i64::h0ecd4ea2e78323c8 + 209 ┊ 0.00% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::PrimitiveVisitor as serde::de::Visitor>::visit_u64::hd23abc607ec28106 + 133 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_f64::hca5aafd9fd298cd6 + 2374 ┊ 0.05% ┊ ⤷ <routing::params::ParamsMap as core::clone::Clone>::clone::hc2aac0813fb9ece7 + 2267 ┊ 0.05% ┊ ⤷ <alloc::vec::Vec<T,A> as core::clone::Clone>::clone::h2f0967ed2eea3171 + 2065 ┊ 0.04% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h9fd7873f30bee048 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::hb58faa4c5f469a06 + 262 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::spare_capacity_mut::h2ebd704021f1a930 + 84 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::heb1471cf861197c7 + 2365 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::push::hff746bdd3b3f7667 + 2071 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h3c17061f9310596f + 1751 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h1c226fb3e5a24b4d + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h36ab9431981af109 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hb490f503b1849fd5 + 2347 ┊ 0.05% ┊ ⤷ gloo_net::http::headers::Headers::get::hd7a73ea66dec07c1 + 1650 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h22e2f290cd9140a4 + 975 ┊ 0.02% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h152466169a33f1f6 + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::option::Option<alloc::string::String>,wasm_bindgen::JsValue>>::h0b3366e020dcfb64 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::string::String>>::h1127a2f76fcd806c + 219 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h0e3318f80b4b8243 + 578 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Headers::Headers::get::h2495646a0283d67e + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h41d9c8f3749ca11d + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_get_0ebaad3318b38f2a + 2336 ┊ 0.05% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::hef4d704f58999755 + 1214 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::owner::arena::StoredData>::get_value::hdf3fbf64e1d039f7 + 1148 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::get::hb05eda98a53bca8d + 1093 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::hb70087a17eb3fad6 + 1015 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::Arena::with::h46dc34ac2d842e03 + 812 ┊ 0.02% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::h68e8ad20484f65ca + 436 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hda8de5ad74bf8ec1 + 183 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1877a4fe65a4a8fa + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_read::ArcReadSignal<T> as core::clone::Clone>::clone::hf5db666ac0d015e6 + 268 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hf9ef82b98e66ce71 + 73 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::with_value::{{closure}}::{{closure}}::he521634f07981421 + 1052 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h7e73f7db5d656ae6 + 694 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h5e9f2d484632d7e5 + 632 ┊ 0.01% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::h3c66c9b7383bcb75 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hd1aaaefc865a6491 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::hc802a9cbe4bcb0ea + 88 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_read::ArcReadSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h66377039af5aab0d + 2279 ┊ 0.05% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::take_errors::hf3213f066ea88764 + 2206 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as core::clone::Clone>::clone::he616c55f0d514989 + 1975 ┊ 0.04% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h2eab004c3c7e61c8 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::h3bc30e7b6e1109a4 + 262 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::spare_capacity_mut::hf3bd37d78511223e + 197 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::h0faeae666399eb47 + 52 ┊ 0.00% ┊ ⤷ <hydration_context::SerializedDataId as core::clone::Clone>::clone::h5aeee37658111360 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::h5f2c260ea6ef0e17 + 2223 ┊ 0.05% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::throw::hc4ff5cfcf89f458f + 1593 ┊ 0.03% ┊ ⤷ reactive_graph::traits::Update::update::hcae36374207a653b + 1537 ┊ 0.03% ┊ ⤷ reactive_graph::traits::Update::try_update::h0b768ba32bfc56d8 + 1415 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::h994ffb5ab2dbb591 + 1136 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::h9e844bb92086a3bc + 559 ┊ 0.01% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::h92bfd3211c2b385f + 384 ┊ 0.01% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::throw::{{closure}}::h8185090baaf405cd + 297 ┊ 0.01% ┊ ⤷ leptos::error_boundary::Errors::insert::hc186a745219d1869 + 121 ┊ 0.00% ┊ ⤷ std::collections::hash::map::HashMap<K,V,S>::insert::hfa4dcf34f7f49749 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<reactive_graph::signal::arc_rw::ArcRwSignal<leptos::error_boundary::Errors> as reactive_graph::traits::Update>::try_update<(),<leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::throw::{{closure}}>::{{closure}}>::h38f69aea5c6c29c2 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::error_boundary::ErrorBoundaryErrorHook as any_error::ErrorHook>::throw::{{closure}}>::hcf2710c9b3ccf615 + 122 ┊ 0.00% ┊ ⤷ <any_error::Error as core::clone::Clone>::clone::h552f074922585512 + 52 ┊ 0.00% ┊ ⤷ <hydration_context::SerializedDataId as core::clone::Clone>::clone::ha27db5ecf4ecd276 + 52 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::clone::Clone>::clone::h22b397caf4cf6943 + 42 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::default::Default>::default::h27e4860cd1957144 + 2174 ┊ 0.04% ┊ ⤷ core::ops::function::FnOnce::call_once::h038cf86b7f042ac4 + 2009 ┊ 0.04% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::ha54d40771b6100f6 + 1097 ┊ 0.02% ┊ ⤷ tachys::view::either::<impl tachys::view::Render<Rndr> for either_of::EitherOf3<A,B,C>>::rebuild::ha3e581da7a25d0db + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h6d291faebd8089cc + 2169 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::he911b3fb22adc7fc + 1286 ┊ 0.03% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h1860f8fd3ea11682 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h747f3f6de541b927 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h78687f647bd96ed1 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hcf07e3109c893e28 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h907a5380a1daa1d0 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h8276984a79738d17 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::hc1a7c7d8c9fcaf96 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h6b7c1d51a6a44ff1 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::ha9960de39abe436b + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h7aab390fb582c2b5 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<routing::location::Url>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<routing::location::Url>>>>::h51412c17bcd5e19b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<routing::location::Url>>>::hfc61fbc3ffbcdeca + 2166 ┊ 0.04% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::h20eccb054b6d79c7 + 1399 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h7be591b1da2ff93d + 724 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h60c04ae455f55cf1 + 255 ┊ 0.01% ┊ ⤷ core::option::Option<T>::expect::h26d6b3dac99a507c + 296 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::h0fc67c52cd78bf18 + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::h2216573e62f0596c + 2166 ┊ 0.04% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::hdb29279c91aaa8e0 + 1399 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h8ad5d8dc67d67d1e + 724 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h1a3ef8953eb090ad + 255 ┊ 0.01% ┊ ⤷ core::option::Option<T>::expect::h408d069c5f1cca39 + 296 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::h15f298b34e335755 + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::h43a1a287035e21a6 + 2161 ┊ 0.04% ┊ ⤷ <T as alloc::string::ToString>::to_string::hf90b4f33d73a8816 + 1619 ┊ 0.03% ┊ ⤷ <serde_qs::error::Error as core::fmt::Display>::fmt::h6309fad3c35bbdc5 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::ha86bcd2cb77bf008 + 237 ┊ 0.00% ┊ ⤷ <core::str::error::Utf8Error as core::fmt::Display>::fmt::h2891d9fec5bef97d + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::hece738806fed3896 + 14 ┊ 0.00% ┊ ⤷ <alloc::string::FromUtf8Error as core::fmt::Display>::fmt::hb21e98381608c660 + 2144 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::hff83df00b380c1ca + 2065 ┊ 0.04% ┊ ⤷ alloc::string::String::push::h4bccfa21b6a2aa10 + 1612 ┊ 0.03% ┊ ⤷ core::char::methods::encode_utf8_raw::h971418988692ca69 + 2132 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::h0549a90371c72d64 + 2079 ┊ 0.04% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hce13114b0acceca9 + 1839 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::he59ad91d4fbc7641 + 1079 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::h979428772b9d1cf0 + 1015 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::h1475ed63b9894174 + 962 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>::hdf5123bb157a5384 + 909 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<slotmap::basic::Slot<()>>>::h37ab60578527e6b9 + 601 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h1eda2a343977c524 + 440 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<[slotmap::basic::Slot<()>]>::h71345b1b39bbf12c + 273 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<slotmap::basic::Slot<()>>::h2ec5a1c970daa5d5 + 220 ┊ 0.00% ┊ ⤷ <slotmap::basic::Slot<T> as core::ops::drop::Drop>::drop::h57fd3705d5ffa2b9 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::ha235aa3a8d9b3e21 + 29 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::hbabd161d69a6b5d3 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<slotmap::basic::Slot<()>>>::h5c3fa2f7753eecaf + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hb274ac5caf153bf6 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>,&alloc::alloc::Global>>::h0e83d7dd32991e7f + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h6aa8a7bfaedc2c01 + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::hcf2358026f93caac + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::h835eb534f0b3c470 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hb821f308a8371245 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h3ef5050aa91cfd01 + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h794ef097dcb612eb + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::hd4d900bc5ef73ff7 + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::ha1740bcec59cea88 + 2028 ┊ 0.04% ┊ ⤷ any_error::throw::h09779c5980be0c7e + 1890 ┊ 0.04% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::h4c7e193aeb60fb1d + 1761 ┊ 0.04% ┊ ⤷ std::thread::local::LocalKey<T>::with::h4a1953caef32e45a + 1462 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9ef10dd4d8e12fdd + 927 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::{{closure}}::h585b20f06244afc0 + 607 ┊ 0.01% ┊ ⤷ any_error::throw::{{closure}}::hf3a04f043dacddd2 + 470 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h11ab5b3fb5332d2a + 140 ┊ 0.00% ┊ ⤷ any_error::throw::{{closure}}::{{closure}}::hdcde9c8feb6905e4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::throw<any_error::Error>::{{closure}}::{{closure}}>::h67718128a991361b + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::LocalKey<core::cell::RefCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::with_borrow<any_error::throw<any_error::Error>::{{closure}},core::option::Option<any_error::ErrorId>>::{{closure}}>::hfcc7149c97d348ee + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::throw<any_error::Error>::{{closure}}>::hc4fee32a86c7d5d9 + 2008 ┊ 0.04% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::{{closure}}::hbfba79e23aceae96 + 248 ┊ 0.01% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h849df84f6c8b4299 + 1962 ┊ 0.04% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::{{closure}}::h859162d3ebddb0d8 + 248 ┊ 0.01% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h43d41f8ecfc0fb02 + 1912 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<leptos::error_boundary::Errors>>>::hdb6ebe59e3caafae + 1859 ┊ 0.04% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h69fc9eeb0a093121 + 1619 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hf8b7809bb9d8221a + 859 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<leptos::error_boundary::Errors>>::hac4468c290b657fe + 795 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<leptos::error_boundary::Errors>>::hf3b69c438759b6fe + 742 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::Errors>::h50a816cd57850dfe + 689 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::collections::hash::map::HashMap<any_error::ErrorId,any_error::Error,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>>::hd4db948c655bac71 + 636 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<hashbrown::map::HashMap<any_error::ErrorId,any_error::Error,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>>::h6658e0e43cb1c397 + 583 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(any_error::ErrorId,any_error::Error)>>::h57abafe5cd669726 + 530 ┊ 0.01% ┊ ⤷ <hashbrown::raw::RawTable<T,A> as core::ops::drop::Drop>::drop::h1124198ac2759e63 + 452 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::drop_inner_table::hafc9732775864501 + 348 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::drop_elements::hc71baeb3ed66d90f + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<leptos::error_boundary::Errors>,&alloc::alloc::Global>>::h7de6127130e4ee6e + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h249f906181af159f + 1851 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<serde_json::error::Error>::h259e9d8740a54b19 + 1798 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<serde_json::error::ErrorImpl>>::h171a6dd22341a588 + 1733 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<serde_json::error::ErrorImpl>::h89aa3eed1f278563 + 1680 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<serde_json::error::ErrorCode>::ha05d92970c16a13a + 962 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Error>::hd5ce6521a8531278 + 909 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::repr_unpacked::Repr>::h89631a48d1dcffa8 + 856 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::ErrorData<alloc::boxed::Box<std::io::error::Custom>>>::heaea0d1538abc8b9 + 767 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<std::io::error::Custom>>::h5b1488b6b126f5dd + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Custom>::h90090e8e55e69d86 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::hd9509fbe6f9b58c2 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hf9d68eb183f38fb1 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hf0fb30c22dd24314 + 580 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<str>>::h8204a961bfe0819b + 527 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hae2c61f2a41d1bba + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h91bc5dda29e59fca + 1849 ┊ 0.04% ┊ ⤷ <futures_util::stream::stream::next::Next<St> as core::future::future::Future>::poll::h332e2aefff8ba36c + 1638 ┊ 0.03% ┊ ⤷ futures_util::stream::stream::StreamExt::poll_next_unpin::h65f95f8136c65278 + 1551 ┊ 0.03% ┊ ⤷ <reactive_graph::channel::Receiver as futures_core::stream::Stream>::poll_next::h5703f9e96bc5d884 + 511 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::hddfed40efdec4c42 + 311 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicBool::swap::h59d8a56c0669d2a7 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::hb68070e05e4e1b39 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h2c733f3dd43e6c91 + 38 ┊ 0.00% ┊ ⤷ core::task::wake::Context::waker::hbd3a4800638d7fea + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::h37e27211dfed2708 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::hba0d4a7c0c210332 + 1837 ┊ 0.04% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::h3f0154e60ba09932 + 730 ┊ 0.01% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryView<Chil,Fal,Rndr> as tachys::view::Render<Rndr>>::build::hdd77a2982ab6f227 + 1823 ┊ 0.04% ┊ ⤷ core::ops::function::FnOnce::call_once::h265cfc4b70c6da57 + 1715 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h018cec3852dad582 + 1443 ┊ 0.03% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h4ccf51739d48514d + 1366 ┊ 0.03% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hafd37802960a38d2 + 1073 ┊ 0.02% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hac50112a2ae54658 + 982 ┊ 0.02% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hcaaa8c968685db45 + 891 ┊ 0.02% ┊ ⤷ <core::result::Result<T,E> as core::cmp::PartialEq>::eq::hbca57547d5f77287 + 354 ┊ 0.01% ┊ ⤷ <routing::params::ParamsError as core::cmp::PartialEq>::eq::he30ad63a1d94731c + 77 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostParams as core::cmp::PartialEq>::eq::h05aafe609ff7b5ca + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::haf9d6c38eabba33d + 1792 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::h2e0a71aa842b4028 + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h341124b0fd29fdfe + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h25c3a47ed41debc0 + 1792 ┊ 0.04% ┊ ⤷ core::ops::function::FnOnce::call_once::h25ee3b6430750262 + 1697 ┊ 0.03% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h29b4babf866b5a71 + 1102 ┊ 0.02% ┊ ⤷ tachys::view::either::<impl tachys::view::Render<Rndr> for either_of::EitherOf3<A,B,C>>::build::h59ac385bb685b205 + 1747 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::he5ea7da77e38ed63 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h4aea5ebcdfe32d84 + 1747 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hd1d40c7956257f53 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h5d096076d117238a + 1704 ┊ 0.03% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::h9a19a56397ecbce7 + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h26cf3c0d953b4c0c + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::{{closure}}::h06c8f0cb6df43033 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::hd76536112036750b + 1704 ┊ 0.03% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::hbd7837528fa2c787 + 432 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h776d8d32891eb0c8 + 53 ┊ 0.00% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::rebuild::{{closure}}::h714e21b1e98e1b43 + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h27d211b8897db42d + 1673 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write_untracked::h02fd5bba39a2457e + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h3636eb319a035d67 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h3a54a7c134efb935 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hca9e6e4f75746bc4 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hb929ba9646748be0 + 554 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h4e4825074b3c32e1 + 225 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hb4f57f3ef4429232 + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::convert::From<std::sync::rwlock::RwLockWriteGuard<T>>>::from::he681354ad7ef39ac + 336 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h02ec8addb1565c3c + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<std::sync::rwlock::RwLockWriteGuard<leptos::error_boundary::Errors>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<leptos::error_boundary::Errors>>>>::h4a5eb769f2858ec9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<leptos::error_boundary::Errors>>>::h62454d2a3d403ffa + 1635 ┊ 0.03% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::decode_hex_escape::h51ef1233fcc18c17 + 352 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::h1dc9285e0e6ff9d6 + 269 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h9403dc35830115fe + 52 ┊ 0.00% ┊ ⤷ <i32 as core::iter::range::Step>::forward_unchecked::h2c9fdb4d4192048e + 273 ┊ 0.01% ┊ ⤷ serde_json::read::decode_hex_val::hb2ef82ca4b810a99 + 123 ┊ 0.00% ┊ ⤷ serde_json::read::error::h032b081ebc070af6 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hc3757a1a9dd34646 + 1612 ┊ 0.03% ┊ ⤷ core::char::methods::encode_utf8_raw::hea57e928b3692ec1 + 1596 ┊ 0.03% ┊ ⤷ tachys::view::any_view::insert_before_this::hf29e9490e5499c1c + 915 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::insert_before_this::h3967a9eea0eef970 + 709 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::h532f1b69b7d35a7a + 557 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h696820fc4a68679a + 377 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hc2f60e6332f823ba + 95 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::insert_before_this::{{closure}}::h240788b899a24db9 + 412 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::he190169511398ffb + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h9aef86ef0d883fb5 + 1587 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::shrink::h4f5d57455966fb82 + 1581 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<core::task::wake::Waker>>::h4752e56ae582bfbf + 1528 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::hc986b2eb312dff71 + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h97c40c1047033a8a + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h7b87bb9eefedcc3d + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::hbd4063e44ffb97c4 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<core::task::wake::Waker,alloc::alloc::Global>>::hf1c61adc8fe7d6ef + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::haf03a52328a3d045 + 1578 ┊ 0.03% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryView<Chil,Fal,Rndr> as tachys::view::Render<Rndr>>::rebuild::hd99239fa1a5639eb + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h71fad5706e85f271 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::hb33459442bba35b5 + 388 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::ErrorBoundaryView<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::h68e5e96a9f14a88c + 319 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h1c97a73617b9ba81 + 234 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::h3eb988df712f0516 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>)>::h0e0cf3bfd9a9019c + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>>::haf9a951bc775fb8a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},)>::h2ac682f21f2e407e + 1578 ┊ 0.03% ┊ ⤷ any_error::clear::h9a1b252c258af6cc + 1421 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::h6c4034ca4509f41b + 1330 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::with::hbc88a4352a9a1ab5 + 1062 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h5cf71f462692d940 + 718 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<core::cell::RefCell<T>>::with_borrow::{{closure}}::h6fa6c75411d4ceaf + 421 ┊ 0.01% ┊ ⤷ any_error::clear::{{closure}}::h8a4b0e19a1ec7a36 + 316 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h6e9eb7ac35872615 + 99 ┊ 0.00% ┊ ⤷ any_error::clear::{{closure}}::{{closure}}::hfb6996b6a041e654 + 63 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or_default::hbb10e0bc50268eba + 1540 ┊ 0.03% ┊ ⤷ <once_cell::sync::Lazy<T,F> as core::ops::deref::Deref>::deref::hb016d9025eb5c648 + 1483 ┊ 0.03% ┊ ⤷ once_cell::sync::Lazy<T,F>::force::h12132f8f59d1dd1e + 1410 ┊ 0.03% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_init::h5d2cabfec0138766 + 1285 ┊ 0.03% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_try_init::h45576ea61251de02 + 408 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::get_unchecked::h40a226e14ca183f0 + 351 ┊ 0.01% ┊ ⤷ once_cell::imp::OnceCell<T>::get_unchecked::hecc6d542a96a1f1a + 134 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h78ac795083420338 + 45 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_unchecked::h22ad1e7c4bc627bc + 213 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::initialize::h3c27f1ac225e28ee + 112 ┊ 0.00% ┊ ⤷ once_cell::sync::OnceCell<T>::get::h7e20a4a2a7c2cdb0 + 107 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::is_initialized::hd4ef38fab3f04968 + 49 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h633c3cf25f458b08 + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h14250c2a222edd51 + 1528 ┊ 0.03% ┊ ⤷ futures_util::future::future::FutureExt::now_or_never::hd0274dec14ae0c16 + 979 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>>::hd56002f2fd72be13 + 861 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>)>::h0d19fb8bb336d8fe + 654 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>>::haf609d9db23c8b8b + 601 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),(),tachys::renderer::dom::Dom>>>::he27709f5f4155517 + 516 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),(),tachys::renderer::dom::Dom>>::hd72d992bc0256a11 + 463 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>)>::h6015a9c34aaa5775 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::h2006c983ad476209 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::h8d63530e008c5e2b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::h0e78e868fa887edc + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::hf6808eacb423bb61 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::h9407e63456a7d8f6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>>::h6bd785a76dee1b89 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>>::hd12abc3595df515e + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>>::hadd0a54226e44c5e + 1511 ┊ 0.03% ┊ ⤷ wasm_bindgen_futures::future_to_promise::{{closure}}::hf7d60cfc6199d014 + 1068 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h830b71bceb1f4d97 + 393 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h4eeaa8757d4f7e91 + 158 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hf76121c2159af16b + 109 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::h259e0241a5c35a84 + 102 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h72db672aa776af2f + 1510 ┊ 0.03% ┊ ⤷ core::ops::function::FnOnce::call_once::hfe5d5332e9fd56bf + 1402 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h7e16f0c375fc0ba0 + 1130 ┊ 0.02% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::hd772d25d494e452e + 1053 ┊ 0.02% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h1cb2a43b9140c1ee + 760 ┊ 0.02% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h00d60370efbc9338 + 669 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::ha8e6524cc3934e52 + 578 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::cmp::PartialEq>::eq::h9caa33dc87145b71 + 116 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostError as core::cmp::PartialEq>::eq::h47b81df728a90c38 + 78 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for usize>::eq::h63d622849ba195b8 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h12a4109811103748 + 1505 ┊ 0.03% ┊ ⤷ <T as alloc::string::ToString>::to_string::h42e067802675de1e + 963 ┊ 0.02% ┊ ⤷ <gloo_net::error::Error as core::fmt::Display>::fmt::had4fcfcb19e027ec + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::h8af009fe2a0dd077 + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::h3de698dfa04d0a3d + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::h4211dc41d8bc825f + 1505 ┊ 0.03% ┊ ⤷ serde::de::SeqAccess::next_element::hf7f093d53712a419 + 1450 ┊ 0.03% ┊ ⤷ <serde_json::de::SeqAccess<R> as serde::de::SeqAccess>::next_element_seed::ha3180b9b8e0fcc80 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h2884c4a255c124e3 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h7a4074c069cb93ee + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::ha463938577db2579 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h4c42978461b1e036 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::ha8312c9e80b5d9a5 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h2e35cc88171fcb1f + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h1edc2bba596e26cb + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>>::h438e3ce3d450ded7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h30397f1469e595cc + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h59dbdb4b84e078a8 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::h2ba12122ec27c8c9 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::hf96896bd8bdb7fb6 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::h3d9464c19e9f8640 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::ha5f8d9b493439dce + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h31dc06f8509903d0 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h98f4fde296cc4085 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>>::h471476facee9b9ec + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::h1ae8386ba9318f39 + 1466 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h6dab717c6b13df21 + 647 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::hd7c22078d6a778f8 + 179 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h9ea3802c89b76a60 + 84 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::cell::RefMut<wasm_streams::writable::into_underlying_sink::Inner>,core::cell::BorrowMutError>>::h12a9da2d4ec03259 + 1452 ┊ 0.03% ┊ ⤷ <hashbrown::raw::RawIter<T> as core::iter::traits::iterator::Iterator>::next::h87da244079874b90 + 1318 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawIterRange<T>::next_impl::h2be9501e01dc9d92 + 502 ┊ 0.01% ┊ ⤷ <hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next::h7f477b47a58bb951 + 246 ┊ 0.01% ┊ ⤷ hashbrown::raw::Bucket<T>::next_n::hc5c3dab8af37a7db + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::h63161d97cfa5cbba + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h5d5c088689237f19 + 1434 ┊ 0.03% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h987f8cceedeb01e8 + 1040 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::ha846670fcfd72615 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h32d6d185ec33f63c + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<usize,ssr_modes_axum::app::PostError>>,)>+Output = core::result::Result<usize,ssr_modes_axum::app::PostError>+core::marker::Sync+core::marker::Send>>::h2b5a396f89f15723 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h8c80ea582e7f1427 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hc1531ddef621be80 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<usize,ssr_modes_axum::app::PostError>>,)>+Output = core::result::Result<usize,ssr_modes_axum::app::PostError>+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::h1bd1e2cefc617e74 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h73436f380c8b6924 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<usize,ssr_modes_axum::app::PostError>>,)>+Output = core::result::Result<usize,ssr_modes_axum::app::PostError>+core::marker::Sync+core::marker::Send>::h176f25bf73442277 + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>,)>+Output = core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>+core::marker::Sync+core::marker::Send>>::haac214a01c7f8dad + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h371df211da19f719 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h323b4c73a1d26a9c + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>,)>+Output = core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::hc8f87dde89d0b706 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h648b6d12026be229 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>,)>+Output = core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>+core::marker::Sync+core::marker::Send>::hc90fb7ed0ee51132 + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&()>,)>+Output = ()+core::marker::Sync+core::marker::Send>>::h7fad924a6c11cbdc + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h61917f02cef41dcd + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hd6876e4c3ec0c233 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&()>,)>+Output = ()+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::h915cd375ccb0dbae + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h47e47d8f16143b2b + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&()>,)>+Output = ()+core::marker::Sync+core::marker::Send>::h684c6c21b5d5a349 + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&bool>,)>+Output = bool+core::marker::Sync+core::marker::Send>>::ha071522ebe0d79d9 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hf64dd1abebdfbaeb + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h629269abeff3d94b + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&bool>,)>+Output = bool+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::h93e6c770ffe9a41a + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h3c5becbcde0b9247 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&bool>,)>+Output = bool+core::marker::Sync+core::marker::Send>::ha406d6f54ccfc615 + 1428 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<serde_qs::error::Error>::h20c505df4996a0c9 + 1185 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Error>::hd2296b55f601866e + 1132 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::repr_unpacked::Repr>::h056343f55a6cd90a + 1079 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::ErrorData<alloc::boxed::Box<std::io::error::Custom>>>::hd0ec080cf962c029 + 990 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<std::io::error::Custom>>::h997dddf6a3bcbcc2 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Custom>::h9714a8d5ac85f85a + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::heacd87ea8db02765 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hfaaabbd51e168a6e + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h47ffec958893511c + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::he36384ae70460ce9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::FromUtf8Error>::h013b848b8709126d + 1424 ┊ 0.03% ┊ ⤷ <core::marker::PhantomData<T> as serde::de::DeserializeSeed>::deserialize::h962212b0c52379d7 + 1369 ┊ 0.03% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for alloc::string::String>::deserialize::h15f85eba1fdc23f8 + 1314 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_string::h82618d71da6efb09 + 1259 ┊ 0.03% ┊ ⤷ <&mut serde_json::de::Deserializer<R> as serde::de::Deserializer>::deserialize_str::h15bd0033013e0db3 + 139 ┊ 0.00% ┊ ⤷ <serde::de::impls::StringVisitor as serde::de::Visitor>::visit_str::h8c94c40dd6818f16 + 64 ┊ 0.00% ┊ ⤷ serde::de::Visitor::visit_borrowed_str::h1bf5782bbbaf4dbe + 1408 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h140e68499ba7f152 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h7671b90626abc48f + 1389 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>>::hdbc40547b76b19c5 + 1336 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h5d9a1d6aed0fa755 + 1096 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h891714ed1be08615 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>,&alloc::alloc::Global>>::h63f4ec65d33af23a + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::ha2390fd3351f3091 + 336 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>::he715b651e3a8609e + 272 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<alloc::vec::Vec<core::task::wake::Waker>>>::h728b1063e0644238 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<core::task::wake::Waker>>::h99d345bb9e6f6bee + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hcf0f8325dec3070d + 1364 ┊ 0.03% ┊ ⤷ reactive_graph::graph::sets::SubscriberSet::unsubscribe::h5cebd4aa11929060 + 709 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::heb6918522cf3b0cb + 99 ┊ 0.00% ┊ ⤷ reactive_graph::graph::sets::SubscriberSet::unsubscribe::{{closure}}::hc9625269505ecf04 + 321 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::remove::hdbe5e8d35bb8d070 + 1347 ┊ 0.03% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::{{closure}}::hfbd9c09eba864d93 + 1263 ┊ 0.03% ┊ ⤷ reactive_graph::traits::With::with::hacdbdbf37a5e8d00 + 719 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h046a2bbe4b0d1c0b + 653 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::h90e2f70fa92a290c + 557 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h0de06b1d533cbca6 + 244 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h481b0b3f22b1c735 + 157 ┊ 0.00% ┊ ⤷ leptos::error_boundary::__ErrorBoundary::{{closure}}::{{closure}}::hb2714088808dd1c2 + 82 ┊ 0.00% ┊ ⤷ std::collections::hash::map::HashMap<K,V,S>::is_empty::ha02162069fc29a98 + 419 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hb51448647e40b39e + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::heb26abaec544db19 + 1315 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Track>::track::he80ca7face2d805e + 814 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h50ea8a1e349d47e2 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h90ba3329bad05470 + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::hf692b2bc98754f57 + 1315 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h427c94560894b186 + 814 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h7958a3ed6e6881c4 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h4a5e88f7c4a4238e + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::h5eb0796fe5441527 + 1286 ┊ 0.03% ┊ ⤷ <serde_json::error::ErrorCode as core::fmt::Display>::fmt::h600e3173c3f18003 + 1272 ┊ 0.03% ┊ ⤷ core::ops::function::FnOnce::call_once::hc46dd154597c8da7 + 1107 ┊ 0.02% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h38de528c340dc614 + 53 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::rebuild::h10ae79fc61c81461 + 1264 ┊ 0.03% ┊ ⤷ routing::location::Location::new::{{closure}}::h40f340cafca0a775 + 1193 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::h70d62c250f27f22e + 660 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h236002189de51a03 + 596 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::haaf15af404c72005 + 502 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::he4f2de571ccc0917 + 140 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hb776f8b826c0451c + 66 ┊ 0.00% ┊ ⤷ routing::location::Location::new::{{closure}}::{{closure}}::h4191bfe92a46aee6 + 413 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h10fe37b9b33e07c4 + 114 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::hde6de8a6895783d3 + 1264 ┊ 0.03% ┊ ⤷ routing::location::Location::new::{{closure}}::h40faee97b7a1e5a6 + 1193 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::h2dfb67e5bc4ae5f1 + 660 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h5da78b55056bc44b + 596 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hd18e9a9e63efec08 + 502 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h62104a38123f65bf + 140 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::ha308083a5410c8c9 + 66 ┊ 0.00% ┊ ⤷ routing::location::Location::new::{{closure}}::{{closure}}::h633321ba88ce555e + 413 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hcc4091383e8b505c + 114 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h26dfa62fe473767b + 1264 ┊ 0.03% ┊ ⤷ routing::location::Location::new::{{closure}}::h5db0966994741037 + 1193 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::h39e3f9905bd18292 + 660 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::h86a80757a20f87d9 + 596 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hc99d5d8f94bf684d + 502 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h43a494dde6d5c000 + 140 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::h6a0d884c8eee17b8 + 66 ┊ 0.00% ┊ ⤷ routing::location::Location::new::{{closure}}::{{closure}}::hd99f0809b80b2371 + 413 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h0842f9acb219440e + 114 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h9a488690241076c4 + 1264 ┊ 0.03% ┊ ⤷ routing::location::Location::new::{{closure}}::hf412d8a5d96077df + 1193 ┊ 0.02% ┊ ⤷ reactive_graph::traits::With::with::hf9654a03cf8c094c + 660 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::With>::try_with::ha71a27f165a23967 + 596 ┊ 0.01% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::hfae39f24af156667 + 502 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hfa25b79922cae4ba + 140 ┊ 0.00% ┊ ⤷ <T as reactive_graph::traits::WithUntracked>::try_with_untracked::{{closure}}::hd2353ab346e99625 + 66 ┊ 0.00% ┊ ⤷ routing::location::Location::new::{{closure}}::{{closure}}::h0ab876558ac08262 + 413 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h705fcfad41e8d4d4 + 114 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::h0fe0eb38250ba671 + 1233 ┊ 0.03% ┊ ⤷ core::ops::range::RangeInclusive<Idx>::contains::h5bce56d7510854b2 + 1156 ┊ 0.02% ┊ ⤷ core::ops::range::RangeBounds::contains::h0760003166347522 + 146 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeInclusive<T> as core::ops::range::RangeBounds<T>>::end_bound::h39635407604b2349 + 75 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeInclusive<T> as core::ops::range::RangeBounds<T>>::start_bound::h63c1471ba25b9419 + 1219 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::h16d1abd428dcbebf + 1054 ┊ 0.02% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h20f18caf06f26b3e + 115 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::rebuild::heab37ded91d0d853 + 1199 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::h9bb606638b9a9be5 + 1072 ┊ 0.02% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::he91a922f172f75c7 + 572 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h0647042b7a27fb71 + 1188 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::h36788ac5208d7a75 + 1047 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::hafa378098939b404 + 932 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h832873623fb1d399 + 714 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hbfca7830438146dd + 488 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h79965e3b755c45db + 396 ┊ 0.01% ┊ ⤷ <leptos::suspense_component::SuspendState<T,Rndr> as tachys::view::Mountable<Rndr>>::mount::hca71bb5e6b6cc994 + 192 ┊ 0.00% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::mount::hea13c3ba2e165d2c + 1187 ┊ 0.02% ┊ ⤷ serde::de::SeqAccess::next_element::hfc4db1e3b68a348d + 1132 ┊ 0.02% ┊ ⤷ <serde_json::de::SeqAccess<R> as serde::de::SeqAccess>::next_element_seed::ha112a7ec1b155975 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h7f156534af899c46 + 1171 ┊ 0.02% ┊ ⤷ <alloc::vec::Vec<T,A> as core::fmt::Debug>::fmt::h75c2ce21bfe4e532 + 986 ┊ 0.02% ┊ ⤷ <[T] as core::fmt::Debug>::fmt::h59a67aa5b17b5c13 + 618 ┊ 0.01% ┊ ⤷ core::fmt::builders::DebugList::entries::hdf902cd709310142 + 344 ┊ 0.01% ┊ ⤷ core::fmt::builders::DebugSet::entry::h9ef06023e8ffb44b + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h6c5e67a7e629622f + 55 ┊ 0.00% ┊ ⤷ core::fmt::builders::DebugList::finish::h620173d03d7b2b6f + 55 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::debug_list::hd0ba65bac069f49f + 1171 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h01203716ee06cdcd + 1118 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hfecf88db45cddd31 + 878 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hdd3398261ed08b99 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h23a800b3a65ac189 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hf3d50c9b1223c8fa + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h8a736612b8c1ebd0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::hc769e31fac29161f + 1171 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h1d655abb60dffdf1 + 1118 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h5ac8739cded5f2f9 + 878 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::he8cc0fac004e069f + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h61d5be9b7d926ff7 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hbc9a460b2b198717 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::hdb507f67d3451836 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h7efa61b31e55c15d + 1171 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>>>::h97886de4b140aa15 + 1118 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h7628499668f1cc44 + 878 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h00c00a0b48f8197a + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::he74c37159a0a1e6d + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h039aab08d7cdf4e3 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>>::hd2172970269159c5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>>::h0d49ef95a6ac01d0 + 1171 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>>::h5540477880bba9b0 + 1118 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h5a528e752e4675ec + 878 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hb72e7fc20d7bc551 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::hede95b9b61eaf507 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hdc0b3d2e025e389d + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>::h2b963b043250c693 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>::h2065f8de9b80a7be + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>>::ha76d0831d70deb8f + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h3b0684c98f0d29cc + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h8e0a5a41e3f7e7de + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h013a3997a6055ba7 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h1389471727746a4e + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>::h8e1649b1403d527c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>::h2e4db02b0743c258 + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>>::h8e459d634c3e5741 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hc5f4b14f5408b647 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hd8c875e9980c6ede + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h02398d7fbbf95a94 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h050545109127979b + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>::h3d034c1495476d74 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>::h6d0571157a196915 + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>>::hd757fc48c75ef8ee + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h7db5b0210b250fa2 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hf869acf05428a03c + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h8e80db7abf4e3038 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h087478269b2c4fad + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>::h61e60da6ee70c82f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>::hd2ed3eff49af6b0e + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::hc033805c1810d671 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hd1e7c5a9958c074e + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hca8fab08a0966103 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>,&alloc::alloc::Global>>::h8768069073991163 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h1bf01f1b17869b2b + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::h11b7f95847d66fa2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::h48f97c301919dd03 + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h8dabb18eced51de2 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h46dcf98dcc269fc3 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h75f78e4b83a6ea90 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>,&alloc::alloc::Global>>::hec3c0d1a8fe5ab5a + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::ha64cedfcb5cf4064 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::hb234d65a2250fed6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::h3b5b24a90c8f078a + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h2b969f7bf8617495 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h1050eb7e49226dc5 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h0a41c62b289ad21a + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::h63cc11d56ffac51f + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h53f7211e3709a7e4 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::hbabb2bc8dc3cfa81 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::hfe22d2600441b72f + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<oco::Oco<str>>>>>::h2dd3efb02a5d331a + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h04aab5a4dff15ff3 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h06b26c91d40c7a00 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<oco::Oco<str>>>,&alloc::alloc::Global>>::hd1ad9e44f1e2137e + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::he93e5193545c3385 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<oco::Oco<str>>>>::ha74b0ae8cfee6ce8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<oco::Oco<str>>>>::h71ddc86196fdd047 + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>>::hb00a447dfe55e55d + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hafcf2cba89fc9f75 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::he9edb14f5ea4a3dc + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>,&alloc::alloc::Global>>::hb9811f5f2d2e9fdc + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h5a6b25879f8f79b4 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>::h2118e5089d7d89c4 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>::h261bb99dee6da149 + 1161 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h1982c5b006cfae9b + 439 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h695f542171cc231f + 150 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h000220f99c9b66a7 + 1115 ┊ 0.02% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::mount::h29de0ace1c223ec0 + 1010 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::ha6e0251dfaed4533 + 869 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::h799d0c6bd3b09b4f + 754 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::hae63fcf2c2d98a4e + 536 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h85d4d52e373d8a75 + 310 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h22503625110d4663 + 218 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::mount::h10fde90a520b846a + 1115 ┊ 0.02% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::mount::hfbbd464aff35e835 + 1010 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::h614b22d8dbb1cb17 + 869 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::h02be3272190bbae7 + 754 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::he1827da1f782fbc7 + 536 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h718b84867a896549 + 310 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h1718c7e652a89454 + 218 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::mount::h0114e0509dcd5b43 + 1108 ┊ 0.02% ┊ ⤷ std::sync::mpmc::context::Context::with::CONTEXT::__getit::heb0564c87aa212b2 + 1028 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h8b38af56f5b5312c + 726 ┊ 0.01% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h32a05abf40142b4f + 332 ┊ 0.01% ┊ ⤷ std::sync::mpmc::context::Context::with::CONTEXT::__getit::{{closure}}::h654bb8e26b0f1e1e + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::cell::Cell<core::option::Option<std::sync::mpmc::context::Context>>>>::h5c5c6aa1f6ed4b1d + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::Cell<core::option::Option<std::sync::mpmc::context::Context>>>::h2dcf945b28011830 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<std::sync::mpmc::context::Context>>>::h28fc4f756f4062e9 + 1106 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<serde_qs::ser::QsSerializer<&mut alloc::vec::Vec<u8>>>::hfb4aba563dbc3993 + 1037 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<core::sync::atomic::AtomicBool>>::h23ad997bca68596b + 984 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h5cae1c6e520e90ac + 744 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h07299526b6f0f72c + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<core::sync::atomic::AtomicBool,&alloc::alloc::Global>>::h8b3c705ea8add121 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::he510c066aa4070c9 + 1105 ┊ 0.02% ┊ ⤷ <T as reactive_graph::traits::Track>::track::hff4e02224334f656 + 549 ┊ 0.01% ┊ ⤷ <reactive_graph::graph::source::AnySource as reactive_graph::graph::source::Source>::add_subscriber::hb7d30fb6b4ddf223 + 55 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::source::AnySource as reactive_graph::graph::source::ToAnySource>::to_any_source::h8c7b577183b2455d + 1100 ┊ 0.02% ┊ ⤷ once_cell::imp::OnceCell<T>::initialize::{{closure}}::h52b675f4dbdf5273 + 600 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_init::{{closure}}::h22670ed30ec08099 + 476 ┊ 0.01% ┊ ⤷ once_cell::sync::Lazy<T,F>::force::{{closure}}::h4dc3741f64795a45 + 139 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::take::h3d81df16f1433af9 + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h195186d70251a88c + 96 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h13e257765e56ff6d + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hcfba9684f532eac7 + 45 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_unchecked::h1185f6aaed04e3ee + 1054 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<()>>>>::hdcf2d2c204a779fc + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h5d65941234656c17 + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hb32cfe982f2262cb + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<()>>,&alloc::alloc::Global>>::h1bb4ed22328a3a67 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hf25c17e40a3bcd40 + 1054 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>::hd53056a6c6e944c6 + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hac9a8c845898c590 + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::ha9210934d56122dd + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>,&alloc::alloc::Global>>::h753404d12ea392e7 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hba5e4f4544565c91 + 1054 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>::hec80828733fa4b59 + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h2bc0f6cfc5d2e851 + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hdc452040a925e711 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>,&alloc::alloc::Global>>::he2c2981c980a4247 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h20ccec54310bd260 + 1054 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<bool>>>>::heca760c74bedf354 + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::ha46683175cc8d9bd + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hdd3244a492c4f059 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<bool>>,&alloc::alloc::Global>>::hf6bbb37a2e451d11 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h468bf55a24431f69 + 1053 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>::hc4791a9346fa9647 + 1000 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h4d944a14d94bc034 + 760 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::ha4ca6b3f62f38ec9 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>,&alloc::alloc::Global>>::hbf9b1367c966a04c + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h5ffb9d1fd94c9c15 + 1053 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>>::hec0f4297b0a666be + 1000 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h31cdfcc7038c21af + 760 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h4b3ab48d1366b87c + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>,&alloc::alloc::Global>>::h0a53f12cbaf4771a + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hd2333b23617c8af6 + 1027 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h7c91e12d8b85a62b + 305 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::hb3532dac12cb56cd + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h9a83fa1305a7d519 + 1027 ┊ 0.02% ┊ ⤷ tachys::view::any_view::insert_before_this::h045bb3e6ef211a3f + 412 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::he13a1d19edf79321 + 346 ┊ 0.01% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::insert_before_this::h8b926f341c9c7702 + 67 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<R> for ()>::insert_before_this::h8b82d8005b5ed975 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h828ea04ce5afb82d + 1008 ┊ 0.02% ┊ ⤷ <wasm_bindgen_futures::JsFuture as core::future::future::Future>::poll::h0d6dc3dc5bb230f2 + 146 ┊ 0.00% ┊ ⤷ <core::task::wake::Waker as core::clone::Clone>::clone::hb5486a207c199b87 + 116 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::Deref>::deref::h405cc949554fabd6 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::Deref>::deref::h3edbe325f30475cf + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::haf7131de298dacc1 + 38 ┊ 0.00% ┊ ⤷ core::task::wake::Context::waker::h459eb9d079f91148 + 1004 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::unmount::habfdc84a83bcfe6a + 882 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::h1eb0380cd0ad4439 + 828 ┊ 0.02% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::ha491a87be6b7166e + 628 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hf1af7a7bd58e27f8 + 420 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::{{closure}}::h49b606ba0df6e00a + 367 ┊ 0.01% ┊ ⤷ <leptos::suspense_component::SuspendState<T,Rndr> as tachys::view::Mountable<Rndr>>::unmount::h5abe913e7243c728 + 170 ┊ 0.00% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::unmount::hcadb81d6d6d167d4 + 992 ┊ 0.02% ┊ ⤷ std::sys::wasm::locks::rwlock::RwLock::write::h9dde736aac1085d2 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hf1edecd5c94eb1bd + 985 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::h305ea81e407a0d94 + 877 ┊ 0.02% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h36c1e74adbd353c1 + 605 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::he30bdc14d6e94a68 + 528 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h4026184db0395d5e + 235 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h82ac0028ee078504 + 144 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h30bf2468a371f141 + 53 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for ()>::eq::he37b377ecd5f974e + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h45e8e0f023e10f6c + 981 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::hfcc86adf8e73aa88 + 928 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h59fa9ff9152709ec + 187 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::hb4c26b65d2c9b415 + 123 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h1669cc1e368e546b + 70 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::hf70b9e6a8022faba + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::ha03d397a2419801b + 979 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h60264d492d298b4e + 926 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h95f1c3b0277ced03 + 186 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h1024ba15937ce558 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h3ae3b95b61359597 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::hbd8b41dee9e8d8dd + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::h62a0493b2884c5ce + 975 ┊ 0.02% ┊ ⤷ <serde_json::error::Error as core::fmt::Debug>::fmt::h0888cb9bb2650828 + 542 ┊ 0.01% ┊ ⤷ <T as alloc::string::ToString>::to_string::h28eceea1b179bcc6 + 971 ┊ 0.02% ┊ ⤷ leptos_meta::document_head::he4d81128e782a210 + 814 ┊ 0.02% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h37faff3a26eabe16 + 640 ┊ 0.01% ┊ ⤷ leptos_meta::document_head::{{closure}}::h4ab92ebdbda80097 + 184 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Document::Document::document_element::h7fcab8918bc4ee2a + 45 ┊ 0.00% ┊ ⤷ import wbg::__wbg_documentElement_da9c841ddb352d95 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::hc65d43f00e975e0d + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlHeadElement::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_HtmlHeadElement::HtmlHeadElement>::unchecked_from_js::hc1e0b6aa5298da12 + 967 ┊ 0.02% ┊ ⤷ <dyn core::ops::function::Fn<()>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::destroy::h1fee4f272f258c15 + 682 ┊ 0.01% ┊ ⤷ core::mem::drop::h4c07d8c9f0150f7c + 607 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::Fn<()>+Output = ()>>::h8ce9f1ddb1cecce5 + 526 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hc8b805520d1c7ccf + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hf1782b6ff212487c + 135 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h76b83cb1f9273e60 + 949 ┊ 0.02% ┊ ⤷ slotmap::basic::SlotMap<K,V>::get::h61a861ee92d43cdd + 499 ┊ 0.01% ┊ ⤷ core::option::Option<T>::filter::hd4faf2c526de7038 + 118 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::get::{{closure}}::h6c240e666c5e9aea + 233 ┊ 0.00% ┊ ⤷ core::option::Option<T>::map::h5956a33d3b208497 + 38 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::get::{{closure}}::h12ffcf0cc42bdde3 + 934 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::he50ad0ed8c876fd5 + 793 ┊ 0.02% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::h5e1c6ab6d55a7337 + 678 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h665396bddd3fa8e0 + 460 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h8487f66068f2d673 + 234 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::hbda34f55077de2df + 142 ┊ 0.00% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryViewState<Chil,Fal,Rndr> as tachys::view::Mountable<Rndr>>::mount::he3197da22a343546 + 933 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h9fd302f3051a8b33 + 933 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::{{closure}}::hfb3a47719653ac19 + 929 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::hca4545f091e9845f + 637 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::view::iterators::OptionState<tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,&str),(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::hef39af315912d215 + 568 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,&str),(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h233bb79b6623ecce + 483 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,&str),(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::hfb3dd3f675a92de1 + 345 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>)>::h7754aa0ae7c8d2b7 + 276 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::h66de2f5e6a5ea848 + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h7e65ae52f19b617b + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h98949b1127adeb66 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h15ae865b78898d9d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(web_sys::features::gen_Element::Element,&str)>::hc0e9590b7c0773d3 + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>::hf3b415667ef2e153 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>::hcd5ff481c68b7e36 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>::ha66d3000c27fe9af + 927 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hd61e104d5c54a63b + 926 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::RenderHtml<Rndr>>::hydrate::{{closure}}::h1f5c91f871fae471 + 926 ┊ 0.02% ┊ ⤷ <leptos::suspense_component::Suspend<Fut> as tachys::view::Render<Rndr>>::build::{{closure}}::hd4fc2618a646f3fb + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h79bded22018e70d2 + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::he4a05ab8eb9ce842 + 921 ┊ 0.02% ┊ ⤷ <&mut serde_qs::ser::Serializer<W> as serde::ser::Serializer>::serialize_struct::haf322b86821c8a86 + 656 ┊ 0.01% ┊ ⤷ serde_qs::ser::Serializer<W>::as_qs_serializer::ha0d2079ae73fa441 + 388 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h0acb184f2458f0fc + 74 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::new::h2f004b7e2c07f94b + 146 ┊ 0.00% ┊ ⤷ <serde_qs::ser::QsSerializer<W> as serde::ser::Serializer>::serialize_struct::hcb5fccfbbcfe8565 + 921 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Trigger>::trigger::h1c39b772f2c75fb9 + 868 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_dirty::h11ab0db716cbafef + 815 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_subscribers_check::hea3ca17b700c7d5c + 921 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Trigger>::trigger::h659eb7ad4d8b5903 + 868 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_dirty::h187237e7acaadcbb + 815 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_subscribers_check::h4380272234b22599 + 917 ┊ 0.02% ┊ ⤷ tachys::view::any_view::mount_any::hb8063521a55c9abb + 792 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::mount::h3511641fb5774c52 + 651 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::h583bf29641600e63 + 536 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h72c765f7cdfc77cb + 318 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h0d1b615deb4446f2 + 92 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::mount::{{closure}}::h13fb1277cc52479e + 912 ┊ 0.02% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::unmount::h3c3bc75b4b20d3c2 + 829 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::unmount::h48229a0dc6c54960 + 707 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::hd775e738d72f86c9 + 653 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::he49aafccaa6f6306 + 453 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::ha055eff46a1d0c9c + 245 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::{{closure}}::h1ed1f8d0641627f4 + 192 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::unmount::h248faf91ec04c4f3 + 912 ┊ 0.02% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B)>::unmount::hfefd2dbd76bbd593 + 829 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::unmount::h384c7613fff4a765 + 707 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::hb5b424552b08d508 + 653 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h1a3b2cd02af54354 + 453 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h927a8d32922b31fa + 245 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::{{closure}}::h909123c25aa58963 + 192 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherKeepAliveState<A,B,Rndr> as tachys::view::Mountable<Rndr>>::unmount::hc83f6e653dbddad2 + 906 ┊ 0.02% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hb6309e8b44b2c5f9 + 905 ┊ 0.02% ┊ ⤷ core::result::Result<T,E>::map_err::h94d300d916948de0 + 253 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h983109079a10fe48 + 87 ┊ 0.00% ┊ ⤷ <serde_qs::error::Error as core::convert::From<alloc::string::FromUtf8Error>>::from::h4b060a87f76ab626 + 901 ┊ 0.02% ┊ ⤷ std::sync::mpmc::waker::current_thread_id::DUMMY::__getit::h952545609b11b40b + 821 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hccaf04d23e1b887b + 508 ┊ 0.01% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::hf087be7e4923d49c + 297 ┊ 0.01% ┊ ⤷ std::sync::mpmc::waker::current_thread_id::DUMMY::__getit::{{closure}}::hba31238de567dda1 + 899 ┊ 0.02% ┊ ⤷ <server_fn::error::ServerFnErrorErr<E> as core::fmt::Debug>::fmt::hf4bfb7b20a3e5f9f + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::h0bbb6407372a1f3c + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::hb15df1ad8b6af3c3 + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::hce2e544d56a7b585 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h489bd9b6afe44fbd + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::h427f1c9d1b860edd + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::h1dfaa83d487eea30 + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::h34bd8c80dae3fa2d + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6d74be1e1ca7ae26 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h3dc748fe9fc32978 + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::he85e2b135a856aa7 + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::hb87e049a57b80e6f + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::hf13ed51922aaeb24 + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::he03bff41b907c451 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7dcd57fb1d0a807b + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::he4da1110f93e2f96 + 899 ┊ 0.02% ┊ ⤷ tachys::renderer::Renderer::create_element::hd95e28854b004ad8 + 834 ┊ 0.02% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::h97ba049ec88fc0dd + 731 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h6b1e0b1915feb052 + 463 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h59ea5da967db07be + 97 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::{{closure}}::h4cbb77c6c4758bc4 + 894 ┊ 0.02% ┊ ⤷ core::option::Option<T>::map::h0a1973acdb98da02 + 197 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5b493b0bbd1dc0e8 + 885 ┊ 0.02% ┊ ⤷ <server_fn::client::browser::BrowserClient as server_fn::client::Client<CustErr>>::send::hcba629dd5a3fa270 + 739 ┊ 0.02% ┊ ⤷ send_wrapper::SendWrapper<T>::new::ha48f1c15e9226f21 + 876 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::extend_from_slice::h9f056d242404155f + 679 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::h93b53fb52bd9bd53 + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h7b4121972c4980e5 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h05ceac11aa2ede1a + 876 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::extend_from_slice::hcf2244c0d99afce8 + 679 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::h01e976a1fcc155a8 + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h283e9c79894f9f09 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h9fc6098a5c9a5acd + 865 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::h8fad670a91fa534a + 770 ┊ 0.02% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h51aef9624c631e28 + 310 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h596ce91d03bf811e + 820 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::hc0024d80bcf53986 + 693 ┊ 0.01% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h034fdf0b18e4d43c + 213 ┊ 0.00% ┊ ⤷ tachys::view::either::<impl tachys::view::RenderHtml<Rndr> for either_of::EitherOf3<A,B,C>>::hydrate::hb773158cd388db6b + 819 ┊ 0.02% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::location::h3f956efa4a2c86d0 + 621 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h94a13cbf2ab07053 + 331 ┊ 0.01% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::location::{{closure}}::hbaf8b45a1386d146 + 253 ┊ 0.01% ┊ ⤷ gloo_net::http::response::Response::url::h4d88b28f51bee5d3 + 198 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::Response::url::h19ffe48870d146ac + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_url_5f6dc4009ac5f99d + 813 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h8dc478d789e91147 + 760 ┊ 0.02% ┊ ⤷ leptos_meta::title::TitleView::el::{{closure}}::h45282ba7d018aa9d + 392 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Node::Node::remove_child::h96838f12f0e5786b + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_removeChild_96bbfefd2f5a0261 + 800 ┊ 0.02% ┊ ⤷ alloc::raw_vec::handle_reserve::h17af28f017ccebfc + 571 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h2bac14affae725ae + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::hf3bdf19baaf4f53d + 796 ┊ 0.02% ┊ ⤷ serde_json::read::SliceRead::position_of_index::haa3d08379c534bdf + 252 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h98e7d7e02add4877 + 138 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index::h9392d119c837fe43 + 782 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::hb0c849c412f2e3c5 + 596 ┊ 0.01% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h7a874bb01ff835dd + 782 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::hcb673e08b824328c + 596 ┊ 0.01% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::had09c7f8fcedbd7f + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h2aa4f004c2b57cc6 + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h402ecb24c21824d3 + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hf60814a7503fab1d + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h873ab86a39a33764 + 756 ┊ 0.02% ┊ ⤷ core::str::converts::from_utf8::h1d8752563d759f2e + 752 ┊ 0.02% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::unmount::h98f61c5186255ff8 + 630 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::h0d2ecb44482c54f1 + 576 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::h55a09d6ba6bcc3ed + 376 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h17c652495151d624 + 168 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::{{closure}}::hb56aa1438388cc14 + 115 ┊ 0.00% ┊ ⤷ <leptos::error_boundary::ErrorBoundaryViewState<Chil,Fal,Rndr> as tachys::view::Mountable<Rndr>>::unmount::h5c9b8fce1f4c24b6 + 745 ┊ 0.02% ┊ ⤷ core::sync::atomic::AtomicBool::load::h78dde17d87154169 + 626 ┊ 0.01% ┊ ⤷ core::sync::atomic::atomic_load::haed9dfb7a0a6e83d + 744 ┊ 0.02% ┊ ⤷ tachys::view::any_view::unmount_any::hf8f96e5a30b2d9d6 + 637 ┊ 0.01% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as tachys::view::Mountable<R>>::unmount::h3e4c8b600631dbdd + 515 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::h9898dc4439fd56e5 + 461 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::with_value_mut::hbfd2f55d11d3686d + 261 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hc99b09964797ce54 + 53 ┊ 0.00% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Mountable<R> for reactive_graph::effect::render_effect::RenderEffect<M>>::unmount::{{closure}}::h65444a48c168273f + 743 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T>::new::h2c3dfe104fd846dc + 728 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::end_seq::h200390f719614c49 + 90 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::option::Option<u8>,serde_json::error::Error>>::hcf6198e773f4f6f9 + 725 ┊ 0.01% ┊ ⤷ futures_util::future::future::FutureExt::now_or_never::h07a774abd5fc3016 + 136 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>>::h703de1ab015fe446 + 724 ┊ 0.01% ┊ ⤷ alloc::string::String::from_utf8::h885f65e3d529b3fc + 722 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::hc593aa6a912cb286 + 720 ┊ 0.01% ┊ ⤷ core::cmp::PartialEq::ne::h97edcb1e679f96a3 + 632 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq>::eq::hc40dd8754f3e29f4 + 555 ┊ 0.01% ┊ ⤷ alloc::vec::partial_eq::<impl core::cmp::PartialEq<alloc::vec::Vec<U,A2>> for alloc::vec::Vec<T,A1>>::eq::h1c067de3d7e65f70 + 233 ┊ 0.00% ┊ ⤷ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::h1c182d2b2305a332 + 718 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hda2807fd0139d6e2 + 623 ┊ 0.01% ┊ ⤷ <T as tachys::view::any_view::IntoAny<R>>::into_any::{{closure}}::h7ff549a0b6cc1a73 + 183 ┊ 0.00% ┊ ⤷ tachys::view::either::<impl tachys::view::Render<Rndr> for either_of::EitherOf3<A,B,C>>::build::hcf49c873cda01bb5 + 717 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::fix_position::hfc2d5dcb2d77133b + 637 ┊ 0.01% ┊ ⤷ serde_json::error::Error::fix_position::h07fc4c796ccf966d + 66 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::fix_position::{{closure}}::h6f6aec6414e78830 + 714 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),any_error::ErrorId>>::hdf538cbb58e3d320 + 600 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>)>::h131b0262b268cfd3 + 328 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>>::h8db7f7f42d5df3c8 + 275 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<((web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>)),(),tachys::renderer::dom::Dom>>::h38571be56cb9623b + 205 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<((web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>),(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>))>::h1595346f74086d5b + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(web_sys::features::gen_Element::Element,core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>)>::h0c95e7bcbc9bf1ec + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::title::TitleViewState>::haebe82dfb8869354 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>>::hc95d1e8ecf1210ba + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hc7f7a41cff07527d + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hf3efa4cd8580342d + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hdbcbe7748642b5e3 + 699 ┊ 0.01% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::h7782405db5dd4942 + 458 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h67afbba9c1c2a3ca + 131 ┊ 0.00% ┊ ⤷ <core::option::Option<V> as tachys::html::attribute::value::AttributeValue<R>>::build::{{closure}}::h1cf1a8ac8f3a249d + 696 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::h9e2204c642cf5091 + 694 ┊ 0.01% ┊ ⤷ alloc::boxed::Box<dyn core::any::Any,A>::downcast::hd60a67bed7b39d49 + 694 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::channel::Receiver>::he748efbabc944459 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<reactive_graph::channel::Inner>>::h62074b240dc54f1b + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::ha6b14cbc3b111b65 + 693 ┊ 0.01% ┊ ⤷ alloc::boxed::Box<dyn core::any::Any,A>::downcast::hcb1224bdfd66f3b9 + 693 ┊ 0.01% ┊ ⤷ alloc::boxed::Box<dyn core::any::Any,A>::downcast::hef903dc20f8e9afa + 693 ┊ 0.01% ┊ ⤷ alloc::boxed::Box<dyn core::any::Any,A>::downcast::hf61d1e9580d1daab + 689 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<either_of::EitherOf3<(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>),(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>),(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>)>>::h9c5f14ccfe67a7c3 + 276 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>)>::h88dc12622dddcdcb + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h5c82b68b21288e10 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h75e0e9c9509da6ba + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h0c8afb14d9c84e41 + 276 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>)>::hf7263cfcce07ffcf + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h171a272d5ce2cac5 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h7a5e0c551870aac5 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h0c6f55cf2a7dd612 + 686 ┊ 0.01% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::take_box::hc02e61e16bd9aabd + 263 ┊ 0.01% ┊ ⤷ alloc::alloc::exchange_malloc::hdb23298e81692353 + 682 ┊ 0.01% ┊ ⤷ tachys::view::any_view::insert_before_this::h0d7711f311d9660e + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::hfa55da55b59e4214 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h4a15eea1e18beb4a + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h837828e0d487076a + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::hff3838abad4f207b + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h68621622ecd3af66 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h4c25c44befa3ca95 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h250b2ba98b3ebaf5 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::hc737595019a15d26 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hf8422230ba45f61c + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h73468d0a857b48cd + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h95792f7eaf93cc55 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h163738c049b4f4a4 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h3e29441f1bf168cb + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h4d1d57107c1a661f + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h1b8ac4a6dc0caa8f + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::hde52754ae5c62dec + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h98a2fcdb4078df09 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h64183874f072ff6a + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hcc7b439083fae5c8 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h33c3a278029f46f9 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h89141848a987f121 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h58982016dbf7a833 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hc93c1738f1bb0fba + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h96168959d12079e7 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h7d7f0db28513c739 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h5784679f7abf101d + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hd3c26a61f1b1c83b + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::hb97cdb75a37c690a + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h217b13f598ebb0dc + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hb5a612bd26d21f42 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h24cdb9333051b5fb + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h9c14f6aefd5f5df9 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::ha695db0e89fd7832 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h0b46d6ddae809c3e + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hff7bda6b621db67a + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h9b0c4b27c4bf7ecc + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h63383a08df288a9c + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hbc936b259dc0bd0c + 676 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::fix_insert_slot::h09fc28217be62347 + 670 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::find_insert_slot_in_group::hb002cf168e8fdba4 + 661 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Display>::fmt::h931d710ca4c3ea8d + 577 ┊ 0.01% ┊ ⤷ <gloo_utils::errors::JsError as core::fmt::Display>::fmt::hde31b3588ea1f81b + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h245a3efd57d3c214 + 648 ┊ 0.01% ┊ ⤷ core::hash::BuildHasher::hash_one::h8077b1be8a9073a9 + 466 ┊ 0.01% ┊ ⤷ core::hash::impls::<impl core::hash::Hash for &T>::hash::h6deadf1c68ae8ab1 + 397 ┊ 0.01% ┊ ⤷ <any_error::ErrorId as core::hash::Hash>::hash::he42eb011e3d04054 + 335 ┊ 0.01% ┊ ⤷ core::hash::impls::<impl core::hash::Hash for usize>::hash::ha89bb94b247f427b + 266 ┊ 0.01% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::write_usize::h75e63046882b3563 + 204 ┊ 0.00% ┊ ⤷ rustc_hash::FxHasher::add_to_hash::h6949aaeb0304f10a + 45 ┊ 0.00% ┊ ⤷ <usize as core::ops::bit::BitXor>::bitxor::h2025ca5953345b7f + 49 ┊ 0.00% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::finish::h574e5397c4f4cb94 + 646 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h599ffbe980bf05ab + 644 ┊ 0.01% ┊ ⤷ core::mem::take::h27127684f19f4905 + 18 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h143f8618da2c3dbe + 644 ┊ 0.01% ┊ ⤷ core::mem::take::hd1879d16ab1548ba + 18 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h5b66963f38ba8c7d + 644 ┊ 0.01% ┊ ⤷ core::mem::take::he498c066fa907650 + 18 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h902c2ffb9bd485ff + 644 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h8ffec6cd21760efb + 567 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hf1d24eeaba9a3db9 + 274 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hac2ff33e7378659f + 183 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h932765673cb005c0 + 92 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for bool>::eq::h0e4ed18a550b1ebe + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>>::habe69b706c457e27 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h28cb43af4620a66c + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>::h8f7214a89c8404d3 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::he6cfc5baf24c5b83 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::hcb1dd68665ae6b8c + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h3d553f1ce6c8dc5f + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h7fbf031fa57bd217 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h7411abbf8edc2f40 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h15de96b9de53ef2d + 639 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h02613a6df0d436da + 388 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hc6c021c8c57d27af + 318 ┊ 0.01% ┊ ⤷ serde_json::error::Error::io::h73e8f84d969f8333 + 636 ┊ 0.01% ┊ ⤷ std::sys::wasm::locks::rwlock::RwLock::write::he5a1835f67b8fca2 + 633 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hfd872d5be2661811 + 631 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<[tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>]>::h9f7ffdc0a152ac85 + 463 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::h3dd27476ce6403e3 + 393 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>)>::h1831d0bedc0f5fcd + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::hfc57a66fe24a338a + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>)>::h44491434f2b02cac + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::hc4488c5adf4235a4 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(web_sys::features::gen_Element::Element,alloc::string::String)>::ha690360934af6f4e + 624 ┊ 0.01% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeStruct>::serialize_field::h726924dfa21fcd9b + 540 ┊ 0.01% ┊ ⤷ serde::ser::SerializeMap::serialize_entry::h5ba632203114c8d0 + 370 ┊ 0.01% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeMap>::serialize_value::h3a56b4d717ba5b67 + 623 ┊ 0.01% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::h3af745ce7146a1f0 + 622 ┊ 0.01% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeMap>::serialize_key::ha32c4a112742ec4e + 157 ┊ 0.00% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for str>::serialize::he27bb70a7113b90f + 82 ┊ 0.00% ┊ ⤷ <serde_json::ser::MapKeySerializer<W,F> as serde::ser::Serializer>::serialize_str::hc72936b0dbf9260a + 619 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h2ae0ab8ec7f4df48 + 564 ┊ 0.01% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::{{closure}}::h7f581ce2ad22d2ba + 349 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h32f16b20dd7dffdc + 301 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::h45dd5b3510fee0b3 + 191 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hc3b729326cc27fa2 + 69 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::hd20fb4397c69b38b + 55 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::h07da88bf78f0bcee + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h3ca650938fc71a2e + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h43b1cf3756ebfb61 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hbd98deae671b05d2 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h640d72b5adc39be9 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h51c9a25b1e2609e1 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hcf13942ce02b3af2 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::ha9af0ec7db68a253 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h447ae4e327c84651 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h34c7c353ca40460a + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hb1dca4d34d6aedd2 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h0cabead45c78f2b2 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h442aeccc268924b9 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h3ec5f7f606d995aa + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h37df681e94ef37be + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::he191fe7d9c9a645b + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h8a15e69918164169 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h48746969a1b74bc8 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::haf5936c54ef5e587 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hb2dcc4b5d2c6b156 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h8b45876dc5112faa + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h489545498447a502 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h8c708ad6dddbe76b + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h0ba7bc5ac44f1bff + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hfe9293b11f737e91 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h6c394d3b53e7e0c2 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h82af879a3496fb29 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h55c7af2799c06695 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h9e305f774fd54560 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hbc54be6b6a53814b + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h858123289b6cef7f + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::he38fcde57100342e + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h0a888184d43d5366 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hca0fc9a48d3f1baa + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h81be2096f4d1d0ac + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h7758d25796ee7328 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h95f646df07e6969e + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hd22704904b5650e2 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hfa0de7ca16acd990 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hffadbc5e6c775812 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hd24fe20c3c197aa4 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hd43eb4fc26e86ad6 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h0065a114aa91762b + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hcd6ba765c6e74405 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h1cf9edad08959ea8 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h21c3ee62a705bd4a + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h21d1de5a1e7bd506 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h53e2e568df136149 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h8c7e3fcbbc4719e3 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hfc6265657e6400cf + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hcb788a08f5669f01 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hedfdbe4fe46dc173 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h793a190dfb441d8e + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hf3ebc830017ee3b0 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hef29bdc1ef9a1805 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h95dd58d217b48cb1 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h335846b5ea175c02 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hd93d811ba8e27b04 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hdedbdf04d14d5232 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h0acdf4896baeb9cb + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hb31f6b33f309c857 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h60af89d2d67564bb + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hb83b284af62bad07 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h56452de5e9adcd7f + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h5c75337fb081da4c + 614 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<server_fn::request::browser::AbortOnDrop>>::h608d4a459ac0a5cd + 499 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<server_fn::request::browser::AbortOnDrop>::h5c25a863a413f551 + 441 ┊ 0.01% ┊ ⤷ <server_fn::request::browser::AbortOnDrop as core::ops::drop::Drop>::drop::haf03e6bcab0d4a18 + 115 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortController::AbortController::abort::h71540b7e36ad32ec + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_abort_2aa7521d5690750e + 614 ┊ 0.01% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_struct::hf47f2b1f1e3d0502 + 502 ┊ 0.01% ┊ ⤷ <&mut serde_json::ser::Serializer<W,F> as serde::ser::Serializer>::serialize_map::he675b8d354ae1da0 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h0de24eb4c1a847d2 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h7a1c0079aed4e932 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h81239f1e89a52d6e + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h84b14cb438756943 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h8a39ad60b5a1b20b + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::build::{{closure}}::h9cc5859dee9a20fa + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::h1080a32036fb930d + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::h3b8106dd0bc53676 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::h5b67814577ba5d8d + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::hc6972674e65d8feb + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::hcc60f69f02cb6728 + 602 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<R> for F>::hydrate::{{closure}}::hde91b104512a3896 + 598 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::h802b37f6cb133a4b + 587 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::iter::h4412e871408e9460 + 585 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::extend_from_slice::hcb80e716bece8b86 + 388 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::h0ce6bb4f2cf115f7 + 583 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_initial<ssr_modes_axum::app::list_post_metadata::{{closure}},leptos_server::resource::ArcResource<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_encoding<(),ssr_modes_axum::app::list_post_metadata::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}}>::{{closure}}>::{{closure}}>::h3a0b3f3658401766 + 583 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_initial<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},leptos_server::resource::ArcResource<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_encoding<core::result::Result<usize,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::__Post::{{closure}}::{{closure}},ssr_modes_axum::app::__Post::{{closure}},ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::{{closure}}>::h3b14890bca57187d + 572 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::hdeae43277b3331a8 + 571 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<leptos::error_boundary::Errors>>::h7c91a61befb0c14a + 262 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<leptos::error_boundary::Errors>>>::hb1e7d15f47896f93 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<leptos::error_boundary::Errors>>::h3c69b3bd183abbb6 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h654ef5b572fe9173 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h84a60415fbf3e072 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h521ddebc39a50ee1 + 571 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<routing::location::Url>>::h36f8492dc3409d2b + 262 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<routing::location::Url>>>::hbd36a398efefb3ef + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<routing::location::Url>>::h7fb3dbe7d1d2f6a5 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h34446a5122f69bca + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::hac0a498c608f3fce + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h9c7f8fe98b15ebcc + 569 ┊ 0.01% ┊ ⤷ core::str::<impl str>::starts_with::h77b15f30574d72c5 + 474 ┊ 0.01% ┊ ⤷ <&str as core::str::pattern::Pattern>::is_prefix_of::h7441f11e04e66b51 + 379 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::starts_with::h37fab076dbd332f3 + 565 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h3a0d701ab28f4f87 + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h6baa886e2abf3e7b + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h809f87091d6d1b47 + 551 ┊ 0.01% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::Render<R> for core::result::Result<T,E>>::build::hd09e5822f9120d86 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::he05df39d8ad8fffb + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h87c3fa8f07f810e0 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::hdbc68b4afc39ed36 + 542 ┊ 0.01% ┊ ⤷ <T as alloc::string::ToString>::to_string::h764d964c2e19eb86 + 539 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::h0b50ec16c48a0b56 + 539 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::h59c47a052358598e + 538 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::hb1e779d83c5780b0 + 532 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h3a83e0c8b6a70c65 + 453 ┊ 0.01% ┊ ⤷ alloc::string::String::push::hb42258980191d07b + 528 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::hcec4b338bee8e1c6 + 445 ┊ 0.01% ┊ ⤷ <any_error::Error as core::convert::From<T>>::from::h95fe5343d615a345 + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hf09c9c783ee35b38 + 526 ┊ 0.01% ┊ ⤷ js_sys::decode_uri::h0a43555af9d06e46 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h7f41d74cbefe53c4 + 39 ┊ 0.00% ┊ ⤷ import wbg::__wbg_decodeURI_34e1afc7326c927c + 525 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h55463919c1299cfc + 472 ┊ 0.01% ┊ ⤷ <leptos::children::ViewFnOnce as core::convert::From<F>>::from::{{closure}}::h465395e481d72b97 + 186 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfdf144dd2ec108bd + 99 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::h029d59a0c9e522e7 + 525 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hf8e8fd0f249c34c2 + 472 ┊ 0.01% ┊ ⤷ <leptos::children::ViewFnOnce as core::convert::From<F>>::from::{{closure}}::h2564a1ec4149d3a6 + 186 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h7d2ed012afeb7849 + 99 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::h76e0f71de1d274ae + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::h258b7173f3b3c515 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::ha1e8a5219c54bced + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::h702982179bef5269 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h0e68e900cdf20a10 + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::h05f79ea9348e3807 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::hc6710b466356b7c2 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h36983bdb7a1c2c11 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h24a8453ca3051172 + 515 ┊ 0.01% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::write_async::h82362a2b08dc6186 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn core::future::future::Future+Output = alloc::string::String+core::marker::Sync+core::marker::Send>>>::hfe8969b3b9c27e0a + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::future::future::Future+Output = alloc::string::String+core::marker::Sync+core::marker::Send>>::h13a3f5501bf3ee7a + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h3d6208dea1db2d86 + 514 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hf9b3ba5c65c6cf51 + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h25c9312fbf69c9f5 + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6bb2a2b2bd67bdc4 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h1a32a109f0e8d8b9 + 511 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::h18c1793ff2ee8b8a + 511 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::h7b633bb2689c5f92 + 511 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h0513115698150c4a + 454 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Mapped<Inner,U> as core::ops::deref::Deref>::deref::h2d9da69aa6676c0e + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::he35fc26a2a864500 + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h8fc027ba550002c6 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h655a89536269b089 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hceaebcb52e158451 + 511 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h272da1269697904e + 454 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Mapped<Inner,U> as core::ops::deref::Deref>::deref::h9990c1698dd25667 + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h255cba55fbc03ee5 + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h7c513613e4594872 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hb3158c051bbf4bf0 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h103d9416852768fe + 509 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_ident::h23b0a24b7d161775 + 504 ┊ 0.01% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::Render<R> for F>::build::{{closure}}::hee88c1c3277ace12 + 504 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::peek_error::h8ed93dafb84e150d + 386 ┊ 0.01% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::peek_position::hd11e23e8ca590fbd + 303 ┊ 0.01% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::peek_position::h25dc451ff39f4668 + 132 ┊ 0.00% ┊ ⤷ core::cmp::min::h2e51396ba8811c1d + 66 ┊ 0.00% ┊ ⤷ core::cmp::Ord::min::h69e4a9be67153c6d + 503 ┊ 0.01% ┊ ⤷ <serde_json::error::Error as core::fmt::Display>::fmt::hafc67a98e031f175 + 419 ┊ 0.01% ┊ ⤷ <serde_json::error::ErrorImpl as core::fmt::Display>::fmt::h890a166da01db885 + 502 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::ha41f951b5f6fada4 + 502 ┊ 0.01% ┊ ⤷ <hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next::ha2f54250d0089a2a + 497 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::ha413daf313336187 + 440 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h18fb8d01224bc4a5 + 383 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h415dcdc0bb240bb5 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::heea6c9ed561c3c9a + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h4a5b1208d0ea3805 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h47e100d0a962a3f0 + 497 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::hb669030d5dec1fe7 + 440 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h29bc0a63d1022e2b + 383 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h56e09568c1268a2d + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::ha239a36698c81af8 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h06ae639458c19e20 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hc8eafda0a29a65bb + 493 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h43af387ba4ad5c5c + 493 ┊ 0.01% ┊ ⤷ alloc::vec::in_place_collect::needs_realloc::h723db464d53e76a7 + 493 ┊ 0.01% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::try_into_string::he02c6ab67a188c16 + 402 ┊ 0.01% ┊ ⤷ send_wrapper::SendWrapper<T>::new::hb8d45b4a1c45ccb9 + 492 ┊ 0.01% ┊ ⤷ alloc::vec::in_place_collect::needs_realloc::hc172f55e7eb3b5a4 + 490 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hd478bc76aea11e54 + 399 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq>::eq::hff91276b8af16ee7 + 322 ┊ 0.01% ┊ ⤷ alloc::vec::partial_eq::<impl core::cmp::PartialEq<alloc::vec::Vec<U,A2>> for alloc::vec::Vec<T,A1>>::eq::hf190e8e62954c4fc + 482 ┊ 0.01% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::hd66703cdbbe482f7 + 122 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h14d5375c16820d0d + 479 ┊ 0.01% ┊ ⤷ <wasm_bindgen::JsValue as core::fmt::Debug>::fmt::h8b13ae0add974238 + 205 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::as_debug_string::h012491fbdca01f14 + 30 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_debug_string + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::h39981aa0ede161ca + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::hc9a02bbd422025dc + 470 ┊ 0.01% ┊ ⤷ tachys::view::strings::<impl tachys::view::Render<R> for alloc::string::String>::rebuild::h2cdcb10158bb0ae4 + 91 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&mut B> for &A>::ne::hfb3aac76296b52b6 + 470 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::h42b614b8ea748180 + 152 ┊ 0.00% ┊ ⤷ leptos::suspense_component::FutureViewExt::wait::h4887ad27df5b85da + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::h53652866e3598fb3 + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::h76c34fcdc1688744 + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::ha684d585feffd51d + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::hfb8bcb3a5133dc77 + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::h8f362ca7c8c57f9a + 469 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_check::hcaae11a642695778 + 469 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::hfb62cb3b187f9cac + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h928e4e1acd9434e3 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hd6599b4b613750b2 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hd18126b691750a70 + 469 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::hb6ad82b8d9917d15 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h898fc98b359d78c6 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hfc58ce0e164da06f + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hfae689f429fcc041 + 461 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h5091c871bc88c1f6 + 62 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::he91ff3739324eba5 + 461 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h704a161190375010 + 384 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hea6223a091754f4a + 91 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h41fe027367865b2e + 461 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::hac55cf36fce75ce2 + 384 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hdba16016c19e236f + 91 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h548afef021a06ec6 + 460 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h428a8bf527d202fb + 407 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::ha1ac41a7aeb67f7a + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,alloc::alloc::Global>>::h35479747e08a0141 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h60bf4128ba957cb7 + 460 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::hb9cc270043eef401 + 407 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::h4b40afd7c16e7d92 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>,alloc::alloc::Global>>::h94b32a65c5e4d202 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::ha96dd54228e4cd16 + 456 ┊ 0.01% ┊ ⤷ <reactive_graph::graph::subscriber::AnySubscriber as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::hc70a890d0f71c91e + 453 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h474eddd6406f93ca + 376 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::he97bf68593ed5369 + 78 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for usize>::eq::ha2c64a7fb4e5f7e5 + 451 ┊ 0.01% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::create_placeholder::h0e0bb220978c87f0 + 339 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Document::Document::create_comment::h8c65a43e9c7668c8 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Comment::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Comment::Comment>::from_abi::h66c95c18a2c3be69 + 43 ┊ 0.00% ┊ ⤷ import wbg::__wbg_createComment_354ccab4fdc521ee + 449 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTable<T,A>::reserve_rehash::{{closure}}::h61ad956c60d67933 + 89 ┊ 0.00% ┊ ⤷ hashbrown::map::make_hasher::{{closure}}::h575ccc5e67c8b8b9 + 448 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::MemoInner<T>::new::haea1ed53c4579b46 + 445 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B,C,D)>::mount::hfbea756960d8fc26 + 241 ┊ 0.00% ┊ ⤷ <leptos_meta::RegisteredMetaTagState<E,At,Ch> as tachys::view::Mountable<tachys::renderer::dom::Dom>>::mount::h4bdbd31214678f35 + 90 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::hf9bebce2702ed738 + 43 ┊ 0.00% ┊ ⤷ <leptos_meta::title::TitleViewState as tachys::view::Mountable<tachys::renderer::dom::Dom>>::mount::h0c42fe73f347decd + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb2b5f096e12eb5ed + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hdcf3ef8d1e3b95f5 + 441 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h6ade1ae457a13997 + 386 ┊ 0.01% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::{{closure}}::h1b60ff128890534b + 171 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5883e92eac764816 + 123 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::h40b53271d7aa3097 + 55 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::h4b58fd13725dda52 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>>::hec1ae5c9c454135b + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::any::Any+core::marker::Send>>::h03145ae613302b15 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hb88dae9162584793 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}>::h708d88040915f6c3 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::Fn<(web_sys::features::gen_Event::Event,)>+Output = core::result::Result<(),wasm_bindgen::JsValue>>>::hf92e4f3c2e54a17b + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h1052899a0cf8abdd + 435 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<<server_fn::client::browser::BrowserClient as server_fn::client::Client<server_fn::error::NoCustomError>>::send::{{closure}}>>::hc9a535d2ec55aa5b + 373 ┊ 0.01% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::h0046d574747657f1 + 211 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::he186c1c21ef09aba + 158 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<server_fn::client::browser::BrowserClient as server_fn::client::Client<server_fn::error::NoCustomError>>::send::{{closure}}>::h33562e616d69b1a9 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::hea3e56b950622306 + 435 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<<server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<server_fn::error::NoCustomError>>::try_into_string::{{closure}}>>::h2c9aef8fd2ea0eb9 + 373 ┊ 0.01% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::h1a62717973b47c5f + 200 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::h68f0ec255b366d1b + 147 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<server_fn::error::NoCustomError>>::try_into_string::{{closure}}>::h55ae942ec6231181 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::heae4850b7f287a0b + 428 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::h656aa7b52a70b1c6 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::ha43a4d934d34afcc + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::ha02e79430bb9e98b + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h9984a20083dd723f + 425 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Display>::fmt::h372efc6812bf527f + 341 ┊ 0.01% ┊ ⤷ <server_fn::error::NoCustomError as core::fmt::Display>::fmt::hc1a067b84163f34b + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::he20396f51ea3ea17 + 422 ┊ 0.01% ┊ ⤷ js_sys::Function::call1::hff1e6eafe3ff4415 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_call_b3ca7c6051f9bec1 + 419 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::h84e68fbf444dc9c5 + 366 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>)>::ha5b5796c367f219a + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>>::h03b83c029e357ff2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(alloc::string::String,&str)>::h0a0a7b1f18786a5d + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,)>::h3a7709c15237f507 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>>::hffb7eebce3767f68 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>>::hbe8b7b84542943d5 + 417 ┊ 0.01% ┊ ⤷ <url::parser::ParseError as core::fmt::Debug>::fmt::h6c902fa379245e74 + 416 ┊ 0.01% ┊ ⤷ tachys::view::any_view::mount_any::hd8089a8272a4370b + 291 ┊ 0.01% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::mount::h4e49759405741f1d + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_mut::h64d4e8eb25adbc57 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_mut::hee8a0aac13339f3e + 412 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_mut::h7b915a2a23809971 + 412 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_mut::h98314297106c2443 + 407 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::end_map::hca15b26f893d4fad + 398 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h56d47fdd51fbf673 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h5553301280d72d49 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h58df9c439481f9da + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<alloc::vec::Vec<core::task::wake::Waker>>>::hfd6e1b00a1abee3e + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h86ed63718c63474d + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<()>>>::h70e341b604bf1d6e + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hdafc91f4c8eae75e + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h0f2597032822e608 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::heefba38092b3e5bf + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>::hee40706b55d35ff0 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hd3148b97a272302e + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::hf0c8890cb08f401e + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h9e3c8ad761c07397 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>::hd542b0c89aacdaec + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h3e9af41826c9f550 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h7a5977328aba9ee1 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h41fdee9872b414e5 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::h022e32009fcaf394 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::haecc72bc76b4d3d3 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::hb6a23a2ce3e68e85 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h933d8b0bf2f18c3b + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>::h111d9e09ee854b4f + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h8354e5cfc1765bbc + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>::h26d4db75b1b2d8a7 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h7461f66b62cd2e72 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>::h4b61c84c027392f4 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h1daa6c6b59cb7c88 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<bool>>>::h0b1245b2bbd59321 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h189e37e98b8cf075 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>::ha3796ea30e967ae4 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hd590ef5eefecfffc + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>::hfd3956bd044784a2 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hc5545618496bae01 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<leptos::error_boundary::Errors>>::he9b6eb0a3c6df360 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hb1b9f75de9b5974f + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::hcdd82ce5466234c1 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h0224a37666a1d456 + 396 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_whitespace::h8b3ebc661eb76756 + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h5d249c1bd87cba9c + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<()>>>::h78eed96688dabb53 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h6bb8b5dd4f229a2a + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hc96fb5dd4ed99505 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<()>>>>::hfdca9b0814b17918 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::h004770a70c61107f + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h67c0d788cda203f3 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h1415134244eb448c + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>::hd4f0f92b9cb1d8e8 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::hfe18043c590aa413 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h4a7bcfb62a73baad + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::he4f0f97462e2bb91 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::h1524cd9dfd4635b4 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::h7e9814490cae187b + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::hcf4fc52f2f7b9f83 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hd2fa8ba64e27cdfe + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h697bd8b201192f27 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<gloo_net::http::response::Response>>::h25fc0f7549ac4113 + 332 ┊ 0.01% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::hf983cd20770e52c1 + 159 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::h5c7cffaba89e66e3 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::response::Response>::h9d1e5f3bb7e5336c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_Response::Response>::hba12fb68ef54d321 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h9cb13298311fc89a + 388 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha5e976a341b1c705 + 383 ┊ 0.01% ┊ ⤷ tachys::view::any_view::mount_any::hf11818b5f65ee63a + 258 ┊ 0.01% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::mount::h63db8eba81db7507 + 383 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>>>>::he88bb562238ad620 + 330 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>>>::hea32818a507454c6 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hd01d36693c001d1d + 383 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}>>>>::hb3d3b8200b0f20d4 + 330 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}>>>::h74dc6ffcc7cbcf9f + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hd5ccc5492f94c1b0 + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h556536094b922401 + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h1a61436e1c16ed1c + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hb9b7027cf7a59900 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h50e05fde446cb242 + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::h6d17b564cd73b65a + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h857048b63e5562ba + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::ha6a547a470899f58 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h5673b882077d94e5 + 380 ┊ 0.01% ┊ ⤷ <leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}::h9c0081403303c656 + 378 ┊ 0.01% ┊ ⤷ tachys::view::error_boundary::<impl tachys::view::Render<R> for core::result::Result<T,E>>::build::h0436051a1da2abad + 378 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow::hcc11150c68b3297e + 378 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>::h604eae5e7170daa6 + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>::h04f574d288376be3 + 140 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::params::ParamsError>::hf4b00be261d692a8 + 376 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find_or_find_insert_slot::{{closure}}::h0e5c3f649c26dc2e + 376 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find_or_find_insert_slot::{{closure}}::h0fbc56f8fe74dcdf + 376 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find::{{closure}}::h20de5bdbfa69be9d + 371 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::h0393a56c78c4113d + 370 ┊ 0.01% ┊ ⤷ tachys::oco::<impl tachys::html::attribute::value::AttributeValue<R> for oco::Oco<str>>::rebuild::hbfb806c7e55a6f6e + 88 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::h2ae4c0f8c64ad9c3 + 368 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h6d0096f99fecdf50 + 368 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h8bc71f2ae9cc38c3 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::h3978d87d501f7e7d + 366 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::parse_object_colon::hba764eab448849b0 + 362 ┊ 0.01% ┊ ⤷ reactive_graph::computed::async_derived::ScopedFuture<Fut>::new::hb12be5e9b8d63bb6 + 362 ┊ 0.01% ┊ ⤷ reactive_graph::computed::async_derived::ScopedFuture<Fut>::new::hdc9c1e4a7cdbed08 + 362 ┊ 0.01% ┊ ⤷ core::mem::take::h5161cf62ec8ceb06 + 18 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::hf88b297d6ed10b4d + 361 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h4f4084ae55760e5b + 242 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::h025d4c4ed8ffc56f + 168 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as core::ops::drop::Drop>::drop::h58ad6a7a5a574e3c + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h1e18f16a86e5f12a + 360 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::hfa57f6ccb7573227 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hc80ef02f9ce01348 + 360 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h56909748aafc6162 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h31b6dfbfc0f3e202 + 357 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<server_fn::request::browser::RequestInner>>::h776eda685361e97f + 295 ┊ 0.01% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::h5d14d5319e4084aa + 122 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::h3baff7a702d5467c + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::request::browser::RequestInner>::h381f4931b8c04797 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h918d8b1787198d0d + 356 ┊ 0.01% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::next::h23ad8877825e94c1 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h56afdd0cb597e53a + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hb5fb15a13bfddfa2 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h77f52aa934d102d3 + 355 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>::hf61d390dae014d40 + 276 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::h0a4d99c0d71905e0 + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>::hfb274bcee4f75fc0 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>::h825eb2a4a9a1851f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>::h88062aed890eb0d5 + 354 ┊ 0.01% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::next_id::h2eb2fafb55bafe37 + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_add::hfddbebbec342e652 + 353 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Node::Node::clone_node::h0cfb55635910c0ef + 39 ┊ 0.00% ┊ ⤷ import wbg::__wbg_cloneNode_e19c313ea20d5d1d + 346 ┊ 0.01% ┊ ⤷ send_wrapper::SendWrapper<T>::valid::h019950d048d4e99a + 114 ┊ 0.00% ┊ ⤷ std::thread::Thread::id::ha6ede8ff56e89232 + 94 ┊ 0.00% ┊ ⤷ <std::thread::ThreadId as core::cmp::PartialEq>::eq::h0442a03024981bdd + 346 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h559edf6c047c0e0a + 262 ┊ 0.01% ┊ ⤷ <core::num::error::IntErrorKind as core::fmt::Debug>::fmt::h9053475bf58a334f + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h368ae8cf48f6156d + 343 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>>>::h29803912373cd26e + 228 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>>::ha3bdb371069873cd + 153 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as core::ops::drop::Drop>::drop::hee403d30b699d4e0 + 343 ┊ 0.01% ┊ ⤷ hashbrown::map::equivalent_key::{{closure}}::h1d672f3779d4a9f8 + 259 ┊ 0.01% ┊ ⤷ <Q as hashbrown::Equivalent<K>>::equivalent::h5e320f7b73492bdd + 78 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::cmp::PartialEq>::eq::h266afe5975a22ea2 + 31 ┊ 0.00% ┊ ⤷ <T as core::borrow::Borrow<T>>::borrow::hf871d550f1ff93f2 + 343 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Display>::fmt::hb5f20b2ed94c0778 + 259 ┊ 0.01% ┊ ⤷ <alloc::borrow::Cow<B> as core::fmt::Display>::fmt::h96c7ad16ef41d6c2 + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h03b1b55fd7f1ac2b + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb8e8cfd51e0b3ac8 + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hf0dda0266e62810d + 340 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h4c5c8459c54b168c + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::hfb63642f7110a770 + 338 ┊ 0.01% ┊ ⤷ <serde_json::error::Error as serde::de::Error>::invalid_type::hb536e3db76de8d4d + 336 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::hb04882606c1e6f49 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>>::had0fb40a5990bb2b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>>::h29b79eba0cffab73 + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::h13910f29fa62b73a + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::h6232f7b1597a2de5 + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::he0982deb1367212d + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::h9c8a76763b216d48 + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::h0520919e9e58d539 + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_subscribers_check::h93c55449e4019e29 + 332 ┊ 0.01% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::mark_subscribers_check::h37d80a2dae64c919 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h0336f3c92f473ad3 + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::hfce8e40b0e075e2e + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::hfc152c3021dd1f7a + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h4aed5c077b85be04 + 328 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h686e2fa6162f9d13 + 327 ┊ 0.01% ┊ ⤷ core::option::Option<T>::take::hfae449796347fd0f + 327 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::hdb1c3ccdb5e10642 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h30b1cb96cb33aaf6 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h5e806bd01510b542 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h961283ebbb72f6fc + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::hc42c2cbbec5883ee + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::hcd7d4b99169dd899 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h5796be0efc28e7ec + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h7caad5e4da24a7ed + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h477752b4954673dc + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h5ab44d535df17bb4 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h4b5cf2727b438005 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hfdd30308a62b8cd7 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h58c92a64d4be1845 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hbfe1757f4d37e2e9 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h5c4f389a912eaa7b + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h4847e52474d48257 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h5c93b9319adfda42 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hf9fc011e83dc2565 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h881fee702bf77b63 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h008de353dcbd0ffb + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::ha0e23b4754cf1911 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h9dec06b4496cef3d + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::ha84c3258943ee930 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h8b3161f30a77c2a6 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hb9f7285a9f1bb22b + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h912240cb6ab34800 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hbeebb9bced673954 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hfa965b0cf92ed27e + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hf6d7ace2ccffe473 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h23d1420ca8782dda + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::ha9b0ab4eb9e433d2 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::he9985c3b20bb25bf + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hea4bd4d0a0860c2b + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h4325ea7886cd9265 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hd7bd0ee0891c043f + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h295ffa5253914da7 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h003afcb8f88862c2 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h2b8331844740318e + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h72794eff15c3222f + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hc43394c5104ae055 + 314 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h4b2b7534e66f7ca0 + 230 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::fmt::Debug>::fmt::h4e987c9aeb4d3394 + 310 ┊ 0.01% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::Render<Rndr>>::build::h61dbc13544b76f7e + 308 ┊ 0.01% ┊ ⤷ std::panicking::begin_panic::h9ee3623fe55c60b3 + 206 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::h9e40f557a1f9fe9c + 175 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic::{{closure}}::hc58d3452a7ecd098 + 307 ┊ 0.01% ┊ ⤷ serde::de::Error::invalid_length::h2133d8bdfa9a11b1 + 307 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h8f7e8d301b16f924 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::h0ccbdc576803483e + 306 ┊ 0.01% ┊ ⤷ serde::__private::de::missing_field::hfb99fd3bf569e830 + 214 ┊ 0.00% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for alloc::string::String>::deserialize::h199e6be4577ab262 + 150 ┊ 0.00% ┊ ⤷ <serde::__private::de::missing_field::MissingFieldDeserializer<E> as serde::de::Deserializer>::deserialize_string::hb48dd6262ead094f + 86 ┊ 0.00% ┊ ⤷ <serde::__private::de::missing_field::MissingFieldDeserializer<E> as serde::de::Deserializer>::deserialize_any::h9f7c82f10a831da0 + 305 ┊ 0.01% ┊ ⤷ std::sync::poison::Flag::guard::he92e3fae01cf743f + 305 ┊ 0.01% ┊ ⤷ std::sync::poison::Flag::guard::h501d6cf50fd00b64 + 304 ┊ 0.01% ┊ ⤷ <gloo_net::http::query::QueryParams as core::fmt::Display>::fmt::h767351bc65d8cdbe + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_UrlSearchParams::UrlSearchParams as core::ops::deref::Deref>::deref::h9e4008299cfb8b0f + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h788fa1324596428d + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h7d6633480ecb4a60 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::ha64a00f6b67aec56 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for u8>::fmt::h0bd2fd43ef1bf421 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h1dfcc7f8bc764928 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for u8>::fmt::hcc30f42ca52bdc86 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h135703fa237836db + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h0a8001219402f485 + 303 ┊ 0.01% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h39bd749cad75ea79 + 303 ┊ 0.01% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h83b88601141c5a17 + 303 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h85c2a5d62ef40848 + 303 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h48e851c66b69059c + 219 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::fmt::Debug>::fmt::h777020612277e511 + 303 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hf59bacd3593ce203 + 219 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::fmt::Debug>::fmt::hbaf13e43488acfb4 + 302 ┊ 0.01% ┊ ⤷ serde::__private::de::missing_field::ha8a0d56518321cd4 + 210 ┊ 0.00% ┊ ⤷ serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::h0fbe3dd06301902b + 146 ┊ 0.00% ┊ ⤷ <serde::__private::de::missing_field::MissingFieldDeserializer<E> as serde::de::Deserializer>::deserialize_u64::h569e42929df3b086 + 82 ┊ 0.00% ┊ ⤷ <serde::__private::de::missing_field::MissingFieldDeserializer<E> as serde::de::Deserializer>::deserialize_any::h7b316b74b952798f + 299 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get::h3ba6d5d09f8da873 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h2f9c3fb345808515 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::he4675e94ce2c5970 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h916907ab8f4f5cdb + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hbbfcd665413bce83 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hafc39035ccd8452c + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hba0368686a9e77de + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h7d0923c2b1599ad2 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h4f6f1466dba466bb + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hafe2d610e8b0c5fa + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h4e49db2cedf26709 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h8b45ecb674e03beb + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hab798cfe781c051e + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h98c18e6c69465d9a + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h48cf86cc531ca219 + 293 ┊ 0.01% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::hc7d12818b57f170d + 152 ┊ 0.00% ┊ ⤷ leptos::suspense_component::FutureViewExt::wait::haab75af1672a7319 + 292 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Display>::fmt::h2a8b3bdfd036f18f + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::hf11da0749c06250d + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::ha6b6b48912b64f30 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h028c3b205b40e8ff + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h6a588b7e09c6aa0b + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h4a1ddc7c99c7386e + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h4df3d06a56210a48 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h966b01ba426fabcc + 290 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h36665ca21cd7ab4c + 289 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::h90d66a502133b15b + 289 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::hc69e0b793efc4a25 + 288 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h05037bfea9f106c3 + 207 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h5951c5bab261880a + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h4911d400c7f78735 + 288 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h449b3652be811448 + 207 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h882d071c745adf33 + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hb535fc79f27d5657 + 288 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h4e6c4231355c050e + 207 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::hfbcfb27906d11759 + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h24d5e545b84b12cb + 288 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h5ffbb478b627e574 + 207 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h5103ef4b3f7ce779 + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h35180dbccbac8cad + 288 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h68774de108f09a6d + 207 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::{{closure}}::h8ca72a769024d87b + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hb53b8445a6c6076e + 287 ┊ 0.01% ┊ ⤷ <tachys::view::iterators::VecState<T,R> as tachys::view::Mountable<R>>::mount::he6b551a96962a316 + 287 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<hydration_context::hydrate::HydrateSharedContext>::hbd583b56b2391020 + 223 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::sync::Lazy<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::h3dfb040c437ab489 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::sync::OnceCell<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::hafb030aeaf7bb695 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::OnceCell<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::h221af2a4cfac4d32 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>>::h2d6d728d7cd1a017 + 286 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>::ha56d9b18470210fe + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>::h68345c24258daf1d + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>::h53d583b484916838 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>::h1483f35ba6e1c78f + 286 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>::hb2bd970d1a9bc5cd + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>::hbcd929eb6b05fdd2 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>::h3a8fc40873295ddf + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>::h03d7d5495e530ca5 + 285 ┊ 0.01% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<Rndr> for (A,B,C,D)>::unmount::h408ff14deb1e46dc + 125 ┊ 0.00% ┊ ⤷ <leptos_meta::RegisteredMetaTagState<E,At,Ch> as tachys::view::Mountable<tachys::renderer::dom::Dom>>::unmount::hcd5e92e6ad4ce7ca + 72 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::hb99cc32cdc3bed35 + 29 ┊ 0.00% ┊ ⤷ <leptos_meta::title::TitleViewState as tachys::view::Mountable<tachys::renderer::dom::Dom>>::unmount::hde266fb9bc1dd354 + 282 ┊ 0.01% ┊ ⤷ tachys::oco::<impl tachys::html::attribute::value::AttributeValue<R> for oco::Oco<str>>::hydrate::h4f32e5cd1f87926e + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h321a420c2218ff8d + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h706ddbbe437ef9e0 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h85abbb730f0dcdf4 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::hb5d37a0cdbb274db + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h877e83df3bb487f3 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::hb34d34dd57f49f0c + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hbae3733fb001e969 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h554b2915ba8c89d1 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hc7c004e49fe231cf + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h82e1efdd7ead8692 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hf3986755f6ca8734 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h03e6db8cca521073 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hf773dc78b38b28c6 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::hd2a993112e4b7f08 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hf99f9fbbeed4d9a8 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::hf3e5a19a59bdaf38 + 281 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hfc5dcc7fb69bd685 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::{{closure}}::h69730b5d010419a4 + 279 ┊ 0.01% ┊ ⤷ core::num::<impl core::str::traits::FromStr for u32>::from_str::hcbd91b9b241fd7d4 + 278 ┊ 0.01% ┊ ⤷ hashbrown::raw::Bucket<T>::to_base_index::hdbc1d31bd073d716 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h157334e7ece3e36d + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h174854ae608e3b0c + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h1ebce11822b6416f + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h2845808aff2308a6 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h3d32d773528d5bd8 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h455996ecc7eff402 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h6fee13fdc9c6431d + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h903934e290b488df + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h9b1b3c3cec5d218f + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::ha57270b606668034 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hc3a402feed80147f + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hd2b3d7bd5303391b + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hdf66023c218c6407 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hf04ec80163ac24d5 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h379e29044c1fde3e + 278 ┊ 0.01% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::status::h1167d3754373d0b1 + 205 ┊ 0.00% ┊ ⤷ gloo_net::http::response::Response::status::hbdfb867d842b48b3 + 148 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::Response::status::h054c4e61c6866205 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_status_61a01141acd3cf74 + 272 ┊ 0.01% ┊ ⤷ serde_json::read::next_or_eof::h501ad3c089daee06 + 272 ┊ 0.01% ┊ ⤷ tachys::view::any_view::unmount_any::haebacd4f890c7069 + 165 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::unmount::h53f8fbc1168cd03a + 272 ┊ 0.01% ┊ ⤷ tachys::view::any_view::unmount_any::h38ad5555d95ed324 + 165 ┊ 0.00% ┊ ⤷ <tachys::view::either::EitherOf3State<A,B,C,Rndr> as tachys::view::Mountable<Rndr>>::unmount::ha95d88b219079f9b + 271 ┊ 0.01% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::remove::h08004d5eef5146a4 + 116 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::Element::remove::hc027bd34fdd39c75 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_remove_49b0a5925a04b955 + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::hdad7e40fc483c998 + 31 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Element::Element>::unchecked_from_js_ref::h169d46d06f131a02 + 269 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::new::hd1f9c1285081f66e + 268 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap::h1a6e02fe79982c7a + 268 ┊ 0.01% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::peek::h8e5b1192b9149e4a + 268 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::hcf44bc8e66b96435 + 268 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h3a9ea7582d8b446f + 267 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}>::h70cff9f1c6a5b71f + 267 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::hee60071698fdb912 + 267 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::{{closure}}>::h5e8948da5fd35e98 + 266 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h57122df6972cb2f0 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h1f6c8e98cb4fe7ce + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9cd6cec10af51e02 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hb2e27f7ea9a57879 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h365a34e15e092334 + 265 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<either_of::EitherOf3<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>>),(tachys::html::element::HtmlElement<tachys::html::element::elements::Em,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>),(tachys::html::element::HtmlElement<tachys::html::element::elements::Em,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>)>>::he395cf3c29181f98 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::HtmlElement<tachys::html::element::elements::Em,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>)>::h094ec64f2d92c6a8 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>>)>::h785da11151e4ce89 + 265 ┊ 0.01% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeStruct>::end::h2bbcb0f819077aa3 + 199 ┊ 0.00% ┊ ⤷ <serde_json::ser::Compound<W,F> as serde::ser::SerializeMap>::end::h22fe903b40da53cc + 263 ┊ 0.01% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::forget_allocation_drop_remaining::h7c1d131a0f74e660 + 263 ┊ 0.01% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::forget_allocation_drop_remaining::h88596808155a003d + 263 ┊ 0.01% ┊ ⤷ alloc::alloc::exchange_malloc::h45741846837035e9 + 262 ┊ 0.01% ┊ ⤷ serde_json::error::Error::syntax::hd58781d2c6450bf8 + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::build::{{closure}}>::{{closure}}>::h2eb1ada19f7a263d + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h60253876270ca4a3 + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::build::{{closure}}>::{{closure}}>::h6123f203486ddfcb + 259 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h8af1e94ba3fc7188 + 259 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h2d0420f8126e44a2 + 259 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hdbe3a535fbd9f9bd + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::{{closure}}>::h42196e77508593b5 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::h5ce239a057037d1b + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::h75623257fabc966b + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::h8a7e739054ce0e66 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::h94890dad4f225322 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::ha51f476548c00640 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::hd0800ae2f0442fe7 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h44780845769c615f + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h58d9076722cc6358 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h83641c8b38e0e7b1 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::ha285bc80fb11d3e5 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::hac07f40a0b822d2d + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::new_with_value<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::hea901756c9a01b2d + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::build::{{closure}}>::{{closure}}>::hdf8f4687a18599e3 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::he6443176da6a6db1 + 258 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::{{closure}}>::ha89aaba8b183b0e6 + 258 ┊ 0.01% ┊ ⤷ gloo_net::http::response::Response::headers::hac1a3082f0eece0a + 149 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::Response::headers::hd39d869b8ea69786 + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_headers_9620bfada380764a + 45 ┊ 0.00% ┊ ⤷ gloo_net::http::headers::Headers::from_raw::hf703da366f458424 + 256 ┊ 0.01% ┊ ⤷ serde_json::de::Deserializer<R>::end::h16027d2c5fbff297 + 256 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hd47a958cd82fe7fb + 172 ┊ 0.00% ┊ ⤷ <core::str::error::Utf8Error as core::fmt::Debug>::fmt::hcb7b4cb665252be1 + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h2b9ff9a485150ad8 + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h68b472039e971b14 + 254 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h925938d5dc45b74c + 254 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::h3e24396cee9e3bc4 + 253 ┊ 0.01% ┊ ⤷ routing::components::__Routes::{{closure}}::h9285f8d87d966c40 + 94 ┊ 0.00% ┊ ⤷ routing::location::Url::path::he246cbd502a03c04 + 251 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h5f92d861972c99d1 + 187 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::heb000923d0fcab8b + 134 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>::h0f5f5414c92d4bd5 + 250 ┊ 0.01% ┊ ⤷ alloc::fmt::format::hf57b3920de541c71 + 250 ┊ 0.01% ┊ ⤷ alloc::fmt::format::h36f7c529be602609 + 250 ┊ 0.01% ┊ ⤷ alloc::fmt::format::hda24a0acf2e84b3b + 250 ┊ 0.01% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::mount::h6fe6978b84000c5a + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::h2abe7a2e9af849f4 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::ha5c151b5caa845f3 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::ha5560865b51e9a65 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<ssr_modes_axum::app::PostMetadata>>::hb8255a8b915623ba + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h0039a72e146de217 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::he1f4beeadb497300 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hcfaeebee9b7bef09 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<core::task::wake::Waker>>::h49b1e040d3ef2111 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h9102c88e5c8f9667 + 249 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::cell::Ref<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::hbd24f26912c48470 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::BorrowRef>::h3e0a92288f5e3765 + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRef as core::ops::drop::Drop>::drop::h792614e91fe7b853 + 248 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<server_fn::error::ServerFnError>::h5597a117880b7f87 + 248 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<server_fn::error::ServerFnErrorErr>::h1c9004a8332e96fd + 242 ┊ 0.00% ┊ ⤷ tachys::view::strings::<impl tachys::view::RenderHtml<R> for alloc::string::String>::hydrate::h6ad87cc9f23fb644 + 240 ┊ 0.00% ┊ ⤷ tachys::renderer::Renderer::mount_before::h3d3babd772f1dddf + 238 ┊ 0.00% ┊ ⤷ tachys::oco::<impl tachys::html::attribute::value::AttributeValue<R> for oco::Oco<str>>::build::h81e1be074d6b3d7f + 237 ┊ 0.00% ┊ ⤷ alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::h240d7038bf9f23d2 + 234 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<()>>>::hcc3ade9a721e9ee4 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<()>>>::h6b2ed9f48afba30a + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<()>>::hc5165a28cd1fc0ca + 234 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::h3427c1af01fad8de + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::hfcf31b81e677e893 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>::he8c2a60b54404160 + 234 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<bool>>>::he2fca9fbed2b8a5e + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<bool>>>::h30796c0e4fa53e8e + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<bool>>::h3ec14c7c515f3735 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hdd0d94856122489a + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::h7715cd2855eaedbf + 228 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::had4670e31dfb927d + 144 ┊ 0.00% ┊ ⤷ <core::panic::location::Location as core::fmt::Display>::fmt::h8c5a5de8ad20de4b + 227 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostError as core::fmt::Display>::fmt::heeeb7cdeaeb182b8 + 226 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::cmp::PartialEq for str>::eq::h2de973944b6a5b29 + 226 ┊ 0.00% ┊ ⤷ <core::num::error::ParseIntError as core::error::Error>::description::h112ea74ab3ea9201 + 226 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::hydrate<_>::{{closure}}>::h7295f70e65b31e5e + 139 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::hc2aedb9152b3c485 + 225 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>>::hf2b309e5b33a798e + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>::heae2df7e9c286e2c + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::ha7e5e609b91b42f9 + 222 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::build::{{closure}}>::{{closure}}>::h8ebcffb02e4f2479 + 222 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::build::{{closure}}>::{{closure}}>::h3620143cdb097d47 + 222 ┊ 0.00% ┊ ⤷ serde::de::Error::missing_field::h0cdddc60541d4a3d + 222 ┊ 0.00% ┊ ⤷ serde::de::Error::duplicate_field::h4aabbf01de75fc47 + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h0c20c4a1b41b95e9 + 222 ┊ 0.00% ┊ ⤷ hashbrown::raw::Bucket<T>::from_base_index::hc50d09751fd98fa8 + 222 ┊ 0.00% ┊ ⤷ serde_json::read::StrRead::new::hd017d1664c8b238e + 61 ┊ 0.00% ┊ ⤷ serde_json::read::SliceRead::new::h45881a76b7e53c3b + 222 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>>::h04516070f3081e73 + 137 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>::h889f18fd0411783b + 221 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}>>::h9c9d70971ee57d55 + 136 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}>::h9348ece3e667c4d3 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::hd5e6eddb8715f858 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>>::h45667e74dd515e6d + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h673842461a9852c3 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h2b6fa2433d8ce011 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h94ec05aba350d000 + 218 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::get_is_hydrating::he8741b1006e0f7de + 119 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::load::h86b514cc27cb6889 + 218 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::ha59b88dc10c9ddf8 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::h291eaf6e61c12004 + 101 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>::h9346bf791bdc8292 + 216 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::peek_or_null::he7dd278de423645b + 216 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h387bde98fc4bedd3 + 213 ┊ 0.00% ┊ ⤷ tachys::view::strings::<impl tachys::view::Render<R> for alloc::string::String>::build::h5d74aebcaba88313 + 213 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::ScopedFuture<ssr_modes_axum::app::list_post_metadata::{{closure}}>>::hcf5cee1af58811d9 + 126 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::list_post_metadata::{{closure}}>::h7569e7740e9ab292 + 212 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>::{{closure}}::{{closure}}>::h8b9134bda6989f8f + 211 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<ssr_modes_axum::app::GetPost as server_fn::ServerFn>::run_on_client_with_req::{{closure}}>::haf8497732e1f1652 + 211 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<ssr_modes_axum::app::ListPostMetadata as server_fn::ServerFn>::run_on_client_with_req::{{closure}}>::he318951e02f01266 + 211 ┊ 0.00% ┊ ⤷ serde::de::MapAccess::next_value::h1d166bfc3e4b4e22 + 156 ┊ 0.00% ┊ ⤷ <serde_json::de::MapAccess<R> as serde::de::MapAccess>::next_value_seed::hef6f2a79cede6d67 + 210 ┊ 0.00% ┊ ⤷ hashbrown::raw::Bucket<T>::drop::h39801bd6d9eb7f32 + 210 ┊ 0.00% ┊ ⤷ <tachys::view::iterators::OptionState<T,R> as tachys::view::Mountable<R>>::unmount::he32ba9fc9583cb7b + 71 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::h4e00f2d8e4356acf + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_subscribers::h0eda32e815415c98 + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_subscribers::h47b95182c9efee40 + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_subscribers::h784742b2ab30d369 + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_subscribers::hcc64aa68598be66a + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_subscribers::hda82c60b4d452dca + 208 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::clear_subscribers::h930d03b315995f92 + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h3f1793e99c09ecaa + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h079136ce411aec47 + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h3455dd6321faa28f + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h3247466a2b4c3d26 + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h59f939bdb126a827 + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Debug>::fmt::hd5733e456597cf44 + 207 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h41d4190e9768e3c5 + 207 ┊ 0.00% ┊ ⤷ serde::de::MapAccess::next_value::h33e5a7d47a99b179 + 152 ┊ 0.00% ┊ ⤷ <serde_json::de::MapAccess<R> as serde::de::MapAccess>::next_value_seed::hc72e3b4a77f1f25e + 207 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::RenderEffectState<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>::h35d5a361c72633fb + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>::hc062c0dc9082112f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::render_effect::RenderEffect<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>::hde5a72045bd40206 + 206 ┊ 0.00% ┊ ⤷ <server_fn::response::browser::BrowserResponse as server_fn::response::ClientRes<CustErr>>::has_redirect::hea5fe14bbba1b27f + 206 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}>::{{closure}}::{{closure}}>::hbd61e86f2e542952 + 206 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>::{{closure}}::{{closure}}>::h1dc4030d8b8919f3 + 206 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::he51dc8efdd070988 + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hcf126b8aed4fee9e + 206 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h095062765b7eabc1 + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h72071ead2e89af9b + 206 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h28596e0f662105e8 + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h7c4aaa2ff2b56121 + 206 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h9d957661d7df79bf + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h52433c2afd4938dc + 206 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hea560d93c691615a + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h61ed706904544a27 + 205 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}>::{{closure}}::{{closure}}>::h1d326b9aa8580294 + 205 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}>::{{closure}}::{{closure}}>::headf2710d22865a2 + 204 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h715d7fda7d6054b3 + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h0787d3c1a0ff43e0 + 204 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h2e63954c526b1eec + 106 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hce7633a9eddd85db + 201 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::Url::search::he50d92b7ac5da6a5 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_search_c68f506c44be6d1e + 201 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::error::hd1bc965f996011ed + 83 ┊ 0.00% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::position::h50838c233faff038 + 200 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostError as core::fmt::Debug>::fmt::hc32253f42c6ef3e2 + 199 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::{{closure}}>::h8ffad72847211413 + 199 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::{{closure}}>::haaeca4243355c673 + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h00e655efb0aa2d88 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h37d1fbc177c42d3a + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h15e44844b70ffcc5 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h532b9b0a23eaf076 + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h4091c2b4cc358eec + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h1a67bf36e46d52b7 + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h4973bf09553d7eee + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h92187b9a0a1735bd + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h76537a432aab0561 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::hd39470e34e395aa6 + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h8658b006bd2e7cb7 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h51db1e091deb8ca0 + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hd21f3c5434809493 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::hf23447f33b4fb81d + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h7e85105480eb4b90 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::h2efa2c3232d8244a + 197 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::clear_subscribers::h4cd4afcfa3416e28 + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::h09bf3c2b9adba452 + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::h16fb64fd72c29291 + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::h7bfe0ad58869bdb4 + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::h9eaf58243f15f5c9 + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::h5e6469b5751d1bae + 196 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::mark_dirty::hc9706efbc2fa6167 + 196 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::mount::hd2bc80d52bf11291 + 196 ┊ 0.00% ┊ ⤷ core::mem::take::h6fa8642fb06eb379 + 22 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h09102d1544896ac7 + 196 ┊ 0.00% ┊ ⤷ core::mem::take::h87d3446dd5b2892d + 22 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h10568c637b5b9eca + 196 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h8e9d5a714e61cfa4 + 97 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h2341b8a0487f6b92 + 196 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h641926496625b8c1 + 111 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h72681870d890c59f + 195 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::he075b9ba23841ab2 + 195 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::h6c3fa84d2b73c1c3 + 194 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::mount::h5da6dd533d0c3568 + 194 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::ha7906b949bba635c + 194 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::Suspend<ssr_modes_axum::app::__HomePage::{{closure}}::{{closure}}> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::h5c408206142bf11f + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h7705f79080a61072 + 192 ┊ 0.00% ┊ ⤷ core::mem::take::h666c6069a446e98e + 40 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T> as core::default::Default>::default::h6234090318ea9de2 + 192 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h008369ccc00eae73 + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h909d801cc2b463ac + 192 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h68c1622751fea53b + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h483efbcff8720439 + 192 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::he0cfee8d0a940b19 + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1286d9b6e497ffb8 + 192 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::he4e07ca6dd6074d5 + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h32cc509d9afd418d + 192 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hf8fee209e28e8c8a + 100 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hcc5e0f780c26b2ca + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::remove_subscriber::h44007bd3434f79b9 + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::remove_subscriber::h5200152ddfe1ec6c + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::remove_subscriber::h60036585a74dbb5b + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::remove_subscriber::h7dbd6f90a734727f + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::remove_subscriber::hba9efacc7c73ac46 + 191 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::remove_subscriber::h36c91798a6286226 + 190 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::new::h88a36f345dba462a + 187 ┊ 0.00% ┊ ⤷ alloc::vec::in_place_collect::write_in_place_with_drop::{{closure}}::h69e1dabdcb041c71 + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h7b05356ab664a258 + 187 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,any_error::ErrorId>>::h5ed5ee53c85bca47 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::ha6e608d2340dd4aa + 187 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::set_is_hydrating::h8991658479c75687 + 86 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::store::hf2cf4d940157ab29 + 186 ┊ 0.00% ┊ ⤷ futures_task::noop_waker::noop_waker::h9bfc06c337231b0d + 78 ┊ 0.00% ┊ ⤷ core::task::wake::Waker::from_raw::hb560daf2d7af4611 + 186 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h614cc11b8731dfdc + 93 ┊ 0.00% ┊ ⤷ <dyn serde::de::Expected as core::fmt::Display>::fmt::h8e83aa35fbd437b6 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::request::Request::send::{{closure}}>::he190001d8805350f + 185 ┊ 0.00% ┊ ⤷ routing::components::__Routes::{{closure}}::h9a0fa355747f7002 + 42 ┊ 0.00% ┊ ⤷ routing::location::Url::search_params::h00c81fd8cfe0692b + 183 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h8f47e350db540512 + 183 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h6cbeeb906a701749 + 183 ┊ 0.00% ┊ ⤷ core::error::Error::type_id::hc4d0aef985647f96 + 182 ┊ 0.00% ┊ ⤷ std::panicking::panic_count::count_is_zero::he0de581f3b51a93a + 182 ┊ 0.00% ┊ ⤷ std::panicking::panic_count::count_is_zero::hb3b43c08e0bfdffe + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h902fc6eca4f5f82d + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hc13db23f06f5c6fb + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h239afaa3ad8338d4 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hf16f48bc0e7c4521 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h16f1e1b6f3f4ef51 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h1c543cee350fd3b0 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h6b10dd5258132edf + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hc49cbfeed3a51672 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hcd60a62ca3ccb750 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hdbc744b4f2e5b9d3 + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h267641b02a85e48d + 182 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h457731a9e011cc8d + 181 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter_mut::h1edc1adb4050b195 + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hf29165fce3f7d0b6 + 181 ┊ 0.00% ┊ ⤷ core::error::Error::type_id::h1d79ff121bbd1a31 + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hadaba019e10675e3 + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h5935aab6b7ed9fc4 + 181 ┊ 0.00% ┊ ⤷ core::error::Error::type_id::he6b0a46d8eb7729f + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h77b60be1295752aa + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::h414e799c2010b009 + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::h442c7c1bf46bf7e5 + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::h59c1b0cf19cf6a17 + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::hd337b8de7a73d0ad + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::h47220c1f5b24ef5e + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::clear_sources::hf6c22201b54be24f + 180 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::clear_sources::he9f58fbecabb8779 + 180 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::remove_subscriber::h390c3a1211c43e4f + 180 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::error::Error>::h05a409ae6d13804b + 180 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter_mut::hf657538de9f6b227 + 177 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h8454af88c0439af9 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<()>>>::h5b67de1eb829d0b9 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hd13e2d935af74c89 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::h4707faf844f68d71 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h0fb95df485ca4599 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>::h646d48f79b1f5b68 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h3b24b8228c8bd149 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::hfa7e1359ecd7cf82 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hf4708ea793e59e27 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::hc8023f0bca2254c7 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hea9dcd18a1175e8b + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<bool>>>::h6118606c2c9b7713 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h048b2afb44496b9d + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>::h6372217a05829c7c + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h84d2a556e273f4f4 + 176 ┊ 0.00% ┊ ⤷ core::slice::iter::<impl core::iter::traits::collect::IntoIterator for &[T]>::into_iter::hc67b2a2a7539c596 + 174 ┊ 0.00% ┊ ⤷ <std::sync::mpsc::TryRecvError as core::fmt::Debug>::fmt::hdf1adde17227959c + 174 ┊ 0.00% ┊ ⤷ core::mem::take::hfe09e665c0a43a82 + 22 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::hb20cb815d6c646e4 + 174 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h424fa058d39b49da + 90 ┊ 0.00% ┊ ⤷ <server_fn::error::NoCustomError as core::fmt::Debug>::fmt::h54dc4dfb53b19284 + 174 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::ha96a7c0dcbe9c5ac + 90 ┊ 0.00% ┊ ⤷ <() as core::fmt::Debug>::fmt::h8c2ed70633281eb7 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_subscriber::h0a0e5b805d7b7b3e + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_subscriber::h19b80dabd18b0f22 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_subscriber::h3c17beea835b34c0 + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_subscriber::h8563d06bf1712faa + 173 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::add_subscriber::h43d4e7b8f0d16395 + 173 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_encoding<(),ssr_modes_axum::app::list_post_metadata::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}}>::{{closure}}>::h6932de8d715872e6 + 173 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_encoding<core::result::Result<usize,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::__Post::{{closure}}::{{closure}},ssr_modes_axum::app::__Post::{{closure}},ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::h85785132686f7090 + 172 ┊ 0.00% ┊ ⤷ <alloc::string::FromUtf8Error as core::fmt::Debug>::fmt::hd50a10c8846db749 + 172 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::h03db2885acb51dde + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::h8fb37a0217b4f7c8 + 171 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::mark_dirty::hfdde6ff33715fa2d + 171 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::mark_check::h31d57e8047ab606e + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::he4ce28de5207463f + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>]>::hbc1118f5c62c5040 + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>]>::he57b6b3fd1ec049b + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[core::task::wake::Waker]>::hfc94d831c9cee339 + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[ssr_modes_axum::app::PostMetadata]>::he3b1a1fdbefa37e0 + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>]>::hec5abfee7bef3b00 + 167 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h55d57a76e12f924c + 167 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h5e3473e12e3ffd3d + 167 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hab4901e1f132470e + 167 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hbad6c7b773ce1074 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h584fdd29e7667a2c + 90 ┊ 0.00% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::NoCustomError>::deserialize::__Visitor as serde::de::Visitor>::expecting::h980cdf73f4b93053 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::hc8e91dbadf96fd84 + 90 ┊ 0.00% ┊ ⤷ <server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__FieldVisitor as serde::de::Visitor>::expecting::hca5d92fcbcf6fdc9 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h0de78ac3744516d7 + 90 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__FieldVisitor as serde::de::Visitor>::expecting::h7238a3139a860df3 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h3f6588e272541df3 + 90 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__Visitor as serde::de::Visitor>::expecting::h44e2d371285c7d42 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h82552f886b5fbfa0 + 90 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__Visitor as serde::de::Visitor>::expecting::h9f1fd8318b75f58c + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h2daeeb84875decde + 90 ┊ 0.00% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for alloc::vec::Vec<T>>::deserialize::VecVisitor<T> as serde::de::Visitor>::expecting::h044f3fa3a1a3adf0 + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h52b6337cccb89e0e + 90 ┊ 0.00% ┊ ⤷ <<serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::Field as serde::de::Deserialize>::deserialize::FieldVisitor as serde::de::Visitor>::expecting::h44b6945428fe380e + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h9ed3652fcaea43d0 + 90 ┊ 0.00% ┊ ⤷ <serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::PrimitiveVisitor as serde::de::Visitor>::expecting::h59f23c8fda1bbd7c + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h8f0fc3caa1d3aaa2 + 90 ┊ 0.00% ┊ ⤷ <serde::de::impls::StringVisitor as serde::de::Visitor>::expecting::h60a49f0bf4ceedeb + 167 ┊ 0.00% ┊ ⤷ <T as serde::de::Expected>::fmt::h39606ff3f36fadd6 + 90 ┊ 0.00% ┊ ⤷ <serde::de::impls::UnitVisitor as serde::de::Visitor>::expecting::h5ab60f8f67f749ec + 166 ┊ 0.00% ┊ ⤷ std::sync::poison::Flag::done::he0a42d80c4f123eb + 166 ┊ 0.00% ┊ ⤷ std::sync::poison::Flag::done::h3f0656bf24c0247c + 166 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h0b15a1d4a689ec2d + 82 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h4757e135290f8aad + 166 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h2d713cb2b97807ad + 82 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h29a4228341fceba8 + 166 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hbb6464fa4467501b + 82 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h16d333cf991a0093 + 165 ┊ 0.00% ┊ ⤷ core::bool::<impl bool>::then_some::hefd634ceca90fd90 + 164 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::hc035a9f67c932b29 + 163 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::h56618519e116c931 + 163 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h3d870ebc5804f260 + 163 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h59b0b44bf755d4b2 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::h92ba171046d425ac + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::hb286d3876c144910 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::hdc88ab2bc1bd87b9 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::hee8d8f19170e92e7 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::h3242c48b2700b1c9 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_source::hb58512f803cc4482 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::add_source::h775b2ff0c32d20d1 + 162 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::add_subscriber::h0c82264ab99c61ce + 161 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::LowerHex for i16>::fmt::he6df4c1e1c6c5a3f + 161 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h99ded2dc75430a92 + 77 ┊ 0.00% ┊ ⤷ <bool as core::fmt::Debug>::fmt::hc8d606df9369992d + 160 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::LowerHex for i8>::fmt::h4a2396e88a64698d + 160 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::clear::h7b29a6a5e3adee85 + 159 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::UpperHex for i8>::fmt::h097e550be64b0204 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<(),reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<()>>,()>>>::hfcd453501110f59e + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<()>>,()>>::h65bd9e9ccc6e3cb9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<()>>>::h2635db31d8fdf082 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<core::result::Result<usize,ssr_modes_axum::app::PostError>,reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>,core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::h1ec407f2d6e893cb + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>,core::result::Result<usize,ssr_modes_axum::app::PostError>>>::h173471580354fb6e + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>::hc0e17fe85b841afe + 158 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or_default::h1613e4fbf652bb71 + 42 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::default::Default>::default::h08114bd3368184d4 + 158 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or_default::h16dcfe5f0dc4553e + 42 ┊ 0.00% ┊ ⤷ <hydration_context::SerializedDataId as core::default::Default>::default::hd3f65ae4900c1d21 + 156 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h56b7e76d1e23b74b + 156 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h6dceae54d1fa6af4 + 156 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::fmt::Debug>::fmt::h9b539599734cf420 + 63 ┊ 0.00% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send as core::fmt::Debug>::fmt::hdff8e20dda79b7a4 + 156 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hydrate<_>::{{closure}}>::h69abff5035800dec + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hee5c8f8bf9e30f1a + 154 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::deref::Deref>::deref::h69350f19ba835794 + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h77e98c0e02d9df67 + 152 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h08dfc89264e203a7 + 152 ┊ 0.00% ┊ ⤷ <either_of::EitherOf3<A,B,C> as routing::matching::choose_view::ChooseView<Rndr>>::choose::h1553f59dabd07434 + 21 ┊ 0.00% ┊ ⤷ <() as routing::matching::choose_view::ChooseView<R>>::choose::h76f42d0675ef465d + 150 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::valid::h0bf41865dff885c6 + 150 ┊ 0.00% ┊ ⤷ js_sys::Object::to_string::h0799c2ca20ca8793 + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_toString_c816a20ab859d0c1 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::h0dc3531c54dc89d0 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::h09f655621ad64c69 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::h9488d63fb3c0ef57 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h2297b87dc1f9b61f + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h17d46e107a756f67 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h542dcfa6e91f29cb + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h41619478633a4cd1 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h7593f7bfd804d7ce + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hdc149f6dc2cf19dd + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::he4bb9de9cb3a9169 + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h8e2c44d191c7a943 + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h8225ccd89c968855 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h4437d24819d82696 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h2bb8e630f6a149d1 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h4d28412cc2ea5dfd + 146 ┊ 0.00% ┊ ⤷ <core::task::wake::Waker as core::clone::Clone>::clone::hf755f4abba292876 + 145 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hd1a5626d44735f2b + 144 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::invoke0::ha69a7b76e319f7ec + 144 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::future::future::Future>::poll::h5e1951dea27c7fb3 + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h4cebbe50b6b1272e + 144 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::future::future::Future>::poll::hc604cf1a8511e86c + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::h6ea9bcef9096006e + 144 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h8b12690c7f0d5fda + 77 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h97e327c7f78d8599 + 142 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,server_fn::response::browser::BrowserResponse,server_fn::error::NoCustomError> for core::option::Option<ssr_modes_axum::app::Post>>::from_res::{{closure}}>::h32dc14e507b0cc72 + 142 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::codec::json::<impl server_fn::codec::FromRes<server_fn::codec::json::Json,server_fn::response::browser::BrowserResponse,server_fn::error::NoCustomError> for alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>>::from_res::{{closure}}>::h67a8302661a3958e + 142 ┊ 0.00% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::intern::h369ed0f84bcda3c4 + 50 ┊ 0.00% ┊ ⤷ wasm_bindgen::cache::intern::intern::h841190b3c9265977 + 141 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for (A,)>::hydrate::h17f4f04e0d7d9c49 + 140 ┊ 0.00% ┊ ⤷ core::cell::RefCell<T>::new::hf1707c939741edf2 + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h661e8fefc4f704fd + 140 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h5f4fcfb1961df797 + 69 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h87037418162776df + 140 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h64133cda474dc3cb + 69 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5a2bb51a913add62 + 140 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h7f0a4e5e4c0d2887 + 69 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hc4ce24e23e143590 + 140 ┊ 0.00% ┊ ⤷ futures_util::stream::stream::StreamExt::next::h9ab1cc2fe157958c + 45 ┊ 0.00% ┊ ⤷ futures_util::stream::stream::next::Next<St>::new::h88d7faa04d1279f6 + 31 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::hcdff72c8fdc6f86e + 139 ┊ 0.00% ┊ ⤷ <tachys::view::error_boundary::ResultState<T,R> as tachys::view::Mountable<R>>::unmount::h1b9a6d34ff0bad7d + 139 ┊ 0.00% ┊ ⤷ <core::num::error::ParseIntError as core::fmt::Debug>::fmt::h15ba90727f29bafc + 139 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::fmt::Debug>::fmt::h72966178f7c8e12b + 138 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as core::clone::Clone>::clone::h81ed8b496111f9dd + 138 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as core::clone::Clone>::clone::hd4ea5015f29e35e5 + 138 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::valid::h38d9e6e3a9a8997d + 138 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::valid::hf12ced31aa767eb6 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::h3d392587b1609783 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::hcdf2a2bab21c6577 + 137 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::insert_before_this::h64267289a6f81e2a + 137 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::response::Response::text::{{closure}}>::hcfd87a68ede1af59 + 136 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::had8407105353c671 + 136 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h0872cf5b3b509056 + 136 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h97d5d6183dac3c21 + 135 ┊ 0.00% ┊ ⤷ <js_sys::JsString as core::fmt::Display>::fmt::h554311e1c108d54b + 135 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::ha67721bc41c47f30 + 135 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::read_data::hef1ae0348bd2e7f2 + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h1192150abb66acd4 + 64 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h11aa99a85dce338c + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hd4042561f7990f0f + 64 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h0af6a47207d2f83d + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hd9649352f3589800 + 64 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h0fd85e9c63db5d97 + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::he12908dd273f81a9 + 64 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h13fb260a7034af6a + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::he2db447c5dbf00e6 + 64 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h842eccfd95616e9b + 134 ┊ 0.00% ┊ ⤷ alloc::sync::Weak<T,A>::as_ptr::h0db6ee08535e3417 + 134 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h191aabb5bb99abf3 + 134 ┊ 0.00% ┊ ⤷ core::fmt::builders::DebugStruct::finish::h89660c69ec90ce03 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>::hbc5c0deec5c1dea9 + 132 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::h5d889180d8fbb5d6 + 132 ┊ 0.00% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::html::element::ElementChild<Rndr,NewChild>>::child::hd8e7cfe68e75a8cb + 131 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_none::hd531e05deccfc754 + 129 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h7543f342a3e28dd5 + 129 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hd4ed2ba03a28b4b8 + 129 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h1e696949a0fca917 + 61 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h5015d8cbd7424b91 + 128 ┊ 0.00% ┊ ⤷ <&reactive_graph::graph::sets::SubscriberSet as core::iter::traits::collect::IntoIterator>::into_iter::h3c7401ea4ed57d4c + 127 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h81c306f2d9cc00e8 + 60 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hbe160a93d2ad3074 + 126 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_none::h02658adf30edcc21 + 126 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::get_post::{{closure}}>::h34fda6a6d18fae58 + 126 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<ssr_modes_axum::app::GetPost as server_fn::ServerFn>::run_on_client::{{closure}}>::h8a6fde6431af2b08 + 126 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<ssr_modes_axum::app::ListPostMetadata as server_fn::ServerFn>::run_on_client::{{closure}}>::h17dd1c29b1f7b607 + 125 ┊ 0.00% ┊ ⤷ tachys::view::any_view::mount_any::hd2e019a9fc236cb3 + 125 ┊ 0.00% ┊ ⤷ core::mem::take::h39aea6ce36bcaf2c + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h00181d2ca9a5f1b6 + 125 ┊ 0.00% ┊ ⤷ core::mem::take::hf05e3fceab69f3e5 + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h8f67611a28b787be + 124 ┊ 0.00% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::discard::hab0e421d149c5bcd + 124 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hf82904fd0b715261 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hf5b63c306fe89903 + 123 ┊ 0.00% ┊ ⤷ <core::any::TypeId as core::cmp::PartialEq>::eq::h79fc6d04fa6c8b26 + 123 ┊ 0.00% ┊ ⤷ core::mem::replace::hf29bc64a18ad3bc5 + 123 ┊ 0.00% ┊ ⤷ serde_json::read::error::h081319e51d9e79f1 + 123 ┊ 0.00% ┊ ⤷ <core::num::error::TryFromIntError as core::fmt::Debug>::fmt::hea9c0f8dc219cefd + 122 ┊ 0.00% ┊ ⤷ <any_error::Error as core::clone::Clone>::clone::hbb5856972ce79d6d + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::handle_anchor_click<<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}},<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::{{closure}}>::{{closure}}>::h77a403a426c6f87d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}>::he1eda4404d7a17c9 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for <leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::build::{{closure}}>::h3341f04e7976b6da + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::h67f689a460f933f2 + 121 ┊ 0.00% ┊ ⤷ serde_json::read::error::h58ea0c084516d713 + 121 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::peek::hcbe928b348f4d5a7 + 55 ┊ 0.00% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::peek::hcd262fecd62200f4 + 121 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::next_char::h6c6ce790a76419f9 + 55 ┊ 0.00% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::next::h37b7e315702afe34 + 120 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h8bc325878cba1368 + 120 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hfacb43cc95269dbb + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::h63c3faf0d6c07127 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>>::he90e854fce85568e + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::hc422b28ec3898c88 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>>::h4e446de577482ad6 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<ssr_modes_axum::app::PostMetadata>>::h1611084a8096f4c5 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>::h402e1f585ae8578f + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<oco::Oco<str>>>::h4c9523d7f6a2eb22 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h24fdec867d7f928e + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h3640f48a9e3619a4 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hc19ef5288c0d06d1 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hdbb204ca8ec277a5 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hde1487855998fce0 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hea9b5b0a406966b6 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hfc3c66d8a1ccea2c + 119 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h3d09bb4572714c22 + 119 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h7cc32f743f3b65bd + 118 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>>::h5a6f237ee3b6fbad + 118 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::h6ffd74c61d006220 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h1ee1be1c09892a5c + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h5f2f3b5850857f47 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h17f25665f201998b + 117 ┊ 0.00% ┊ ⤷ serde_json::de::Deserializer<R>::eat_char::h3bde5a1490fd5522 + 53 ┊ 0.00% ┊ ⤷ <serde_json::read::StrRead as serde_json::read::Read>::discard::h6869596c1781988b + 116 ┊ 0.00% ┊ ⤷ <serde_json::ser::State as core::cmp::PartialEq>::eq::h257313fda7926341 + 116 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::node::ReactiveNodeState as core::cmp::PartialEq>::eq::h71db450e69a99e1e + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::heec63ec3bb60b0ef + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h767fb6e5a0633eef + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>::hb6dedd82dba60692 + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>::h7dca80dd783cca0e + 115 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hef15542d85554e23 + 115 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_object_key::h38b12651300f38e5 + 115 ┊ 0.00% ┊ ⤷ web_sys::features::gen_console::console::error_1::h01636d411496aabe + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_error_8e3928cfb8a43e2b + 114 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::task::poll::Poll<core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>>::h05c52d5bb075cda1 + 114 ┊ 0.00% ┊ ⤷ std::thread::Thread::id::h884d02ca787a93f6 + 113 ┊ 0.00% ┊ ⤷ <tachys::view::any_view::AnyViewState<R> as tachys::view::Mountable<R>>::insert_before_this::hc342d74e5f3657ad + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::h1b816e528580d033 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::h90d4d95d609fb964 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h322fe3eb380554c0 + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::h8001a2010ff0349a + 111 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::get::hbec3fa242b52bc00 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::he6a4ffbce2ae2128 + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h6dd333cf8aa9befc + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h84a662355219b911 + 108 ┊ 0.00% ┊ ⤷ <reactive_graph::owner::Owner as core::clone::Clone>::clone::h7db3f5418d142e70 + 108 ┊ 0.00% ┊ ⤷ <reactive_graph::owner::Owner as core::clone::Clone>::clone::h6de31b2244c4c654 + 108 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hbeebe1247164c9ff + 108 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h78b5bde47346a431 + 53 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h35554b4f6f0d2706 + 108 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h92067ad978247f28 + 53 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::he4a9aa5bf3966de6 + 107 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::rebuild::hee7787a737b9672e + 107 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::sets::SourceSet as core::clone::Clone>::clone::h19232cecf7e140b9 + 107 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::sets::SubscriberSet as core::clone::Clone>::clone::h72d83d755eb26c86 + 107 ┊ 0.00% ┊ ⤷ tachys::view::any_view::unmount_any::h76b17f5d4852e886 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<leptos::error_boundary::Errors,reactive_graph::signal::guards::Plain<leptos::error_boundary::Errors>>>::h6f3c115c02ae0653 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<leptos::error_boundary::Errors>>::ha7d5eeac9bd45249 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<routing::location::Url,reactive_graph::signal::guards::Plain<routing::location::Url>>>::h8e6ac6ed15a5b965 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<routing::location::Url>>::h5f43c7c404ae59eb + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h0bf3460599ae28d3 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h0c8d2c7c105ce06b + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h0d7bf6c828e8ede0 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h3a4ff8ee50b90b9c + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h44b8c601f518a2b5 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h525e33c8707ab1a9 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h57ebec46ff64ab74 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h5c7035887b985c44 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h62e2555e2a240e8c + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h63a2509558031b47 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h66a15876ee3be9a6 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h6ba0784a7f68d04b + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h83e1fdb9c3953e89 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h975525309867a84e + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hac25d08824d5bf93 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hb6eab68b90141eb3 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hc013d708381a58f6 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hcabd7aa3cd4da7f2 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hd55f489025623171 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hd809acb9704d05a4 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hdde9974ee485fb44 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hf3a00890fdcab839 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hf551835bf6d95aa7 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hfc9a25c99d39a6cd + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h055d5a287410d6db + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h1ce2d229ce7ae641 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h69714c5d30173401 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h7de6cc93a480cee9 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h8405945a9bea6235 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h0b43e9618347135f + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h183b82223c8d867b + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h30bd65656f1430c8 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h40a11f559e40771b + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h7a5156e00b52134d + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hb220c79a988dedac + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::heba03cf28d02cc94 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hf75adf50aa09fa69 + 105 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as core::fmt::Debug>::fmt::hd39ef79d4c9296bc + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h43a6e7f31caf1262 + 104 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hd4e2c7033c669507 + 104 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hf4cda8ecfac0de78 + 51 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hab88fe4d73a317c2 + 103 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::set_len_on_drop::SetLenOnDrop>::h5a9f6a6515f1d8b0 + 50 ┊ 0.00% ┊ ⤷ <alloc::vec::set_len_on_drop::SetLenOnDrop as core::ops::drop::Drop>::drop::h896101131e16a7e0 + 102 ┊ 0.00% ┊ ⤷ serde_json::ser::Serializer<W>::new::h4a0140ee03bd5905 + 45 ┊ 0.00% ┊ ⤷ serde_json::ser::Serializer<W,F>::with_formatter::h1b94df09004ec42e + 100 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::build::h1ad3872ecb24f1f5 + 100 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::h8d5d68650a30586d + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h3b1ef15d3e535f04 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hb745f9f25b9ee3ce + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h0f251f086e02449a + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h88abbd2a4e9c9ec7 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h96ddadf11ea1edbe + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hc39242601fe4f776 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::hb699ac9831f4d272 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h0c585bf99bfb9c84 + 97 ┊ 0.00% ┊ ⤷ core::task::wake::Waker::wake::h0e7288df925728c1 + 97 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::subscriber::AnySubscriber as core::clone::Clone>::clone::he0213cbd136d1bc2 + 96 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>::hb1a2b0033dc4e561 + 96 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::arc_async_derived::ArcAsyncDerived<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>::h62d16754e1450003 + 96 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::register_error::h56ea6d2e21593125 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h3bdd2bffe10d0f22 + 95 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}::{{closure}}>::ha5952a26a0dbf20f + 94 ┊ 0.00% ┊ ⤷ <std::thread::ThreadId as core::cmp::PartialEq>::eq::h3b1e6f51457b65f2 + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::haaf9cdfb31ec52d7 + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h9797e3aa1ca8f639 + 93 ┊ 0.00% ┊ ⤷ <&str as serde::de::Expected>::fmt::ha32080f4e5bcc94b + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h8d77cb55a5e966a8 + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hdf93f6dd89ef988a + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::h1406d759d099f0d9 + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::h2c2941733312e5c7 + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::h79021e80dbe71af1 + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::h8cdbcc2806c40d1b + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::hdcea2e7b5c4a1e07 + 92 ┊ 0.00% ┊ ⤷ leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}::hff9a021de7315e2f + 92 ┊ 0.00% ┊ ⤷ <serde_json::read::SliceRead as serde_json::read::Read>::position::h37b3c6b1f5a2f38d + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h409e24981acc8689 + 90 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::h6676cfc971f3c147 + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h4eb8aa6f0a3e2b62 + 90 ┊ 0.00% ┊ ⤷ <core::alloc::layout::LayoutError as core::fmt::Debug>::fmt::h5087b320c916922c + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h60c2c372a9fb2db2 + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::hbc134f65c89f6799 + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h4d7ea4055882c23c + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::hb8e5726f9222c3d5 + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::hc381a86ce00ab7f4 + 89 ┊ 0.00% ┊ ⤷ <tachys::view::strings::StringState<R> as tachys::view::Mountable<R>>::mount::h4198d5a10c5be316 + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::h5ab7d37ca06ae885 + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::hc30ff7ea49076276 + 89 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::mount::hd24f8e1c528e6d4a + 89 ┊ 0.00% ┊ ⤷ serde::ser::impls::<impl serde::ser::Serialize for alloc::string::String>::serialize::hc65f3230d8ae5183 + 89 ┊ 0.00% ┊ ⤷ leptos_server::resource::ArcResource<T,Ser>::new_with_encoding::{{closure}}::h725af5a09693cb6d + 29 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__HomePage::{{closure}}::h99765cb97eff8964 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h27b56a1c83e3cc5c + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::hb1138d755239e098 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h84ffdf8265e22229 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h12736c35f2f769d4 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::hef6000b0277ac584 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h9ecc7f8d677aef0a + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h8fbff929193a9acb + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h98db225630ba7bb0 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::h31e9cdeff71e40fb + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>::hd2808a7e2b72c697 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::future_impls::AsyncDerivedFuture<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>::h06c132e7f0d64b74 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>>::hd2e542259d5b49d2 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>>>::h7ff1b480942621a9 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::future_impls::AsyncDerivedFuture<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>::hf9923732efc1398f + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>>::h61624f254039bd92 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::he259deda729459e0 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::h1bd45664de194aee + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::h447c9d703426b363 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::h4db9b7d83f6be5e3 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::h4fbe38fedb5b58ef + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::ha39d1a439db2eb1e + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>>::hd1d885cdb2fc2912 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<alloc::vec::Vec<core::task::wake::Waker>>>>>::h8bd3ab332ae6d38e + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>>::h9de94c2c79355c64 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hydrate<_>::{{closure}}>::hf286caf03078619c + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>::h91cc524002ae761a + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::future_impls::AsyncDerivedReadyFuture<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>::h5c203a9d8a228e3d + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::async_derived::future_impls::AsyncDerivedReadyFuture<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>::hd3206614da7a66be + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::hydrate<_>::{{closure}}>::h2fd37e863b126252 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::h2296bac7d3396cee + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::h4ab797fed14a8de6 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::h7efb839fc93403f2 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::h82beeb26acc23742 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::hc0514ed71a261863 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::build::{{closure}}>::hd497a99c563b1d04 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h15a5e4ed7fd52e3a + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h2d47de2d666ccb68 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h31cadcd6b658bab1 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h468bfdf8c8d2dd31 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h5ab37029e8d8345d + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::html::attribute::value::AttributeValue<tachys::renderer::dom::Dom> for leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::h993d9ad3982c1033 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::hydrate<_>::{{closure}}>::ha33edb6a39350955 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>::hadc636db39a44ff6 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::title::TitleView>::h7b9deacc01fa6050 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<any_error::Error>>::h7509bbe6cd0b3065 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_utils::errors::JsError>::h69c5f9a471179c9f + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(any_error::ErrorId,any_error::Error)>>::h2950dc47d09919fd + 85 ┊ 0.00% ┊ ⤷ tachys::renderer::dom::<impl tachys::view::Mountable<tachys::renderer::dom::Dom> for web_sys::features::gen_Comment::Comment>::mount::hf8e82930f0f76cd6 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hd053a11db600ba29 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h7907ca319921eec8 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h02b42df7bec49434 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h9f49be038b011858 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h11bb588e6338a7d7 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h3bbee653c8746228 + 84 ┊ 0.00% ┊ ⤷ leptos::suspense_component::__Suspense::{{closure}}::h0981900e9f53b5dc + 84 ┊ 0.00% ┊ ⤷ leptos::suspense_component::__Suspense::{{closure}}::h49d23d4452e6bc5c + 83 ┊ 0.00% ┊ ⤷ core::error::Error::cause::he84eee8261c66f33 + 83 ┊ 0.00% ┊ ⤷ core::error::Error::cause::hed7fd6157eed388b + 83 ┊ 0.00% ┊ ⤷ core::error::Error::cause::h63f77f05a6d89dde + 82 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for (A,)>::hydrate::h43dee7d9d90f421b + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::State>>::hea272ffa739418ea + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<leptos::error_boundary::Errors>>::h473fdb33ee990128 + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__HomePage::{{closure}}>::hydrate<_>::{{closure}}>::hd6fd71eb8a933869 + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<slotmap::basic::SlotMap<slotmap::DefaultKey,()>>>::h4c83dac65a3a1b97 + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}>::hydrate<_>::{{closure}}>::ha80b0b2d25276b53 + 80 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::Url>>::hee6e1e66022adf17 + 80 ┊ 0.00% ┊ ⤷ any_error::ERROR_HOOK::__getit::h090e0985371237be + 80 ┊ 0.00% ┊ ⤷ reactive_graph::owner::OWNER::__getit::h2286bbb583ee795c + 80 ┊ 0.00% ┊ ⤷ reactive_graph::owner::OWNER::__getit::h40325b2b8e374522 + 80 ┊ 0.00% ┊ ⤷ reactive_graph::owner::OWNER::__getit::hbed56f4a30886f6a + 79 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::hcfc52a8a28a1b3d6 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_AbortController::AbortController>>::h4a7978bb463126a9 + 79 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h3b600cb286a33a31 + 78 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::ops::deref::DerefMut>::deref_mut::hcae74b72a1b9c74b + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Promise>::from_abi::hbd710b081344ade5 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Headers::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Headers::Headers>::from_abi::h37d1194e4ffbbeb9 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Url::Url>::from_abi::haf0b0c93455322f3 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::JsString>::from_abi::h7b8b9a1af9c76b9e + 78 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::from_output::h15188b3827141b1b + 78 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::from_output::h181b1c1c213d2a4a + 78 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::h28b849c8242ec407 + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_object::hf7d23580d94a3f57 + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_object::h778e3e20d42c41df + 77 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::begin_object_value::h7e552b5e81b4447f + 75 ┊ 0.00% ┊ ⤷ alloc::string::String::is_empty::h73361c14469b401f + 75 ┊ 0.00% ┊ ⤷ serde_json::de::SeqAccess<R>::new::h1b838805d303b4c3 + 75 ┊ 0.00% ┊ ⤷ serde_json::de::MapAccess<R>::new::h5f11d11e1ee1674a + 73 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::Source>::add_subscriber::h777496ea0bd636fd + 73 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::Source>::add_subscriber::h92f04ec111fdaed3 + 71 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::h0a96b941ead95740 + 71 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::h39ba355b5e2c789d + 71 ┊ 0.00% ┊ ⤷ <tachys::html::element::ElementState<At,Ch,R> as tachys::view::Mountable<R>>::unmount::h649419b70e19c9ff + 71 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::rebuild::hc3b823bd67796c19 + 71 ┊ 0.00% ┊ ⤷ <&T as core::convert::AsRef<U>>::as_ref::h9e4f8a1d8db61236 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h0489e78967964112 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h1788cfc9e7ac28aa + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h2c810b8f96857348 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h2d0abd49f3d6bfc8 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h3284c7f41de7baf6 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h381d0d4c65b95350 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h5f7ef79179dfa4a8 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h7e9c3b348eac5619 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h7ff151c99a121286 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h9c96e118c63bc0de + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hb1c913831bcbe24f + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hd5a12a3d32720deb + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::he51a0144e4a6faa1 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h3e4f245164ef7803 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h29443ba6965da94d + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::ha9bdf3473f2fd659 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hbfb98489fe4879b1 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::Post>::ha9b113d1f5fff72f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::h906747bbbda5545e + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(),tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::hbffc652159de9bc9 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::strings::StringState<tachys::renderer::dom::Dom>>::h5357990f86bc5a6a + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::h4a63e0729cda5f0b + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::hdc236bfa422b3f45 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::h775758279691477a + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::either::EitherOf3State<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>>),(tachys::html::element::HtmlElement<tachys::html::element::elements::Em,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>),(tachys::html::element::HtmlElement<tachys::html::element::elements::Em,(),(&str,),tachys::renderer::dom::Dom>,leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>),tachys::renderer::dom::Dom>>::h3007572e8168acbc + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::SuspenseBoundary<_,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>>>::h03896e5e53e0d81d + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::ErrorBoundaryErrorHook>::hb2bd9349dbf682f2 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hdebf79e411c9d313 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::LocationChange>::h86ebdda8e1ee527c + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(web_sys::features::gen_Element::Element,oco::Oco<str>)>::h582d9cacb969e31f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos_meta::title::TitleView as tachys::view::Render<tachys::renderer::dom::Dom>>::build::{{closure}}>::h81b4009ff937ff2f + 69 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::hdcae89d8397658da + 68 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::hc760a78c4d72934b + 68 ┊ 0.00% ┊ ⤷ core::error::Error::source::h1234e172195f2a05 + 68 ┊ 0.00% ┊ ⤷ core::error::Error::source::h34492c5014b19a9a + 68 ┊ 0.00% ┊ ⤷ core::error::Error::source::h21f99e321badfb6e + 68 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::pending_data::h8cbc526901403eed + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hf647a2435ba2dc64 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hf5ad17952febd58a + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h3c5066b993bd7ec2 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h3796c94f0161db7b + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h3c599fb2754f9169 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h42dc1b18d67fac11 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h4d6647018901a594 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h5594dcc51b399a93 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h67e2657d841c5f9e + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hc6e38af78f2564f1 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hf35f1f73632e5782 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h0e1f9340e20ca722 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h13122d9f29bee7d8 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h892d0e165fbfd64f + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h2f9fedb82d62f2f9 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h1d88fea0187ab4dd + 67 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h1d17553b967b3c7e + 67 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::hf030b23e97732fbb + 67 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::await_data::h9ed20bca2587a3ce + 66 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h5bf92726d11c9847 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<core::result::Result<usize,ssr_modes_axum::app::PostError>>>::h2b3e46977f7a4232 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>::h77f23b402a3c3970 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<(tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,leptos_meta::title::TitleViewState,leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h5b8f9b4bdfd7476e + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<()>>::h266282acfdfa22cb + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<tachys::view::iterators::OptionState<tachys::view::error_boundary::ResultState<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),(tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::html::element::ElementState<(web_sys::features::gen_Element::Element,alloc::string::String),(tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::view::strings::StrState<tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>::h8f96e7cbf42b95e8 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<bool>>::h709e7408b2a8fad4 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<core::option::Option<reactive_graph::owner::Owner>>>::hd06d7ca8e0af9f5d + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::he855085e3a662ccd + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(any_error::ErrorId,any_error::Error)>::h357120d50d56a55e + 64 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for (A,)>::build::hab5151349e2866d3 + 64 ┊ 0.00% ┊ ⤷ <&mut T as core::convert::AsRef<U>>::as_ref::hd2b4395ca91fcc91 + 64 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::haf5e5d7e4b862c2e + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::h8deb82060321e365 + 60 ┊ 0.00% ┊ ⤷ tachys::renderer::dom::<impl tachys::view::Mountable<tachys::renderer::dom::Dom> for web_sys::features::gen_Comment::Comment>::unmount::hb1928800f706dfe3 + 59 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::strong::h8931fccfbb64afbe + 59 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::strong::h742f59e2158ca7e8 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h0c9016a18eea7f4e + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h4b1d150bce4c5306 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hf8af50188bf14445 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h4a975ebd7b975842 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h9f755ef1d531e334 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h449fac352c7f0c49 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h550841c7d385fd7f + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h7e90a130597994ad + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h7fddb8a88db8a655 + 57 ┊ 0.00% ┊ ⤷ <T as alloc::borrow::ToOwned>::to_owned::hbc9a1c7bd0624dd7 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Response::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Response::Response>::into_abi::h0359db0872d57500 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Headers::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Headers::Headers>::into_abi::h7870d7b6ad32edb8 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Url::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Url::Url>::into_abi::hf359db914bd7f0aa + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_AbortController::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_AbortController::AbortController>::into_abi::h1b7501f86c15d217 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Request::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Request::Request>::into_abi::h7cba7256a0b3fa02 + 57 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::hc5395d493c76efcc + 57 ┊ 0.00% ┊ ⤷ core::panic::location::Location::file::h6ddc45b91ef97067 + 57 ┊ 0.00% ┊ ⤷ core::panic::location::Location::file::hc9e834d5df8bc35f + 55 ┊ 0.00% ┊ ⤷ <leptos::text_prop::TextProp as core::convert::From<alloc::string::String>>::from::{{closure}}::h7373f56cb0f2d90c + 55 ┊ 0.00% ┊ ⤷ <leptos::text_prop::TextProp as core::convert::From<&str>>::from::{{closure}}::h2a4f6f6df347e9ba + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::from_utf8_unchecked::hbf19e2a5c2482c57 + 54 ┊ 0.00% ┊ ⤷ core::error::Error::description::h8dde9f8bf32b9b94 + 54 ┊ 0.00% ┊ ⤷ core::error::Error::description::hba674d291f1c296c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::__Suspense<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::{{closure}}>::h239a391caed4b889 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::h2474304596802728 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::__Suspense<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>>::{{closure}}>::h7a0fe2dda5bb83ba + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::hooks::use_params<ssr_modes_axum::app::PostParams>::{{closure}}>::h92f8e3a09835cdb8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::h3670d3ce066020ea + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::h53e07a99ec5c6889 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::h3a517ba44f610ea0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::h5f936a9f9fe0eaa0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::h73a2099567794e55 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::h8ff5b5676e987e05 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hc4f43a575b1f474c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>::hc752e506de5100ef + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::reactive_graph::RenderEffectState<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h5f1a483bca593ff8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::mutex::MutexGuard<std::sync::mpmc::zero::Inner>>>::h8867edea6edc3b52 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::mutex::MutexGuard<std::sync::mpmc::waker::Waker>>>::h2f0845b83c88bc1d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::either::EitherOf3State<(),(),(),tachys::renderer::dom::Dom>>::h683e69669726ea38 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::either::EitherKeepAliveState<tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h9aa774d8b56b89ab + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::h87c30d03799c33bf + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::request::browser::BrowserRequest>::hc431dd769fb8808c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<alloc::vec::Vec<core::task::wake::Waker>>>>::hbbce0a4d0a8fca5b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<()>>>>::hd581837b9dccf002 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<()>>>>::hcb3503dc0cf70afd + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>::hf6402de2dbf3e78b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(alloc::string::String,)>::h40372bb03cb4cbd1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>::hd4733ee7d8e5ad2a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(alloc::string::String,),tachys::renderer::dom::Dom>>::h1bb096976750dcb1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::build::{{closure}}>::h21530148317a64bf + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}>::hebfa83cea4807b7a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::rebuild_nested_route::{{closure}}>::h5620c66554f29ccc + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>::h7a8ff027eb42c74a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>>>::hcd87439e87ad6496 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(alloc::string::String,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(alloc::string::String,),tachys::renderer::dom::Dom>,leptos_meta::title::TitleView,leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Meta,(tachys::html::attribute::Attr<tachys::html::attribute::key::Charset,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Name,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::custom::CustomAttr<&str,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::HttpEquiv,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Itemprop,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Content,core::option::Option<leptos_meta::meta_tags::__Meta::{{closure}}::{{closure}}>,tachys::renderer::dom::Dom>),()>),ssr_modes_axum::app::PostError>,tachys::renderer::dom::Dom>>>>>::hb3f073d8fc61a087 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>::h0e50659d741baf70 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<usize,ssr_modes_axum::app::PostError>>>>>::hf7e665ffe42c4a13 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<either_of::EitherOf3<(),(),()> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}>::hd75be5f20eba431d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<either_of::EitherOf3<(),(),()> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::rebuild_nested_route::{{closure}}>::hbaa7f7c205a0cef7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>::he90d336f407656a0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<core::result::Result<ssr_modes_axum::app::PostParams,routing::params::ParamsError>>>>>::h5e46a71abb3f2430 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>::h15ab93f71a9ec6d2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>>>::he6f35d509092acd8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for routing::nested_router::__Outlet<tachys::renderer::dom::Dom>::{{closure}}>::build::{{closure}}>::hdb4dd102dd368dd3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>::hd2858c41f8160215 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::h4b9032a7b67f58f1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>>>>::hb97cab0a3253a627 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::reactive_graph::<impl tachys::view::Render<tachys::renderer::dom::Dom> for ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}}>::build::{{closure}}>::hff26ab2d9e4c9c51 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h2ecdab53e8d439cf + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::AsyncState<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>>>>::h6bbd218264af167d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::response::browser::BrowserResponse>::h2691969fb8adfe2c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::mutex::MutexGuard<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>>::he9d38ea264636ff1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<tachys::view::iterators::VecState<tachys::html::element::ElementState<(),tachys::view::strings::StringState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>>>>::h19a51d5223d34a79 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_encoding<(),ssr_modes_axum::app::list_post_metadata::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}}>::{{closure}}>::h5d014d26426e6a49 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::request::Request>::h4175bc4a2f10ea42 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_encoding<core::result::Result<usize,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::__Post::{{closure}}::{{closure}},ssr_modes_axum::app::__Post::{{closure}},ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::hdfb335cdad1ac506 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::PostMetadata>::h22d9cfa2b483dc47 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::SuspenseContext>::h0868d2f51dba4730 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::into_view::View<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>>::h399c9664e8096578 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>::h73b218601dc4650c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::error_boundary::ErrorBoundaryViewState<leptos::into_view::View<ssr_modes_axum::app::__Post::{{closure}}>,core::option::Option<tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>>>>>::h2b0f31e2687149a7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::suspense_component::SuspendState<core::result::Result<alloc::vec::Vec<tachys::html::element::HtmlElement<tachys::html::element::elements::Li,(),(tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,),tachys::renderer::dom::Dom>,&str,tachys::html::element::HtmlElement<tachys::html::element::elements::A,(tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>,),(alloc::string::String,&str),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>,server_fn::error::ServerFnError>,tachys::renderer::dom::Dom>>>>>::h00bfd430571af932 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::{{closure}}>::h23a1d8a021dcfa3e + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::owner::OwnerInner>>>::hd0b2fd72c4ec1ee1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<bool>>>>::hbf643d65702b39bb + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<bool>>>>::h21ab98b326bbe8b8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>>::haed1987dbc2801b5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>>::h93cb4db28cf86486 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::owner::OwnerInner>>>::hc01171c9388941a5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<oco::Oco<str>>>>>::hd07df1552ba57197 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<core::option::Option<leptos::text_prop::TextProp>>>>::h478e4529ec12b6d9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::text_prop::TextProp>>>>::h1ad700a11d8d941d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<core::option::Option<leptos_meta::title::Formatter>>>>::h90238b3bf8173e79 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos_meta::title::Formatter>>>>::hbc54780205bedcaa + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<(web_sys::features::gen_Element::Element,oco::Oco<str>)>>>>::he68f5b7007fd0766 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>>>::hb00f523c10d2e1d6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::text_prop::TextProp as core::convert::From<alloc::string::String>>::from::{{closure}}>::h77a427198acb0034 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::text_prop::TextProp as core::convert::From<&str>>::from::{{closure}}>::hc296d3e428b24cc5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::UntrackedWriteGuard<leptos::error_boundary::Errors>>::h2da5600906c433bf + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_AbortController::AbortController>::h061cb409491efbe0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::JsFuture>::h8475629d607f9685 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_Headers::Headers>::h47634df83d1fae93 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_Url::Url>::h1bac222385f5eb72 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<gloo_net::http::headers::Headers>::h49daca24c2c683d3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<web_sys::features::gen_Request::Request>::h046164ab84df46e7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::String>::h4e32c523caecfcab + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<serde_json::de::Deserializer<serde_json::read::StrRead>>::h6632fe527b71ef16 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::FromUtf8Error>::h42c547d9382a6f92 + 52 ┊ 0.00% ┊ ⤷ <hydration_context::SerializedDataId as core::clone::Clone>::clone::h0047d27c63f01f69 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::hcf749529c1c9f12c + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::hcf86512f397f600c + 52 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as reactive_graph::traits::DefinedAt>::defined_at::h3d5186629aeca9a5 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h598bec1841d248fb + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::hb666a01eae4da601 + 52 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::clone::Clone>::clone::h93ea695a38c90882 + 51 ┊ 0.00% ┊ ⤷ <std::thread::local::AccessError as core::fmt::Debug>::fmt::h498983a7dac61261 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h831a86ae694c10ca + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h87841fb031c53936 + 50 ┊ 0.00% ┊ ⤷ core::str::converts::from_utf8_unchecked::h6d23411f9832693b + 50 ┊ 0.00% ┊ ⤷ core::str::converts::from_utf8_unchecked::h3208ca698e934b9e + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8d1c30db7571886d + 47 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_object_key::h9ef4899645862c54 + 47 ┊ 0.00% ┊ ⤷ serde_json::ser::Formatter::end_object_value::hb5ceae9a2f9eea25 + 46 ┊ 0.00% ┊ ⤷ reactive_graph::computed::async_derived::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::update_if_necessary::hbf5fe6ce7965c41d + 46 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::update_if_necessary::h0ffa5d79b472dc0c + 46 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::is_browser::h97dda3326ee10a41 + 45 ┊ 0.00% ┊ ⤷ core::task::wake::Context::from_waker::h349b066b528a9cf6 + 45 ┊ 0.00% ┊ ⤷ serde_qs::ser::Serializer<W>::new::h825a55fa0002074b + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h4b227565f0f058f0 + 43 ┊ 0.00% ┊ ⤷ core::error::Error::provide::h555455e04c8fe408 + 43 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<R> for ()>::mount::hcde1110037d96bec + 43 ┊ 0.00% ┊ ⤷ core::error::Error::provide::h27b61ddd2ed44ae7 + 43 ┊ 0.00% ┊ ⤷ core::error::Error::provide::h1ad993b3fe519c1c + 40 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::async_derived::async_derived::AsyncDerived<T> as core::future::into_future::IntoFuture>::into_future::{{closure}}::panic_cold_display::h6144513996d88be5 + 40 ┊ 0.00% ┊ ⤷ reactive_graph::traits::WithUntracked::with_untracked::{{closure}}::panic_cold_display::h8cbdaeb4dec3d4c4 + 40 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Get::get::{{closure}}::panic_cold_display::h0337d80b4804fc83 + 40 ┊ 0.00% ┊ ⤷ reactive_graph::traits::With::with::{{closure}}::panic_cold_display::hcbe68f41656fba93 + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::heacf89f342dfa488 + 39 ┊ 0.00% ┊ ⤷ <core::num::error::ParseIntError as core::fmt::Display>::fmt::h57197ae88818a571 + 38 ┊ 0.00% ┊ ⤷ core::task::wake::Context::waker::hd24d4fc30f48bde0 + 38 ┊ 0.00% ┊ ⤷ <ssr_modes_axum::app::PostError as core::clone::Clone>::clone::hb41088b5d029ff05 + 38 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::h06d4ca01a71bd7a9 + 38 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::h213a92f000d72a0b + 38 ┊ 0.00% ┊ ⤷ <&T as thiserror::display::AsDisplay>::as_display::ha59c8abce30c7377 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::line::h381ab17b3d9bd7e2 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::caller::hf4f239eabd6dc6c8 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::column::hab201c2545701915 + 38 ┊ 0.00% ┊ ⤷ core::task::wake::Context::waker::h729997608e39847d + 38 ┊ 0.00% ┊ ⤷ <&mut T as core::ops::deref::DerefMut>::deref_mut::hfe9ce8d1dd50cb42 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::line::hb1f3d32aac407c6c + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::caller::h520416baa2a491b9 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::column::h13e67f5efa3309eb + 36 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::HydrateSharedContext as hydration_context::SharedContext>::seal_errors::hf2809d00b617f1ec + 36 ┊ 0.00% ┊ ⤷ <slotmap::util::Never as core::fmt::Debug>::fmt::h75260cf32279d11e + 36 ┊ 0.00% ┊ ⤷ <slotmap::util::Never as core::fmt::Debug>::fmt::h2218a9a36e11fbfa + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h0e5aa18aba9db5aa + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::hbf710b63db8fa52e + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::ha33c3e7a74a122f0 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlHeadElement::HtmlHeadElement as core::ops::deref::Deref>::deref::h5b14519637a5eda7 + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T> as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::h63996b6a68fcded5 + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T> as alloc::vec::in_place_collect::AsVecIntoIter>::as_into_iter::hf73714f7a1308fd8 + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::adapters::SourceIter>::as_inner::h6a67dff98f21be9d + 31 ┊ 0.00% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::adapters::SourceIter>::as_inner::h79946df3f141d0d4 + 31 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h416a7b0b1aeb78c9 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlTitleElement::HtmlTitleElement as core::ops::deref::Deref>::deref::h5728b47bb9fb0c0a + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Comment::Comment as core::ops::deref::Deref>::deref::h8f5817673b19deaa + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for u16>::from_abi::h939503fc78ebaa16 + 30 ┊ 0.00% ┊ ⤷ <core::cell::BorrowMutError as core::fmt::Debug>::fmt::hfb2526f8f8c4e89d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::TypedChildren<leptos::error_boundary::__ErrorBoundary<ssr_modes_axum::app::__Post::{{closure}}::{{closure}},tachys::html::element::HtmlElement<tachys::html::element::elements::Div,(tachys::html::class::Class<&str,tachys::renderer::dom::Dom>,),(tachys::html::element::HtmlElement<tachys::html::element::elements::H1,(),(&str,),tachys::renderer::dom::Dom>,tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__Post::{{closure}}::{{closure}}::{{closure}},),tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>,ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}> as leptos::children::ToChildren<ssr_modes_axum::app::__Post::{{closure}}>>::to_children::{{closure}}>::h300ea608c9285164 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::TypedChildren<tachys::html::element::HtmlElement<tachys::html::element::elements::Main,(),(routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}},),tachys::renderer::dom::Dom>> as leptos::children::ToChildren<ssr_modes_axum::app::__App::{{closure}}>>::to_children::{{closure}}>::hdb4c975adaf42dcb + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<serde::de::impls::<impl serde::de::Deserialize for usize>::deserialize::PrimitiveVisitor>::h6e432f52ef137a51 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::Post>::deserialize::__Visitor>::h0dab58b5aa0dc7cb + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::NoCustomError>::deserialize::__Visitor>::h87ad6017a3af6beb + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostMetadata>::deserialize::__Visitor>::h21f46df40f79687d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::_::<impl serde::de::Deserialize for ssr_modes_axum::app::PostError>::deserialize::__FieldVisitor>::h1457ad97835b0dd1 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::element::HtmlElement<tachys::html::element::elements::P,(),(&str,),tachys::renderer::dom::Dom>>::hf761e9885009cfd7 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<server_fn::error::_::<impl serde::de::Deserialize for server_fn::error::ServerFnError<E>>::deserialize::__FieldVisitor>::hb24fcf4f5985f2cf + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<serde::de::impls::<impl serde::de::Deserialize for alloc::vec::Vec<T>>::deserialize::VecVisitor<ssr_modes_axum::app::PostMetadata>>::h497fddbf0f389092 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::ViewFnOnce as core::convert::From<ssr_modes_axum::app::__Post::{{closure}}>>::from::{{closure}}>::h15eb2d5e5af6d103 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::ViewFnOnce as core::convert::From<ssr_modes_axum::app::__HomePage::{{closure}}>>::from::{{closure}}>::hb927de668a1b8422 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<serde::de::impls::<impl serde::de::Deserialize for core::result::Result<T,E>>::deserialize::Field as serde::de::Deserialize>::deserialize::FieldVisitor>::h091830ee438b4903 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::Location::new<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::Url>,reactive_graph::signal::arc_read::ArcReadSignal<routing::location::State>>::{{closure}}>::h05212888d72f33f5 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::Location::new<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::Url>,reactive_graph::signal::arc_read::ArcReadSignal<routing::location::State>>::{{closure}}>::h81dc5d378a75ee72 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::Location::new<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::Url>,reactive_graph::signal::arc_read::ArcReadSignal<routing::location::State>>::{{closure}}>::hb8f7cd455a98b035 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::Location::new<reactive_graph::signal::arc_read::ArcReadSignal<routing::location::Url>,reactive_graph::signal::arc_read::ArcReadSignal<routing::location::State>>::{{closure}}>::he214fb5fae7c1aad + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::hc007c58b266b81b6 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::TypedChildren<ssr_modes_axum::app::__Post::{{closure}}> as leptos::children::ToChildren<ssr_modes_axum::app::__Post::{{closure}}::{{closure}}>>::to_children::{{closure}}>::h6facaa63538900e6 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h0974940ed8f0cc91 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<leptos::children::TypedChildren<tachys::html::element::HtmlElement<tachys::html::element::elements::Ul,(),(ssr_modes_axum::app::__HomePage::{{closure}},),tachys::renderer::dom::Dom>> as leptos::children::ToChildren<ssr_modes_axum::app::__HomePage::{{closure}}>>::to_children::{{closure}}>::hc7752dbf37c2fc7d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<alloc::vec::Vec<ssr_modes_axum::app::PostMetadata>,server_fn::error::ServerFnError>>::new_with_encoding<(),ssr_modes_axum::app::list_post_metadata::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}},ssr_modes_axum::app::__HomePage::{{closure}}>::{{closure}}>::hb5a9b56a4499a537 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<url::parser::ParseError>::hb84ff6e714e41076 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&wasm_bindgen::JsValue>::h475434a96ef7958d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<serde::de::impls::UnitVisitor>::h2b78c6d185752fcf + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpsc::TryRecvError>::h963b29ded7b6be54 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<console_error_panic_hook::hook>::ha99794060a9e76e8 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<ssr_modes_axum::app::PostError>::h3f5ab08c88e8393b + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::num::error::ParseIntError>::h15f099f11fe45317 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<serde::de::impls::StringVisitor>::hea72495368ba52f9 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h06dfd491e3d71080 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_server::resource::ArcResource<core::result::Result<core::result::Result<ssr_modes_axum::app::Post,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::PostError>>::new_with_encoding<core::result::Result<usize,ssr_modes_axum::app::PostError>,ssr_modes_axum::app::__Post::{{closure}}::{{closure}},ssr_modes_axum::app::__Post::{{closure}},ssr_modes_axum::app::__Post::{{closure}}>::{{closure}}>::h56e8751281b66dc3 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::num::error::IntErrorKind>::hd868c83ab99d81ad + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::OnceCell<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>::initialize<once_cell::sync::OnceCell<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>::get_or_init<once_cell::sync::Lazy<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>::force::{{closure}}>::{{closure}},once_cell::sync::OnceCell<T>::get_or_init::Void>::{{closure}}>::hbac0e588bdfc8419 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<either_of::EitherOf3<(),(),()>>::h6db217c1478d82ed + 29 ┊ 0.00% ┊ ⤷ <() as tachys::html::attribute::Attribute<R>>::build::h8887d1fccff87f30 + 29 ┊ 0.00% ┊ ⤷ <() as tachys::html::attribute::Attribute<R>>::rebuild::hc57fac84b5f254af + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h0be7ec3a8dc21ce3 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::find<hashbrown::map::equivalent_key<core::any::TypeId,core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>::{{closure}}>::{{closure}}>::h625c752979484d35 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<slotmap::util::Never>::h844b6e512209866b + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h7bebb1d441dae074 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::find<hashbrown::map::equivalent_key<core::any::TypeId,core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>::{{closure}}>::{{closure}}>::hd3e3299273277d1b + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::reserve_rehash<hashbrown::map::make_hasher<core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>::{{closure}}>::{{closure}}>::hcd11382b9fa398f1 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h7bbae22f15dc7a3f + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::find_or_find_insert_slot<hashbrown::map::equivalent_key<core::any::TypeId,core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>::{{closure}},hashbrown::map::make_hasher<core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>::{{closure}}>::{{closure}}>::hec98cc5fc05e510a + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(any_error::ErrorId,any_error::Error)>::find<hashbrown::map::equivalent_key<any_error::ErrorId,any_error::ErrorId,any_error::Error>::{{closure}}>::{{closure}}>::hcc4bb1bc43bb5b14 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(any_error::ErrorId,any_error::Error)>::reserve_rehash<hashbrown::map::make_hasher<any_error::ErrorId,any_error::Error,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>::{{closure}}>::{{closure}}>::h0915d3c4e3f7bf77 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<slotmap::util::Never>::h946421bef12a0663 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(any_error::ErrorId,any_error::Error)>::find_or_find_insert_slot<hashbrown::map::equivalent_key<any_error::ErrorId,any_error::ErrorId,any_error::Error>::{{closure}},hashbrown::map::make_hasher<any_error::ErrorId,any_error::Error,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>::{{closure}}>::{{closure}}>::h1cf0692ab536560b + 29 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for ()>::rebuild::h70e6bf249c20e92f + 29 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Mountable<R> for ()>::unmount::h796e9daad69d2541 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&bool>::h341d7a0fa2906be6 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::alloc::layout::LayoutError>::h131395ba2deb81f4 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h0baf974f939aed37 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::he84d35fe94eb4eb2 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::option::Option<usize>>::h950b53a71ab32781 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&alloc::string::String>::hbe01b7f08d4d4ac2 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&server_fn::error::NoCustomError>::hdc7c3486f69cd730 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<usize>::hf3f22ace0418f8f5 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&u8>::ha58ea7ef03404d94 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::str::error::Utf8Error>::h64ea947fad2dca89 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::option::Option<u8>>::hfc335a7e33f2ceca + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}>::{{closure}}>::h1ee4ba279db63735 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}>::{{closure}}>::h6f29f94dfe61739e + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}>::{{closure}}>::hb3e437eca3c8cc15 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h6e31ba30d0806e43 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>::{{closure}}>::hf431a1ca2eed65a0 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::future_to_promise<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>::{{closure}}>::h2347da7f519e6a9a + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::BorrowMutError>::h1f1cfce8e4f91c98 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h70c6e6145f7594bf + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::hbcd432564919e442 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&u8>::hca4de9b1d3a7e56e + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::h46f87b118a97d003 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h6c6777467425f6f5 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic::Payload<&str>>::h3fe67de51ccc24af + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&()>::h7836cc6d1da55499 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::num::error::TryFromIntError>::h4acdab6df6d0c5ac + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::hd55c08c6878da87d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::option::Option<usize>>::h535ea843425a0895 + 29 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::mark_check::h766fb3ff93641655 + 27 ┊ 0.00% ┊ ⤷ <serde_qs::ser::QsSerializer<W> as serde::ser::SerializeStruct>::end::hd3958a1f0b49a8de + 22 ┊ 0.00% ┊ ⤷ <F as core::future::into_future::IntoFuture>::into_future::h5e23323402854d08 + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h3b882f306d8bc951 + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h7c63df85688f3c73 + 21 ┊ 0.00% ┊ ⤷ tachys::view::tuples::<impl tachys::view::Render<R> for ()>::build::h406b75a49adf54e0 + 21 ┊ 0.00% ┊ ⤷ send_wrapper::invalid_poll::hf6fc13155a8b2a91 + 16 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for u16>::fmt::h508c343672db7580 + 14 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::undefined::hdb091323723f25fa + 10 ┊ 0.00% ┊ ⤷ core::mem::drop::h3be5fb681b89ddd4 + 9 ┊ 0.00% ┊ ⤷ type[47]: (i32, i64, i64, i32, i32, i32) -> nil + 8 ┊ 0.00% ┊ ⤷ type[61]: (i64, i64, i32, i32, i32) -> nil + 7 ┊ 0.00% ┊ ⤷ type[27]: (i32, i32, i32, i64) -> nil + 5 ┊ 0.00% ┊ ⤷ type[50]: (i32, f64) -> nil + 5 ┊ 0.00% ┊ ⤷ type[64]: (f64) -> i32 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::p::h6fedc2fde781ed68 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::h1::hbdb9b8eac5aef175 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::li::hb0774f9176cac443 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::ul::h9b0a219d07994a5a + 98817 ┊ 2.01% ┊ ⤷ elem[2] + 20598 ┊ 0.42% ┊ ⤷ core::fmt::float::<impl core::fmt::Display for f64>::fmt::h9b2044b793190000 + 9032 ┊ 0.18% ┊ ⤷ core::fmt::float::float_to_decimal_common_shortest::h5c807e97adabb004 + 6077 ┊ 0.12% ┊ ⤷ core::num::flt2dec::strategy::dragon::format_shortest::h592ae12273fdbbff + 2194 ┊ 0.04% ┊ ⤷ core::num::flt2dec::strategy::grisu::format_shortest_opt::h36d516d358f061a9 + 62 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::hec3d2afc5bacf59a + 7624 ┊ 0.16% ┊ ⤷ core::fmt::float::float_to_decimal_common_exact::h73721fa9efa37f3e + 5121 ┊ 0.10% ┊ ⤷ core::num::flt2dec::strategy::dragon::format_exact::he84eac11bf088c1d + 1525 ┊ 0.03% ┊ ⤷ core::num::flt2dec::strategy::grisu::format_exact_opt::hd779010080b057d6 + 415 ┊ 0.01% ┊ ⤷ core::num::flt2dec::strategy::grisu::format_exact_opt::possibly_round::haf9424ce13f471f2 + 12 ┊ 0.00% ┊ ⤷ type[25]: (i32, i32, i32, i32, i32, i32, i64, i64, i64) -> nil + 1671 ┊ 0.03% ┊ ⤷ core::num::flt2dec::strategy::dragon::mul_pow10::hbb37a4d58920e71e + 783 ┊ 0.02% ┊ ⤷ core::num::bignum::Big32x40::mul_digits::he3f4044ac37272f1 + 1270 ┊ 0.03% ┊ ⤷ core::fmt::Formatter::pad_formatted_parts::hd9cbf02fdcd8ac86 + 632 ┊ 0.01% ┊ ⤷ core::fmt::Formatter::write_formatted_parts::hbafd240b12841907 + 498 ┊ 0.01% ┊ ⤷ core::num::bignum::Big32x40::mul_pow2::h70fcc7099c4573a8 + 430 ┊ 0.01% ┊ ⤷ core::num::flt2dec::digits_to_dec_str::h4fc604a4f416dde2 + 8 ┊ 0.00% ┊ ⤷ type[52]: (i32, f64, i32, i32) -> i32 + 16022 ┊ 0.33% ┊ ⤷ hydration_context::hydrate::serialized_errors::hde9dd0f2a6cf6386 + 14890 ┊ 0.30% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h322ab7008a8483c5 + 14878 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::hb4a4bae909c7eb9f + 14575 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h9f7f9fa957651a0e + 14563 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h759938b90140e437 + 6198 ┊ 0.13% ┊ ⤷ <core::iter::adapters::flatten::FlatMap<I,U,F> as core::iter::traits::iterator::Iterator>::next::he64a8e51335c64e7 + 6143 ┊ 0.13% ┊ ⤷ <core::iter::adapters::flatten::FlattenCompat<I,U> as core::iter::traits::iterator::Iterator>::next::h9384fa8fe8274122 + 4552 ┊ 0.09% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::h151b8787bcae895f + 4299 ┊ 0.09% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h8242cb59810a3661 + 3214 ┊ 0.07% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::h66135fe81c5e98b4 + 3143 ┊ 0.06% ┊ ⤷ hydration_context::hydrate::serialized_errors::{{closure}}::he9898e82715bfb9f + 2646 ┊ 0.05% ┊ ⤷ core::option::Option<T>::map::h02edfd01929db545 + 2393 ┊ 0.05% ┊ ⤷ hydration_context::hydrate::serialized_errors::{{closure}}::{{closure}}::h4210f17bda12ab03 + 802 ┊ 0.02% ┊ ⤷ <any_error::Error as core::convert::From<T>>::from::ha36739149d26208f + 705 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h8f319f152cda0283 + 263 ┊ 0.01% ┊ ⤷ alloc::alloc::exchange_malloc::h38eadd08c1a538f4 + 576 ┊ 0.01% ┊ ⤷ wasm_bindgen::JsValue::as_f64::h38a54a3fb83505d8 + 409 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::traits::WasmRet<T>::join::h2d2ba3f7b238b452 + 313 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for core::option::Option<T>>::join::h86c52e4d1026215f + 28 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_number_get + 122 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hb2f9cdf20e3da660 + 7 ┊ 0.00% ┊ ⤷ type[62]: (i64, f64, i32) -> f64 + 45 ┊ 0.00% ┊ ⤷ <any_error::ErrorId as core::convert::From<usize>>::from::hea6a40780a30ac4d + 393 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_ref::hedb6f081d3f6d747 + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hfe761d69ad37aafd + 80 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Array>::is_type_of::h7f1aac284a6e4184 + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::h4eef5aed4a34ad93 + 31 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Array>::unchecked_from_js_ref::h37906ad6e96512f0 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::h5437487447ffd5c0 + 820 ┊ 0.02% ┊ ⤷ <js_sys::ArrayIter as core::iter::traits::iterator::Iterator>::next::h05eca8ef8fc39fb6 + 352 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::h38d36843726a3f49 + 269 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h7120824e60909fb6 + 52 ┊ 0.00% ┊ ⤷ <u32 as core::iter::range::Step>::forward_unchecked::h16fa55a2defd22c3 + 126 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hdd101455180bd1a0 + 61 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::hf68c361702d7291f + 783 ┊ 0.02% ┊ ⤷ core::iter::adapters::flatten::and_then_or_clear::hbf3f40cebbe16cb1 + 222 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h29ddea62415637bf + 160 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::next::h70e4a4a2b8e337c9 + 116 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::iter::traits::collect::IntoIterator>::into_iter::h2bea31e1903c17d7 + 4615 ┊ 0.09% ┊ ⤷ <core::iter::adapters::flatten::FlatMap<I,U,F> as core::iter::traits::iterator::Iterator>::size_hint::hfec47b1662b1313f + 4560 ┊ 0.09% ┊ ⤷ <core::iter::adapters::flatten::FlattenCompat<I,U> as core::iter::traits::iterator::Iterator>::size_hint::h752987d686b71f62 + 627 ┊ 0.01% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h6a158ffdbaa54071 + 572 ┊ 0.01% ┊ ⤷ <js_sys::ArrayIter as core::iter::traits::iterator::Iterator>::size_hint::h9eadb08401e72edd + 506 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::size_hint::hd5ef39517d2b3bff + 167 ┊ 0.00% ┊ ⤷ <u32 as core::iter::range::Step>::steps_between::hda8151fa0f29f2a0 + 521 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or::h786cfac3e0428ceb + 257 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h7b7decbe80b917d2 + 195 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::size_hint::h09df3a157d5802ad + 257 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::saturating_mul::h88944846fa7fd2d4 + 61 ┊ 0.00% ┊ ⤷ <T as core::iter::adapters::flatten::ConstSizeIntoIterator>::size::h0808054cf645a8ee + 2338 ┊ 0.05% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h31995e844e33bab1 + 2283 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::ha2fc64e071251e35 + 1698 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h256e3672a0a19711 + 1512 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hb460328c7e51a76b + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h95e7eb3c99c90007 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::option::IntoIter<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::h6c5249925dbcefd9 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::IntoIter<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::h18f40a5f422b7346 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Item<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::hcd9985bfecada520 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::flatten::FlatMap<js_sys::ArrayIter,core::option::Option<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>,hydration_context::hydrate::serialized_errors::{{closure}}>>::hcd695590636048e1 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::flatten::FlattenCompat<core::iter::adapters::map::Map<js_sys::ArrayIter,hydration_context::hydrate::serialized_errors::{{closure}}>,core::option::IntoIter<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::h316583f5aadbac36 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::h38303cbd9cde0dc2 + 216 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h5ca36d987a5997b5 + 908 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::flat_map::h4ba4a1a18adcd222 + 69 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::ha5291c364fd78b6e + 108 ┊ 0.00% ┊ ⤷ js_sys::Array::iter::hb62800e43d9c6b63 + 12020 ┊ 0.24% ┊ ⤷ <<serde::de::WithDecimalPoint as core::fmt::Display>::fmt::LookForDecimalPoint as core::fmt::Write>::write_str::hc84622310806cb7f + 11879 ┊ 0.24% ┊ ⤷ core::str::<impl str>::contains::hcdb985f210c3517f + 11793 ┊ 0.24% ┊ ⤷ <char as core::str::pattern::Pattern>::is_contained_in::h7bb07da1ac53ef76 + 9294 ┊ 0.19% ┊ ⤷ <&str as core::str::pattern::Pattern>::is_contained_in::h66ed8d6c9c2cc836 + 7878 ┊ 0.16% ┊ ⤷ <core::str::pattern::StrSearcher as core::str::pattern::Searcher>::next_match::hf9d3e52973003058 + 5268 ┊ 0.11% ┊ ⤷ <core::str::pattern::StrSearcher as core::str::pattern::Searcher>::next::hf51be798c673eb49 + 2054 ┊ 0.04% ┊ ⤷ core::str::pattern::TwoWaySearcher::next::he6147fef3c07fd49 + 61 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::rejecting::h0a7344b7d1dda70e + 61 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::matching::h51f88049fb90a713 + 24 ┊ 0.00% ┊ ⤷ <core::str::pattern::RejectAndMatch as core::str::pattern::TwoWayStrategy>::use_early_reject::hbecfd990e443520c + 833 ┊ 0.02% ┊ ⤷ core::str::validations::next_code_point::had580003db609970 + 341 ┊ 0.01% ┊ ⤷ core::str::<impl str>::is_char_boundary::heb029a0a86aad9e5 + 313 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::get::h432af474bfa92a4b + 2068 ┊ 0.04% ┊ ⤷ core::str::pattern::TwoWaySearcher::next::h519bec158b44f017 + 89 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::matching::h03155dd5b7d98d7f + 47 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::rejecting::h9619d38e114d2197 + 24 ┊ 0.00% ┊ ⤷ <core::str::pattern::MatchOnly as core::str::pattern::TwoWayStrategy>::use_early_reject::h72ded32f02ab297d + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::h74876d5d4783871d + 1612 ┊ 0.03% ┊ ⤷ core::char::methods::encode_utf8_raw::hcbaa39273976974c + 339 ┊ 0.01% ┊ ⤷ core::slice::memchr::memchr_naive::h2d2b352349419016 + 1988 ┊ 0.04% ┊ ⤷ tachys::dom::DOCUMENT::__getit::h75b6812e9c6bf7d8 + 1908 ┊ 0.04% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h8801c61fc7b28b4c + 1606 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h579d5d964336cb48 + 1318 ┊ 0.03% ┊ ⤷ tachys::dom::DOCUMENT::__getit::{{closure}}::h84d14784c8f986d7 + 822 ┊ 0.02% ┊ ⤷ tachys::dom::DOCUMENT::__init::hfb2f445d6d91c1b4 + 536 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Window::Window::document::he25627aa31869e67 + 359 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::hd09f03301068f78b + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Document::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Document::Document>::from_abi::h789b9dd4e8d4f2b9 + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Document::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_Document::Document>::is_none::hb1ac4b4cdcdd4913 + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_document_5100775d18896c16 + 106 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h20fd811452b1665e + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hdc40cbb4ea82566c + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_Document::Document>>::h00b6e8131e65d384 + 1858 ┊ 0.04% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::take_box::hb3b8320d097e7285 + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::hcba51ff56a85829b + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::hd41078c70fa7d26d + 1858 ┊ 0.04% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::take_box::had009ee87daa42a3 + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::he391319f0bdec755 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h937b28264a5b2030 + 1847 ┊ 0.04% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::update_if_necessary::h4c802f8ff473c172 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hd3a4c91bbf34f431 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::ha145cb0baadd1f60 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::ha6834b94912d3c47 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h2edb57f200359fb2 + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hf7f7b443bcb9df5d + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h6d6cbb9847e5e249 + 107 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::sets::SourceSet as core::clone::Clone>::clone::hcea42a8650400a78 + 100 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::sets::SourceSet as core::iter::traits::collect::IntoIterator>::into_iter::hc1392cc8499342ff + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h1d85ac394cda5035 + 1664 ┊ 0.03% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::THREAD_DATA::__getit::h2abfe8076972e986 + 1584 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h72741eb9b8319d33 + 1282 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::hc563fa422a2e666e + 798 ┊ 0.02% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::THREAD_DATA::__getit::{{closure}}::h3453803020f4cc24 + 221 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::ha94582f4098ca4c6 + 10 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::THREAD_DATA::__init::hf5e91a6daac13cc0 + 1612 ┊ 0.03% ┊ ⤷ core::char::methods::encode_utf8_raw::h330b2f090e86f7fc + 1498 ┊ 0.03% ┊ ⤷ <wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::finish::hb9e1cc769f3f53e2 + 221 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::he5d39fc305e17a3c + 126 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_none::h5e7891bda86fd5cc + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h090b277f956c08ab + 97 ┊ 0.00% ┊ ⤷ core::task::wake::Waker::wake::h6a38f42cb281a347 + 85 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::headc6875e2e4ac72 + 59 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::Deref>::deref::h8f40d35df7adbb1f + 10 ┊ 0.00% ┊ ⤷ core::mem::drop::hdf69557168abafeb + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::ha64c8b28fde9e470 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::hc7ee2250fc961c02 + 1334 ┊ 0.03% ┊ ⤷ once_cell::imp::OnceCell<T>::initialize::{{closure}}::hdc8ee67e0bdde5ed + 735 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_init::{{closure}}::h4884a85a27e20d81 + 628 ┊ 0.01% ┊ ⤷ once_cell::sync::Lazy<T,F>::force::{{closure}}::h5da72718e5bc637c + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h699502e73d2ceb3e + 139 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::take::h494f7e5c20559869 + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h9e64a72c131fb871 + 55 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::ha949bdfa07639b43 + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h40dca49fe349a9f8 + 45 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_unchecked::h81ad42b765645e05 + 1328 ┊ 0.03% ┊ ⤷ parking_lot_core::word_lock::with_thread_data::THREAD_DATA::__getit::h5ddc6b3a888fb1bf + 1248 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h10f2cf2386ed526e + 946 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h084d3fb41df4c896 + 611 ┊ 0.01% ┊ ⤷ parking_lot_core::word_lock::with_thread_data::THREAD_DATA::__getit::{{closure}}::habacfe4e1cf88ab6 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h316f4c352fb4efd5 + 10 ┊ 0.00% ┊ ⤷ parking_lot_core::word_lock::with_thread_data::THREAD_DATA::__init::h5970931ef80f84f4 + 1257 ┊ 0.03% ┊ ⤷ tachys::dom::WINDOW::__getit::he2db66ded7ea988b + 1177 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::ha03295323b3387d8 + 875 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h7f1f0c81824c8276 + 587 ┊ 0.01% ┊ ⤷ tachys::dom::WINDOW::__getit::{{closure}}::hcf1086a82b3909a0 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h5fc1b142983c2e87 + 91 ┊ 0.00% ┊ ⤷ tachys::dom::WINDOW::__init::h01826e2f8ae50cef + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_Window::Window>>::h91d787521f3672c9 + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h3cd81206ee4a4e50 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h9f0a07b8e091e020 + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h82e430982b00673a + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h717e1eda8a8b9f06 + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h667cdb95af1c3e5c + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h44c1938249629283 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hae4ab5a0d67c07d2 + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h0d055cfcfac5bb33 + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h5478789573ab1e1e + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h8514675809366c0a + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h27dfb8a5e9df1704 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h182e631c3f7f83ba + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h2139147a6e9c2de5 + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h0517879b5d917432 + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h0b2b8c6427b1425a + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h9d3d8307bdfde1c6 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h545b35673f1fc44f + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::hf27477ab0d895c1f + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::ha0ae6c4434fe340c + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::hfd25ebcf60968c4f + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h6ba93ba5fffecf1b + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h8e16836fa18c9d6d + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h19b35fda4ef4b15a + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h4085f68e7e8624fe + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::hc3df0cc1bf56e00b + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::hbb586615cbe91ea7 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h78f014bb24a95591 + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h620179f00a189fd4 + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h69e06514140979b9 + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h42daecba2f5499a1 + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h60664221907256d9 + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hf7af2772e2b13c69 + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h058a649f4baee9de + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h2368b94b49fb333a + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h16d84ec9b360b83f + 1235 ┊ 0.03% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::h0d887ea3aaeb057f + 1155 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hf3239915529da015 + 853 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h469e20763ad56b3f + 498 ┊ 0.01% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__getit::{{closure}}::h339b157774594e7a + 19 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::h1204a30a7cf7a8d4 + 1132 ┊ 0.02% ┊ ⤷ hydration_context::hydrate::__RESOLVED_RESOURCES::_VAL::__getit::h47438ea1c645a1ce + 1052 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h96bf96c19ea674c0 + 750 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::hdefcd743dcc4861b + 541 ┊ 0.01% ┊ ⤷ hydration_context::hydrate::__RESOLVED_RESOURCES::_VAL::__getit::{{closure}}::he95513a3b517872c + 155 ┊ 0.00% ┊ ⤷ hydration_context::hydrate::__RESOLVED_RESOURCES::_VAL::__init::hed60f71425f6a54d + 141 ┊ 0.00% ┊ ⤷ hydration_context::hydrate::__RESOLVED_RESOURCES::init::hdaaf477c6cd9482f + 66 ┊ 0.00% ┊ ⤷ import wbg::__wbg_static_accessor___RESOLVED_RESOURCES_a7442c893d8c3f39 + 1131 ┊ 0.02% ┊ ⤷ hydration_context::hydrate::__SERIALIZED_ERRORS::_VAL::__getit::h0fd084774ea79961 + 1051 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hc8fac0c8c07f56cd + 749 ┊ 0.02% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::ha742b5a1bb57d1ff + 540 ┊ 0.01% ┊ ⤷ hydration_context::hydrate::__SERIALIZED_ERRORS::_VAL::__getit::{{closure}}::h4db98779fe386004 + 154 ┊ 0.00% ┊ ⤷ hydration_context::hydrate::__SERIALIZED_ERRORS::_VAL::__init::h6523d079b9c70935 + 140 ┊ 0.00% ┊ ⤷ hydration_context::hydrate::__SERIALIZED_ERRORS::init::h84a41814e9b95bb6 + 65 ┊ 0.00% ┊ ⤷ import wbg::__wbg_static_accessor___SERIALIZED_ERRORS_0aa210c4af097829 + 892 ┊ 0.02% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h42154750aae77a2b + 813 ┊ 0.02% ┊ ⤷ alloc::string::String::push::h7788470e271f7fd0 + 360 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h8d6c367d39ab342e + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h631a7640fbff447e + 743 ┊ 0.02% ┊ ⤷ <T as wasm_bindgen::closure::WasmClosureFnOnce<A,R>>::into_fn_mut::{{closure}}::h2dc6a23cafa1482f + 305 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::he1be5bba6b76f47a + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h7c78d0f7c1699d0e + 247 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::ha2135aa008636e15 + 143 ┊ 0.00% ┊ ⤷ <wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}::hed20480ace7c0ef5 + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::he73ac203970ea76e + 743 ┊ 0.02% ┊ ⤷ <T as wasm_bindgen::closure::WasmClosureFnOnce<A,R>>::into_fn_mut::{{closure}}::h2ff29e3ede17d0f1 + 305 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h53386da94ca7408c + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h0fe307ccf0d4da53 + 247 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h11c9a451589c9705 + 143 ┊ 0.00% ┊ ⤷ <wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}::h56c9653793f12e6f + 70 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hf5f67713e9623b4f + 660 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn core::future::future::Future+Output = ()+core::marker::Send>>>::he2f934f4d2a5a1c7 + 607 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::future::future::Future+Output = ()+core::marker::Send>>::h2aaf5d5d924f42d8 + 526 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hdde4229f8c36e81c + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h1127c73257197a0b + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h91a590a31927ba26 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h603f531183b0af06 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h4042523cf53845df + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h1a06b6daac54000f + 428 ┊ 0.01% ┊ ⤷ <serde::de::WithDecimalPoint as core::fmt::Display>::fmt::he9f16669164464ff + 423 ┊ 0.01% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::take_box::h9db2d6d27283f7d8 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::effect::inner::EffectInner>>::h98fb971b9eb794fd + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h4676f72e7845f864 + 395 ┊ 0.01% ┊ ⤷ web_sys::window::h798c952b7f5e75f5 + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h658ff3a68450e6ea + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Window::Window,js_sys::Object>>::hc9e2bcda22f21bc5 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hdfae386c2b0dd25f + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h20f51df886ee3225 + 351 ┊ 0.01% ┊ ⤷ <std::io::Write::write_fmt::Adapter<T> as core::fmt::Write>::write_str::hdecbc8c9e08960d1 + 82 ┊ 0.00% ┊ ⤷ std::io::impls::<impl std::io::Write for alloc::vec::Vec<u8,A>>::write_all::h9d83cff2ec5cd78b + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h8f8e4766f243f899 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h28c3ba8d0cbde700 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h9e25fc42d7f6492c + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::hca2e0d135fc5decd + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h5c726067f2db8a45 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for isize>::fmt::h23023b7e0bad6ced + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::heb316694bf63c516 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h454a78b3af5ba991 + 300 ┊ 0.01% ┊ ⤷ once_cell::unsync::Lazy<T,F>::new::h0b2a206cf936129b + 132 ┊ 0.00% ┊ ⤷ once_cell::unsync::OnceCell<T>::new::h2dcfb59ad1fde1e4 + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::hcce060d0d6d2f088 + 299 ┊ 0.01% ┊ ⤷ <char as core::fmt::Display>::fmt::h3c047ee9a4159b29 + 298 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h3f6d3cc56d33c67d + 205 ┊ 0.00% ┊ ⤷ any_spawner::Executor::init_wasm_bindgen::{{closure}}::hd2370830f8e71712 + 136 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::h4b4943dc79402471 + 298 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::haf829f97b809d142 + 205 ┊ 0.00% ┊ ⤷ any_spawner::Executor::init_wasm_bindgen::{{closure}}::hde0c696754620617 + 136 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::spawn_local::h06d59ecd0f504a65 + 292 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hbac00b0a4ea1ac13 + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Debug>::fmt::h5524bbbda2d596f1 + 285 ┊ 0.01% ┊ ⤷ <hydration_context::hydrate::SerializedError as core::fmt::Display>::fmt::h185c3c84e462d95e + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h9101229a041bc569 + 260 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h5898f9125f79020c + 176 ┊ 0.00% ┊ ⤷ <core::alloc::layout::Layout as core::fmt::Debug>::fmt::hdcd64825a644a317 + 240 ┊ 0.00% ┊ ⤷ <smallvec::CollectionAllocErr as core::fmt::Debug>::fmt::h060400bd8de29b21 + 238 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<once_cell::unsync::Lazy<web_sys::features::gen_Element::Element>>>::hd0e9b4ccfdc5abe2 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::unsync::Lazy<web_sys::features::gen_Element::Element>>::h6dde6b1bddd3122a + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::unsync::OnceCell<web_sys::features::gen_Element::Element>>::h94f7d71625d128ba + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<web_sys::features::gen_Element::Element>>>::h48f94e8cf7bdc6cc + 232 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::future::future::Future>::poll::ha90ad8c7732ae359 + 57 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::h9283633e45691cdf + 232 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hfd802c35f408802e + 148 ┊ 0.00% ┊ ⤷ <core::ptr::alignment::Alignment as core::fmt::Debug>::fmt::ha2fd648955ae3c9c + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h54856fa601a0a4bd + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h2e6c5d3718cf7024 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Div as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::h7c45a386c498a2fc + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6c0ea9fe39727c74 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Ul as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::hbc1f9ca28b67cd9b + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h7e9397ab56e3dc23 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Em as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::hf25c1cbd4b638009 + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h96709b1ac20c043c + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::A as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::h60ebc8b23743f22d + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h9a056b70f3db877c + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Meta as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::h31dd8fba1c92396f + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hbaaebe1c08e0a1b7 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::P as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::he12678d559dc484e + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hf35b2ea076eac3d4 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::H1 as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::h39014ab62f326deb + 213 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfb429a3a734d6459 + 148 ┊ 0.00% ┊ ⤷ <tachys::html::element::elements::Li as tachys::html::element::CreateElement<tachys::renderer::dom::Dom>>::create_element::ELEMENT::__init::{{closure}}::h25cbc7f556fadddc + 204 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_char::h6ee1819ca41c09b4 + 183 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::fmt::Display>::fmt::hadd6452cebb3ef95 + 182 ┊ 0.00% ┊ ⤷ core::error::Error::type_id::h1e90d8dfff2ecd23 + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h16d981c930638e2a + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::h3e3f7bb72c12d23a + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hd504950f84fa8da5 + 180 ┊ 0.00% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::clear_sources::hb1877c402fa95495 + 180 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Array>::from_abi::hc9fbedc3bda58210 + 102 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::h3323c482d5989e88 + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h3a8f33fd7764cf17 + 180 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h3a5d1f590eb6cfde + 104 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h50f56ecece00c47d + 180 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h4c46b363993f1653 + 104 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h49dd109a2ab4ec01 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::effect::inner::EffectInner>>::h861c64fdc2662af8 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hdc54257f62f9001e + 175 ┊ 0.00% ┊ ⤷ <core::pin::Pin<P> as core::future::future::Future>::poll::hc0004e7c119b2536 + 171 ┊ 0.00% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::mark_check::h115f5bf73fdf4240 + 171 ┊ 0.00% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::mark_dirty::hccd9fc70f5b201df + 162 ┊ 0.00% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::subscriber::Subscriber for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::add_source::hfcd762a606680d9c + 161 ┊ 0.00% ┊ ⤷ <<serde::de::WithDecimalPoint as core::fmt::Display>::fmt::LookForDecimalPoint as core::fmt::Write>::write_char::h505fee977ccdc5b0 + 25 ┊ 0.00% ┊ ⤷ <core::fmt::Formatter as core::fmt::Write>::write_char::h87b9eb572064ff05 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h499a34dcee4554b8 + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h7b70f7f7139f4649 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h5a35609af1038430 + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::haf12ff7aca8daeb6 + 149 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::ha77e48037ea27a3c + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h089ba202f0f291f5 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hfc038d11ab6fe735 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}} as wasm_bindgen::closure::WasmClosureFnOnce<wasm_bindgen::JsValue,()>>::into_fn_mut::{{closure}}>::h06640d7999f2a974 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}>>::h16fac36c62309e7e + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}} as wasm_bindgen::closure::WasmClosureFnOnce<wasm_bindgen::JsValue,()>>::into_fn_mut::{{closure}}>::hd6182369b2ce63f5 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}>>::haeb78c51e1f8032e + 129 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::h9bef62c0d2bcfc1e + 61 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hf569b88f1e253aca + 123 ┊ 0.00% ┊ ⤷ <hydration_context::hydrate::SerializedError as core::fmt::Debug>::fmt::h6ef69af7bfc85b43 + 111 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::get::hd822d3e3adabe40d + 111 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::get::hd0d5964155c8a6bb + 111 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::get::h5cd34d318a254a9e + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hdc9276931ac315c8 + 106 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h4f3cefec15ea0fca + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h22ffe4f2727b1deb + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h34dac15b1f7be86b + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h3f8da14e35518587 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::h8c9b595521d31b21 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::haf5ba31b519f1661 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hb9e8b89fee88b752 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hdd9ad6af6c030cd7 + 105 ┊ 0.00% ┊ ⤷ <std::sync::poison::PoisonError<T> as core::fmt::Debug>::fmt::hf486542093ce5b6a + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hfa40e6e0f6cc0e18 + 90 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h29198d65154bc547 + 88 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::h66762473e7acf884 + 84 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h8355d01f3502fcc7 + 83 ┊ 0.00% ┊ ⤷ core::error::Error::cause::h7a8589a163de7313 + 80 ┊ 0.00% ┊ ⤷ reactive_graph::owner::OWNER::__getit::h54d0ad5d29298ef9 + 80 ┊ 0.00% ┊ ⤷ any_error::ERROR_HOOK::__getit::h3973dc52f5ac4089 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<js_sys::Array>>::he676dcdeb75a3660 + 68 ┊ 0.00% ┊ ⤷ core::error::Error::source::hc33624671b35f7de + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h641e9b0cb8265f58 + 54 ┊ 0.00% ┊ ⤷ core::error::Error::description::h7bd9c86046d8ea3d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::owner::OwnerInner>>>::h70e30c10960847ac + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::effect::inner::EffectInner>>>::h41fa6fccbd45eff0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::effect::inner::EffectInner>>>::h84bf339bcdb6aac8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::graph::sets::SubscriberSet>>>::h1c9ea72cba95bf97 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>::h3d2b2deb7f9bface + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>>::hd869c92d2c3d4b80 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<slotmap::basic::SlotMap<reactive_graph::owner::arena::NodeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>>>::h6b6be8e4185ce2fa + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<reactive_graph::owner::arena::NodeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>>>::hbcc1f2d0e4f607b6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<hydration_context::hydrate::SerializedError>::h7475379c9ea0ddc7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::io::Write::write_fmt::Adapter<alloc::vec::Vec<u8>>>::h3efbb4115c045cd3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}>::hd52dbed1542249a7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<wasm_bindgen_futures::JsFuture as core::convert::From<js_sys::Promise>>::from::{{closure}}>::h0c2d6d150ad9c662 + 52 ┊ 0.00% ┊ ⤷ reactive_graph::graph::subscriber::OBSERVER::__getit::hbbfbc2c2bc536c91 + 43 ┊ 0.00% ┊ ⤷ core::error::Error::provide::h1845df3baa58ba85 + 34 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for i64>::fmt::hdd006dc8d8b8bf7e + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h5548028911a11ed1 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<smallvec::CollectionAllocErr>::he2c7c65d4d60c2ef + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::alloc::layout::Layout>::h9f019dcc9d944cd7 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::h20dd31245c9432a7 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic::Payload<&str>>::hcb1e322eac2eec62 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<usize>::h9fd7c8faf41a70d9 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::ptr::alignment::Alignment>::hfc3a91a5fbf34fba + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::h6b9f3bc13d7482f0 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic::Payload<&str>>::h3920020815e95156 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::hf78772d4cc363269 + 29 ┊ 0.00% ┊ ⤷ reactive_graph::effect::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::mark_subscribers_check::hada443061217f1b4 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&isize>::h3419f1bdc652e3bc + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::hf1bf2384cb36f2d8 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&alloc::string::String>::h11fb52695c1d1de5 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::hea4b3b8ae1b332b6 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::OnceCell<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::initialize<once_cell::sync::OnceCell<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::get_or_init<once_cell::sync::Lazy<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::force::{{closure}}>::{{closure}},once_cell::sync::OnceCell<T>::get_or_init::Void>::{{closure}}>::h98c3285d41be95f1 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<serde::de::WithDecimalPoint as core::fmt::Display>::fmt::LookForDecimalPoint>::ha3a80474e286610f + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::hc0809603cb7d9ff7 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic::Payload<&str>>::hcd1851d49face6f6 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h9b28b3f381258292 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h383ab3ed089e5c80 + 41716 ┊ 0.85% ┊ ⤷ elem[3] + 5050 ┊ 0.10% ┊ ⤷ js_sys::global::GLOBAL::__getit::h858ef79dc46ee4d3 + 4970 ┊ 0.10% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hcf8c0b5edea628e3 + 4668 ┊ 0.10% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h56d297d6d213a571 + 4380 ┊ 0.09% ┊ ⤷ js_sys::global::GLOBAL::__getit::{{closure}}::h9bcd64b51a58c530 + 3884 ┊ 0.08% ┊ ⤷ js_sys::global::GLOBAL::__init::h8385bbbf5e4398ff + 3870 ┊ 0.08% ┊ ⤷ js_sys::global::get_global_object::hd25920072ad13889 + 683 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::or_else::h71fafd245eeb03e9 + 426 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::{{closure}}::h30e03195a5ee89a5 + 329 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::Global::get_global_this::hec21544dc3795bb9 + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_globalThis_d1e6af4856ba331b + 679 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::or_else::h21ec631e27106b18 + 422 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::{{closure}}::h026d03d60132ae89 + 325 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::Global::get_window::h49d4ae2620bdd15f + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_window_c6fb939a7f436783 + 679 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::or_else::ha69f13b4084a9e1b + 422 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::{{closure}}::h3f256e35a98c8bc9 + 325 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::Global::get_global::h20761de3f955385b + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_global_207b558942527489 + 323 ┊ 0.01% ┊ ⤷ js_sys::global::get_global_object::Global::get_self::hc3cc17d9aa42932a + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_self_ce0dbfc45cf2f5be + 218 ┊ 0.00% ┊ ⤷ js_sys::Function::new_no_args::h82429722e6f22d36 + 39 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newnoargs_e258087cd0daa0ea + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h8a4a0f9009cf0c90 + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Object>::unchecked_from_js::ha62fd368978a839f + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<js_sys::Object,wasm_bindgen::JsValue>>::h3ecff76eff6d8a68 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h4da427f963ce4a6e + 93 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::is_undefined::h2cf444ca9dd06f3b + 14 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::undefined::hdd14304dd9e8b6c9 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h641695001ce9c77b + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<js_sys::Object>>::h46dc1389c2c0ade3 + 4790 ┊ 0.10% ┊ ⤷ wasm_bindgen_futures::queue::QUEUE::__getit::h9b7cfa8ddb54a28c + 4710 ┊ 0.10% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h0daff80cc1fb83ab + 4367 ┊ 0.09% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h24599eb489590369 + 3736 ┊ 0.08% ┊ ⤷ wasm_bindgen_futures::queue::QUEUE::__getit::{{closure}}::h7190d5c3a0675e9f + 2533 ┊ 0.05% ┊ ⤷ wasm_bindgen_futures::queue::QUEUE::__init::habedfc8b5f50bf8c + 2523 ┊ 0.05% ┊ ⤷ wasm_bindgen_futures::queue::Queue::new::h7260122d3cf9a0c6 + 463 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::h61abc19d9cd96ce6 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h6c71e2c41ef8ed0c + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h3ec2a04643bf2bb8 + 251 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::queue::Global::hasQueueMicrotask::h0aaa4eb30872f972 + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::queue::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &wasm_bindgen_futures::queue::Global>::into_abi::hfe0ff7672fc20c47 + 38 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &wasm_bindgen::JsValue>::into_abi::h2afd2e5d2d96affa + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_queueMicrotask_3cbae2ec6b6cd3d6 + 183 ┊ 0.00% ┊ ⤷ core::cell::RefCell<T>::new::h4b33c70764922198 + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::new::hadafcc9ee9944bb4 + 50 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::closure::IntoWasmClosure<dyn core::ops::function::FnMut<(A,)>+Output = R>>::unsize::h25edcec0219bd2b1 + 149 ┊ 0.00% ┊ ⤷ js_sys::Promise::resolve::hb70471cda5db072d + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_resolve_b0083a7967828ec8 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h4658ca3e59f9973d + 71 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::queue::_::<impl wasm_bindgen::cast::JsCast for wasm_bindgen_futures::queue::Global>::unchecked_from_js::hdc1e13dfdd63309e + 93 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::is_function::hb6c00113f9049251 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::queue::Global>::h6d4b61906c9b9372 + 51 ┊ 0.00% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T>::new::h58289af936b7e881 + 14 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::undefined::h1e2c57759f5dbe7f + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hae40e9d748df0793 + 221 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h8a8949c14140a948 + 217 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_bindgen_futures::queue::Queue>>::hca8f58013bdaa656 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::queue::Queue>::h387c4a48a48dd565 + 4031 ┊ 0.08% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h8bd5adeb4948d68d + 3655 ┊ 0.07% ┊ ⤷ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::h2699d9835997e73b + 3568 ┊ 0.07% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::vec::Vec<T>>::into_abi::h63371a8487666251 + 3159 ┊ 0.06% ┊ ⤷ alloc::vec::Vec<T,A>::into_boxed_slice::hf2a00331eb770cd3 + 2273 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::shrink_to_fit::h0f34efe2629754fa + 2062 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::hc294618f52e45974 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hd282bc13d3c7adff + 92 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::{{closure}}::heb4946c5d5d9ee6e + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h3db4f177ec023fcd + 299 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::boxed::Box<[T]>>::into_abi::h6729cb3dcba0bc8a + 207 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::VectorIntoWasmAbi for wasm_bindgen::JsValue>::vector_into_abi::h1773e3177c81ddf0 + 36 ┊ 0.00% ┊ ⤷ core::mem::forget::h50a49afb3acdf814 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for *const T>::into_abi::haea29e7ca6940def + 3890 ┊ 0.08% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<wasm_bindgen_futures::queue::QueueState>>::hfabe8fbc5317be37 + 3837 ┊ 0.08% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::he5cdf9d3b7ba5dd7 + 3097 ┊ 0.06% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::queue::QueueState>::he12b83e55cc6eff5 + 3044 ┊ 0.06% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<alloc::collections::vec_deque::VecDeque<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>>::h694d5deb14e64a3c + 2980 ┊ 0.06% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<alloc::collections::vec_deque::VecDeque<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>>::h004e4b70431031f3 + 2927 ┊ 0.06% ┊ ⤷ core::ptr::drop_in_place<alloc::collections::vec_deque::VecDeque<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>::h69a3ba1c7b4c23b7 + 2619 ┊ 0.05% ┊ ⤷ <alloc::collections::vec_deque::VecDeque<T,A> as core::ops::drop::Drop>::drop::hed95ef0f86eb2525 + 2162 ┊ 0.04% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::as_mut_slices::h1c548a1b8b0ec53a + 1736 ┊ 0.04% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::slice_ranges::h922a7fd4362b02f3 + 1075 ┊ 0.02% ┊ ⤷ core::slice::index::range::h96ea92286de07d3d + 68 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::ops::range::RangeBounds<T>>::start_bound::h57af7825aed3b7d8 + 68 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::ops::range::RangeBounds<T>>::end_bound::h06c357523f469865 + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>]>::hb7a6f0879232ca91 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<alloc::collections::vec_deque::VecDeque<T,A> as core::ops::drop::Drop>::drop::Dropper<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>::hf51dea0a40ad604b + 69 ┊ 0.00% ┊ ⤷ <<alloc::collections::vec_deque::VecDeque<T,A> as core::ops::drop::Drop>::drop::Dropper<T> as core::ops::drop::Drop>::drop::h17d32b10a8b6e4c9 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>::hfdade0bc45ced515 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h9fdb5eb9e7b24185 + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::h9351331cafd89e78 + 3137 ┊ 0.06% ┊ ⤷ wasm_bindgen::externref::HEAP_SLAB::__getit::h0ac3786e549f3682 + 3057 ┊ 0.06% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::h770559e873993290 + 2755 ┊ 0.06% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h063caf063bf26e3b + 1279 ┊ 0.03% ┊ ⤷ wasm_bindgen::externref::HEAP_SLAB::__getit::{{closure}}::h212217ed9ebecd2f + 491 ┊ 0.01% ┊ ⤷ wasm_bindgen::externref::HEAP_SLAB::__init::h2e7fce39e957c487 + 225 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::h80dbabb61e681a7e + 183 ┊ 0.00% ┊ ⤷ wasm_bindgen::externref::Slab::new::hb4a1c088a08af52b + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::hf3945bb5ed86944e + 221 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h80cd6dd48d746c4c + 992 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::cell::Cell<wasm_bindgen::externref::Slab>>>::h85fb0c2f5907499b + 913 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::cell::Cell<wasm_bindgen::externref::Slab>>::h90d451fb3f25e311 + 860 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<wasm_bindgen::externref::Slab>>::hd1b339ee8c557057 + 807 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen::externref::Slab>::h2ea2d403f7a8b43d + 754 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<usize>>::h682752b30be39616 + 576 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<usize>>::h2e3239fc51805862 + 523 ┊ 0.01% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hf8088b7687c7068c + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h93f3db70e7dc232a + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h62017da66adbf900 + 2791 ┊ 0.06% ┊ ⤷ wasm_bindgen_futures::queue::Queue::new::{{closure}}::hcf8cf00f5a413b21 + 2665 ┊ 0.05% ┊ ⤷ wasm_bindgen_futures::queue::QueueState::run_all::hfb7c7dd223fd1ca7 + 851 ┊ 0.02% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::run::h4bef27a431d944b8 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_mut::h532385d00b3e6661 + 90 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::set::h678e0cde10344466 + 79 ┊ 0.00% ┊ ⤷ core::task::poll::Poll<T>::is_ready::ha4f3f14843d89b96 + 45 ┊ 0.00% ┊ ⤷ core::task::wake::Context::from_waker::h580522e179e6c5bf + 541 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow::hbd8c13c0275f3c2e + 378 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow::ha0650e8ab88f5c01 + 249 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::cell::Ref<alloc::collections::vec_deque::VecDeque<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>>::h6c0e35484f62cfb5 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::BorrowRef>::h479968257ba856bf + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRef as core::ops::drop::Drop>::drop::h339ee08daee337a0 + 214 ┊ 0.00% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::pop_front::h71f2f3d0c1b4cc26 + 59 ┊ 0.00% ┊ ⤷ <core::cell::Ref<T> as core::ops::deref::Deref>::deref::h026979fb560da4d2 + 38 ┊ 0.00% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::len::hd072a2f706fab439 + 817 ┊ 0.02% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::force_wake::h9bb5f6f5559d294f + 741 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h57575a37c899928c + 552 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hd8f9e1476f7cd637 + 124 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::force_wake::{{closure}}::hea7ce51fcfc7dc98 + 62 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::queue::Queue::push_task::h503366f1af1fcb9a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::task::singlethread::Task::force_wake::{{closure}}>::h49d448e8f75736c3 + 566 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h062851a21fa82158 + 553 ┊ 0.01% ┊ ⤷ alloc::string::String::push::ha2b9c9843872cdd1 + 206 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h833169ef62dc13aa + 559 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::from_raw::h0bdee588c5c5b360 + 502 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T,A>::from_raw_in::hb11f3f721940d930 + 319 ┊ 0.01% ┊ ⤷ alloc::rc::data_offset::h7c88dd1453e8f8b7 + 555 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_char::h062851a21fa82158 + 206 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h657ccf3b43de7ebf + 433 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h5b7ec4dc7cf71894 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Float32Array>::from_abi::h6d274680d747f9ae + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::h83571710320a7413 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for f32>::from_abi::h387f72b5456e16ed + 8 ┊ 0.00% ┊ ⤷ type[34]: (i32, i32, f32, i32, i32) -> nil + 5 ┊ 0.00% ┊ ⤷ type[63]: (f32) -> f32 + 423 ┊ 0.01% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::take_box::hb07a28eb680623de + 420 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h7cb6fb696f238893 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::BigUint64Array>::from_abi::hf9026f93f09816dc + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::h9a1ad1fabf9c99f3 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for u64>::from_abi::hf85fa31cac71241e + 420 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hf101535b9bb3ac95 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::BigInt64Array>::from_abi::h80099ba35cac8154 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for i64>::from_abi::h5ee7b841f9734b8a + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::h0aab996e43171443 + 418 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h9846172054461e3a + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Int32Array>::from_abi::hc92c218c8f2add0a + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::hb7668d2c7b8f381d + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for i32>::from_abi::h90a639c93fd54868 + 397 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h37a2c6916b4b8986 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Float64Array>::from_abi::hcdfd572aff0e1a7c + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for f64>::from_abi::h30e607b5dfaea19e + 8 ┊ 0.00% ┊ ⤷ type[36]: (i32, i32, f64, i32, i32) -> nil + 387 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h80d42bb1c62a6c5e + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Int8Array>::from_abi::hb29453ac92ee356c + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for i8>::from_abi::hf3e75ffc718d8f53 + 387 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h9ffbe92706ae47a0 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Uint16Array>::from_abi::he64a99cc4dbc80e8 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for u16>::from_abi::hb2a9167838004518 + 387 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hf029a24a979e2f02 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Int16Array>::from_abi::h094c4df607bf0cc4 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for i16>::from_abi::h9069b0302473f9ba + 369 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke4_mut::hbb280a9be57c6487 + 360 ┊ 0.01% ┊ ⤷ <dyn core::ops::function::FnMut<(A,)>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::destroy::h83dfa0ae616ca1c4 + 135 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h0d37317876a49d77 + 75 ┊ 0.00% ┊ ⤷ core::mem::drop::h3e8fb530e8607c3d + 356 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h636167ee66e04ba6 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Uint8ClampedArray>::from_abi::hb9be9e4d15a82e0f + 356 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hbba7162084926fc4 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Uint32Array>::from_abi::hf76846e27aa83103 + 356 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hdc9a17debac9b5c0 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Set>::from_abi::hcb75053cda1a2b99 + 339 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hc160bf46d39a9260 + 322 ┊ 0.01% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for u64>::fmt::hef59cc83400d6d86 + 337 ┊ 0.01% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for u32>::fmt::h736963acc73d1e44 + 325 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h4f743df56eb0f574 + 325 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hc5f0df7921893d24 + 324 ┊ 0.01% ┊ ⤷ <char as core::fmt::Debug>::fmt::h8b6abe23f140dc8b + 307 ┊ 0.01% ┊ ⤷ core::fmt::Write::write_char::h81332e5410015682 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h1446bc1ae1f4791b + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h3c95064b8cc8d7a9 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h4bbd68b834a724e3 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for u32>::fmt::h7c6bd0a712068502 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h674a0c754195df5f + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h67a8dc1e365b1c42 + 304 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hd2458754581ed3f5 + 220 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::Debug for usize>::fmt::h0bc4f4584da52e92 + 303 ┊ 0.01% ┊ ⤷ <&T as core::fmt::Debug>::fmt::h651df2d0b6bce1ee + 219 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::fmt::Debug>::fmt::he73c737b8739a78e + 296 ┊ 0.01% ┊ ⤷ core::fmt::Write::write_char::h90f38da9e044d663 + 285 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::into_raw_waker::raw_wake_by_ref::h8c2275c12e0d23fe + 160 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::wake_by_ref::h7aa48cf59acf776b + 282 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::into_raw_waker::raw_wake::h72272db5bae6b682 + 215 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::wake::h5d3bb0f94069e704 + 278 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::h61669ab8f9e835cd + 278 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::closures::invoke3_mut::hcbaae8a62773c466 + 263 ┊ 0.01% ┊ ⤷ <std::panicking::begin_panic_handler::FormatStringPayload as core::panic::PanicPayload>::take_box::h38a8f47fadd53c0f + 237 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::invoke1_mut::hf117f844f9419ea2 + 234 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::invoke2_mut::h37e980242c3acd6d + 216 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::h868010b59f1cf961 + 208 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hc9c35030fae5014d + 208 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h024eb2018576eda7 + 188 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::invoke1_mut::he53ca4ceaf605edf + 181 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hb9bdcaba13fbe5a6 + 180 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once{{vtable.shim}}::hf9be3feb8be902e3 + 104 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hd88bb525b092e3ea + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::into_raw_waker::raw_clone::h177e8f53236cd396 + 155 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic_handler::FormatStringPayload as core::panic::PanicPayload>::get::ha9921fb3303902c9 + 128 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::into_raw_waker::raw_drop::h01a9ab0a8e2e5a6c + 68 ┊ 0.00% ┊ ⤷ core::mem::drop::hd8540c21fe802c5c + 119 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::hf5df60cdc9d11a54 + 62 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for wasm_bindgen::JsValue>::into_abi::h08a78a545bedc6a4 + 116 ┊ 0.00% ┊ ⤷ <core::ops::range::Range<Idx> as core::fmt::Debug>::fmt::h13ff8f221a029881 + 111 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic::Payload<A> as core::panic::PanicPayload>::get::h72a113842b4c5045 + 110 ┊ 0.00% ┊ ⤷ std::alloc::default_alloc_error_hook::h53c93b47f409675b + 104 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::h58e976d2b3d8b80f + 39 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for bool>::into_abi::h41e1a9d30f6da0bd + 95 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::io::Write::write_fmt::Adapter<alloc::vec::Vec<u8>>>::h3e4506ab5268f15a + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h7fee2f0a57c041b8 + 81 ┊ 0.00% ┊ ⤷ futures_task::noop_waker::noop_clone::hff9a7b726481c486 + 81 ┊ 0.00% ┊ ⤷ <core::fmt::builders::PadAdapter as core::fmt::Write>::write_char::hfbb5d2a2cb4d7d55 + 81 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic_handler::StaticStrPayload as core::panic::PanicPayload>::take_box::h9ea8d38f6fb2d648 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Array>::from_abi::h511c4564bd4d0567 + 76 ┊ 0.00% ┊ ⤷ <std::io::Write::write_fmt::Adapter<T> as core::fmt::Write>::write_str::h0ff49d1b1b6f4f3e + 71 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::hbef94c01d8f2ab7a + 71 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Write>::write_str::hbef94c01d8f2ab7a + 65 ┊ 0.00% ┊ ⤷ <core::net::display_buffer::DisplayBuffer<_> as core::fmt::Write>::write_str::he7c1d4ec00b88a3b + 59 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::strong::h3fe62ddfcac49b29 + 57 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_char::h445bebf106716dca + 57 ┊ 0.00% ┊ ⤷ <std::io::Write::write_fmt::Adapter<T> as core::fmt::Write>::write_str::h3e3885f1be1f0fb2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::queue::Queue::new::{{closure}}>::h0014ab6127e0348e + 46 ┊ 0.00% ┊ ⤷ <core::num::nonzero::NonZeroUsize as core::fmt::Debug>::fmt::hc9b02ce1d49f699e + 44 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic_handler::FormatStringPayload>::hc4e3b9a43e95b213 + 36 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hbb1f89ce7a236805 + 36 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hdf0bbf5ea3e8f209 + 34 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hb6ab162078ab5f98 + 34 ┊ 0.00% ┊ ⤷ <T as core::any::Any>::type_id::hebe5185c0ef4e16d + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for u8>::from_abi::h918e8fad1687b9f1 + 31 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::String>::hb9f4a6f09724c4f8 + 31 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::String>::hab725859e3c1a5cb + 30 ┊ 0.00% ┊ ⤷ <core::cell::BorrowError as core::fmt::Debug>::fmt::h573443824b73d2e6 + 30 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h1738d1094ba0f72d + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h172a5faab6d674e1 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h2d70c0a4758be790 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h1de20145e281ed52 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&u32>::hc540e2d04e209655 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h4075543e66d93b13 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&core::option::Option<usize>>::h7317b39979493924 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&str>::h6600bf7978ac0a4a + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::panicking::begin_panic::Payload<&str>>::h150971280f0446d9 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h4670aa5adbc8614d + 29 ┊ 0.00% ┊ ⤷ futures_task::noop_waker::noop::hce96cd2a7d66888b + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&usize>::h0c4956800d7f14f2 + 22 ┊ 0.00% ┊ ⤷ <core::fmt::Arguments as core::fmt::Display>::fmt::hb592aa44d0511c35 + 22 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hb65107c98ca4ff83 + 21 ┊ 0.00% ┊ ⤷ <std::panicking::begin_panic_handler::StaticStrPayload as core::panic::PanicPayload>::get::hdb520a6b24258d73 + 19 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::h8af640ed2796f4ff + 19 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::fmt::Display>::fmt::h716fe1dd8cfb591f + 19 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::had2bfb80f48ecce7 + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h14074724b2d86e41 + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h895451b62f915122 + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h9381046b9fbe2b98 + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h60128eda8224193a + 16 ┊ 0.00% ┊ ⤷ <core::fmt::Error as core::fmt::Debug>::fmt::h1738d1094ba0f72d + 16 ┊ 0.00% ┊ ⤷ <core::alloc::layout::LayoutError as core::fmt::Debug>::fmt::h481db91ace1b9e85 + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::h628ed859590e3c1b + 16 ┊ 0.00% ┊ ⤷ core::fmt::Write::write_fmt::hc6eae1a334ee28ba + 15 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h7ad08a4d952a39ed + 14 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Debug>::fmt::hb46c73bdf4b01c5c + 4 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<&alloc::boxed::Box<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::h1bde1999ec285555 + 4 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<()>::h0fdf7771dc4a7479 + 4 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::hf5072dd215ca1c9f + 4 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<char>::h9001cc437f19b03a + 4 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::fmt::Error>::h0f47ae79b5b8f0ae + 7776 ┊ 0.16% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hd028a4d5b8be9a0b + 5138 ┊ 0.10% ┊ ⤷ alloc::raw_vec::finish_grow::hcd7feda87d3607c9 + 1848 ┊ 0.04% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::hae727a8348957075 + 1713 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::hd181b2a92361873e + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h999529ee98459372 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h62dec971885acdd5 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h2ae066a62d53723f + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::hda5a19d2000229f9 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hfd33bac2402460f1 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h5ec21f5cccca1863 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::he231ac7f71eb2f7d + 565 ┊ 0.01% ┊ ⤷ core::cmp::max_by::h2c71cfe55df02fc3 + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hbf00241b98f1a513 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h9b5744541f5276fe + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::he1bdcb42f68e660a + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h5c5d26a1e451bf5a + 3923 ┊ 0.08% ┊ ⤷ wasm_bindgen_futures::queue::Queue::schedule_task::h38da2df33fbb93f9 + 3218 ┊ 0.07% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::push_back::hfe1d445945c71320 + 2899 ┊ 0.06% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::grow::hb1849fe4787fc8ca + 2067 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hdb23951fee4d48a6 + 1747 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hd99775a117fcdbdb + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::ha8802b6092ee5222 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hf6f0b1820eebd3a3 + 653 ┊ 0.01% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::handle_capacity_increase::ha79547e8f6a77c70 + 184 ┊ 0.00% ┊ ⤷ js_sys::Promise::then::h9dd925665e7a105d + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_then_0c86a60e8fcfe9f6 + 124 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::queue::queueMicrotask::hae3fbc56c27ca241 + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_queueMicrotask_481971b0d87f3dd4 + 2135 ┊ 0.04% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::spawn::h1e414bee99982379 + 679 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd3f6d09273afc3d7 + 490 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0a0d3065948684fa + 62 ┊ 0.00% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::spawn::{{closure}}::h15519bc2204a9418 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::task::singlethread::Task::spawn::{{closure}}>::h9d54a46a5867918f + 463 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::h2ba730b3064e0625 + 183 ┊ 0.00% ┊ ⤷ core::cell::RefCell<T>::new::he2c0d0af2750a2a9 + 78 ┊ 0.00% ┊ ⤷ core::task::wake::Waker::from_raw::hf59f2d4c96a459af + 1915 ┊ 0.04% ┊ ⤷ core::char::methods::<impl char>::escape_debug_ext::h7caaa1213990ba6e + 655 ┊ 0.01% ┊ ⤷ core::unicode::printable::is_printable::h1abd1ee70f8981cc + 375 ┊ 0.01% ┊ ⤷ core::unicode::printable::check::hee828726bd182ff7 + 358 ┊ 0.01% ┊ ⤷ core::unicode::unicode_data::grapheme_extend::lookup::hcf7332614736cfca + 1878 ┊ 0.04% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hcb54c6efc4cf6957 + 1576 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h5b328f2814fc891c + 961 ┊ 0.02% ┊ ⤷ reactive_graph::owner::OWNER::__getit::{{closure}}::h5b0b589e6a4f205a + 261 ┊ 0.01% ┊ ⤷ reactive_graph::owner::OWNER::__init::hb2f6e2eaad41ede6 + 251 ┊ 0.01% ┊ ⤷ <core::cell::RefCell<T> as core::default::Default>::default::h2d532d6b63f07c27 + 18 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h2014187fbf8234e2 + 221 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h47c83571e63a1602 + 196 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::cell::RefCell<core::option::Option<reactive_graph::owner::Owner>>>>::hdb75d9020810e578 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<core::option::Option<reactive_graph::owner::Owner>>>::hfff8b508a0484b1a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<reactive_graph::owner::Owner>>>::hcfd5efaf1d053a3c + 1867 ┊ 0.04% ┊ ⤷ reactive_graph::graph::sets::SourceSet::insert::h5b5c40deb333c44d + 1812 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::ha7be1751476ae195 + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h2be6b9328da6e2d1 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hcbb731975f8f51f5 + 1664 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::static_local::Key<T>::get::hd7259277d52dec03 + 1362 ┊ 0.03% ┊ ⤷ std::sys::common::thread_local::lazy::LazyKeyInner<T>::initialize::h8e84705d6fdafc69 + 811 ┊ 0.02% ┊ ⤷ any_error::ERROR_HOOK::__getit::{{closure}}::h4fe5df98b0ca3d8b + 186 ┊ 0.00% ┊ ⤷ any_error::ERROR_HOOK::__init::h2f45a84300fb6960 + 111 ┊ 0.00% ┊ ⤷ core::cell::RefCell<T>::new::h09d2b372d954ada4 + 146 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::ha8efe6cabfc5d8da + 196 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::cell::RefCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>>::h53120a3a79af4ffd + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::h28aa90272a57856b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>>::h2ca58c81f8411967 + 1581 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<reactive_graph::graph::source::AnySource>>::h3f93b4f00a04367d + 1528 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::he4916218e5145b4a + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h0771cead685f05ba + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h4f34b32667d29dab + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::hf47bc798c8d91b7a + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<reactive_graph::graph::source::AnySource,alloc::alloc::Global>>::h3783ae8d844beb43 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::hd588f5c0eeffc6b7 + 1552 ┊ 0.03% ┊ ⤷ core::str::pattern::StrSearcher::new::h49db96838465736f + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::h1276e5312b5cfe71 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h758ddd2f068249c5 + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn any_error::ErrorHook>>::hb4b86bd765bff10e + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h29e41e2125459304 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hb750427928ed687c + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn any_error::ErrorHook,&alloc::alloc::Global>>::ha8235182a11b050b + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h952f6fd4da8a6ad1 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn any_error::ErrorHook>::ha2fd25330de7e378 + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::hf7132c3eaf54b07b + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h3bc251c13ca583bd + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h0984df67e14f0dd7 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::error::Error+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::ha44afc63c98d5f49 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hd4818a277ece1239 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::error::Error+core::marker::Sync+core::marker::Send>::hee29a760b028e875 + 1270 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<reactive_graph::channel::Inner>>::h0a16607b0c7bf03c + 1217 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hbda59651ee6128b3 + 977 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h3184fd85d5b80b3e + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<reactive_graph::channel::Inner,&alloc::alloc::Global>>::h9714896341b12cf7 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h8e2fb681194dd309 + 217 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::channel::Inner>::ha37164f63ede2a78 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_core::task::__internal::atomic_waker::AtomicWaker>::h0fd109b359604b26 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<core::task::wake::Waker>>>::h319b728dd16e18d2 + 53 ┊ 0.00% ┊ ⤷ <reactive_graph::channel::Inner as core::ops::drop::Drop>::drop::h088573c7e786fd27 + 1198 ┊ 0.02% ┊ ⤷ elem[1] + 967 ┊ 0.02% ┊ ⤷ <dyn core::ops::function::FnMut<(A,)>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::destroy::he249ddac1f289a98 + 682 ┊ 0.01% ┊ ⤷ core::mem::drop::h4e05f18ccaf4430e + 607 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::FnMut<(web_sys::features::gen_Event::Event,)>+Output = ()>>::hc4117a87700c0449 + 526 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h4c892ab9881a6508 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hbaad731f0a2c4978 + 135 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h41a09e32da466b7b + 188 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::invoke1_mut::hc593c2c95a47a878 + 29 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::thread::local::AccessError>::h45e22e90729ca1f8 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h8755599341733b4a + 1091 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h27eb6afaee998bf5 + 905 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h254e708c29247348 + 800 ┊ 0.02% ┊ ⤷ alloc::raw_vec::handle_reserve::h904619fcf8565efd + 571 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h5d069ff959e67bba + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::hccb9249c484b4686 + 1009 ┊ 0.02% ┊ ⤷ reactive_graph::graph::sets::SourceSet::clear_sources::h97e41755e18efb6c + 409 ┊ 0.01% ┊ ⤷ <reactive_graph::graph::source::AnySource as reactive_graph::graph::source::Source>::remove_subscriber::h70dc62d784638167 + 207 ┊ 0.00% ┊ ⤷ reactive_graph::graph::sets::SourceSet::take::h37da36a735c7936d + 152 ┊ 0.00% ┊ ⤷ core::mem::take::hafdc7787e7820c47 + 995 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<wasm_bindgen_futures::Inner>>>::hb3f2d5bd19af2a43 + 942 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h5488857ecef57a0f + 202 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<wasm_bindgen_futures::Inner>>::hd9777bd165e10160 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<wasm_bindgen_futures::Inner>>::h6bbdd56b9178b095 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::Inner>::h19fe85fca6b16d6a + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::hfea8f93db767cb38 + 963 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>::he6dae024682bb360 + 910 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h1d0c7899512aa445 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::task::singlethread::Task>::hf7b12f5a2d795620 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<core::option::Option<wasm_bindgen_futures::task::singlethread::Inner>>>::h6b7472b41a85b3c2 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<wasm_bindgen_futures::task::singlethread::Inner>>>::h490a3569a0ec4cd7 + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::he447dc8d30fa0eed + 954 ┊ 0.02% ┊ ⤷ core::fmt::Formatter::pad::h73f218cb892cda46 + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h96ba97b428b8ce61 + 915 ┊ 0.02% ┊ ⤷ <str as core::fmt::Debug>::fmt::h55e1c76288f8708d + 902 ┊ 0.02% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::he810b463082bb437 + 893 ┊ 0.02% ┊ ⤷ core::str::count::do_count_chars::he917c17c44db8964 + 841 ┊ 0.02% ┊ ⤷ core::fmt::Formatter::pad_integral::h1b9ab4229b529a1d + 68 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::pad_integral::write_prefix::hc780479f059212a6 + 779 ┊ 0.02% ┊ ⤷ js_sys::global::he5cf0fb30d8a4f18 + 756 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h72ffd2cff76e3939 + 561 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h31cd7b8796800273 + 205 ┊ 0.00% ┊ ⤷ js_sys::global::{{closure}}::h660b9b57cb678bf8 + 148 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::clone::Clone>::clone::h36720fc53f7cbe72 + 77 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::h0cb60a3751338109 + 755 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>>::h41ef94f0f10fbedd + 636 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::hce5dc5022fa79c52 + 328 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hd3110b591d562c9d + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)]>::hf54fb531426d08cd + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>>::h8762415f60a8ddbe + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hcbc633a9cf621537 + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hae351351312ce691 + 679 ┊ 0.01% ┊ ⤷ std::sys::wasm::locks::rwlock::RwLock::read::h8839ab9db3d1a328 + 612 ┊ 0.01% ┊ ⤷ <wasm_bindgen::JsStatic<T> as core::ops::deref::Deref>::deref::h2ec57b4b56066b05 + 548 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h61ec65125ee0f1f0 + 357 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h61489e252df0c784 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsStatic<T> as core::ops::deref::Deref>::deref::{{closure}}::h07a38345afe3b20d + 604 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h96160c81b1226ee4 + 290 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h624831978483d486 + 215 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::h54f901b3721e69de + 147 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Window::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Window::Window>::instanceof::ha185649e8f68291a + 47 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Window_f401953a2cf86220 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h86722b1e3bc188e9 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Window::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Window::Window>::unchecked_from_js::h3b036a501fcbc55e + 585 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::extend_from_slice::h8be3b6c960660c20 + 388 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::h9c4ba3ffeee0f19d + 576 ┊ 0.01% ┊ ⤷ core::fmt::Formatter::debug_tuple_field1_finish::haa19befa5227de69 + 341 ┊ 0.01% ┊ ⤷ core::fmt::builders::DebugTuple::field::hd4872990ab4972f4 + 574 ┊ 0.01% ┊ ⤷ <core::fmt::builders::PadAdapter as core::fmt::Write>::write_str::h2a4b3be5f6da6eeb + 565 ┊ 0.01% ┊ ⤷ core::cmp::max_by::h9f14d684c9a9a299 + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h525b8a4d27a79a78 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h2af642c73d7ebe6c + 565 ┊ 0.01% ┊ ⤷ core::cmp::max_by::h286cf5d01b0d807f + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::he1efa9cb73af9317 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::hceaf93906d34d592 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::hef78200806ba10a6 + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::ha60958477c33b75a + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h1116649807c97862 + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::hc90393491a6f2fab + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::ha47dada86cba2a3b + 523 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow_mut::hdedd9b21ca36bb8c + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::hf0d58b216811af25 + 486 ┊ 0.01% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::h9149b28c5b460c64 + 111 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::breaks_if_inlined::h488309d13af021ce + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_closure_wrapper15410 + 439 ┊ 0.01% ┊ ⤷ <std::io::error::Error as core::fmt::Display>::fmt::h2b5114898f424305 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn core::future::future::Future+Output = ()>>>::hcac35da9f70f05c3 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::future::future::Future+Output = ()>>::hd93a58f56539369d + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9fc3bf423b640a96 + 434 ┊ 0.01% ┊ ⤷ core::fmt::builders::DebugStruct::field::h652ff94e161d8713 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::h0d54db4024fdea7b + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::ha99af9df590d0796 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>>::hefd06d40f18d66d6 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h3b7eb232f447ba25 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h493a7a2097c7e0bd + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h7afbf73ceff584a1 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h292ae84813481a8e + 342 ┊ 0.01% ┊ ⤷ core::fmt::num::imp::fmt_u64::hdd2278ea871a5fc5 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h72486eb253d0f9fd + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h1cabc8b6f9bfe07e + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h2696857e5e1fcfb5 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::he38fe7b99c9fbc52 + 310 ┊ 0.01% ┊ ⤷ <&A as core::alloc::Allocator>::deallocate::he269f3cc89e596f6 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::ha3bab2f567d73d3c + 303 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h9d332ac3b371acaf + 303 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::ha2895bc0dd77871c + 283 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::task::singlethread::Task::into_raw_waker::h56269677798f8035 + 106 ┊ 0.00% ┊ ⤷ alloc::rc::Rc<T,A>::into_raw::h9812feecdfb1758d + 78 ┊ 0.00% ┊ ⤷ core::task::wake::RawWaker::new::h933635f259dfe78c + 262 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next_back::h50852d25c6b62ff5 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::backward_unchecked::hd474af68d11710b3 + 249 ┊ 0.01% ┊ ⤷ alloc::collections::vec_deque::VecDeque<T,A>::to_physical_idx::hdcfd3769ddb493ab + 230 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::debug_struct_field2_finish::h78895e4334def2f9 + 15 ┊ 0.00% ┊ ⤷ type[21]: (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) -> i32 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hb1372b22d057699e + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hb664479e813e53cf + 223 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen::closure::Closure<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>>::hd2776135e7cbfa6d + 170 ┊ 0.00% ┊ ⤷ <wasm_bindgen::closure::Closure<T> as core::ops::drop::Drop>::drop::h80aa3bbbd84bb274 + 53 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::ha3f53815188e4a44 + 25 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_cb_drop + 221 ┊ 0.00% ┊ ⤷ futures_task::noop_waker::noop_raw_waker::hd46a99665dfd12aa + 78 ┊ 0.00% ┊ ⤷ core::task::wake::RawWaker::new::hf5ea4043aa21a7dc + 206 ┊ 0.00% ┊ ⤷ core::fmt::builders::DebugStruct::finish_non_exhaustive::h23530284117c2faa + 206 ┊ 0.00% ┊ ⤷ reactive_graph::channel::Sender::notify::h5e467068ee29bd24 + 86 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::store::hd1d8a610866cb671 + 204 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::debug_struct_field1_finish::hd490331c1d1c59f5 + 186 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>::hb65b59c749e36257 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::effect::inner::EffectInner>>::ha265044057b6fa42 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::effect::inner::EffectInner>::hf7739e802753ba89 + 181 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::ok::h0a215138be856779 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::async_derived::inner::ArcAsyncDerivedInner>>::ha54b13f892981f78 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h30d52ffe0e3166fc + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<slotmap::basic::SlotMap<reactive_graph::owner::arena::NodeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>>::h633a3bde44a16109 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hd1294339703b5dda + 159 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::LowerHex for i32>::fmt::h5d4b35a80534cf61 + 158 ┊ 0.00% ┊ ⤷ core::fmt::num::<impl core::fmt::UpperHex for i32>::fmt::h4222c50385ef17f6 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_bindgen_futures::task::singlethread::Inner>>::h9a4dd5c44060a21c + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen_futures::task::singlethread::Inner>::hba89c911d37d2683 + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(wasm_bindgen::closure::Closure<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>,wasm_bindgen::closure::Closure<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>)>>::hb967c0544ca15292 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(wasm_bindgen::closure::Closure<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>,wasm_bindgen::closure::Closure<dyn core::ops::function::FnMut<(wasm_bindgen::JsValue,)>+Output = ()>)>::hc419ba0988371273 + 148 ┊ 0.00% ┊ ⤷ js_sys::Array::length::h55f3219fde699975 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_length_cd7af8117672b8b8 + 147 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h33ca320f489d5811 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::hd251d018d3c55355 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h0d6550dd6942727b + 114 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h467950a8422a76a5 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<js_sys::Object> for wasm_bindgen::JsValue>::from::hac9eb2ba9b5a5b25 + 103 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::replace::h83f7384794d2508a + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h787b88b9048093e8 + 93 ┊ 0.00% ┊ ⤷ <&T as core::fmt::Display>::fmt::hb7de5a4630cf4c94 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<dyn any_error::ErrorHook>>>::he3b5dfaf2900dc26 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::task::wake::Waker>>::hb0397ca1f305c6fa + 84 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::as_string::h05e9a4dac53c9123 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Object>::from_abi::hcc64ca7dc1270fbe + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Uint8Array>::from_abi::h18ff6518878dc62e + 75 ┊ 0.00% ┊ ⤷ <&wasm_bindgen::closure::Closure<T> as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::hc2918fb1983e4426 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::ha806c0af46448c05 + 68 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::h1281732d5de67377 + 67 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::hbf0c5ddf509c5c47 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(hydration_context::SerializedDataId,any_error::ErrorId,any_error::Error)>::h8b358e54c760e314 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<core::option::Option<wasm_bindgen_futures::task::singlethread::Inner>>>::h5011c817ab976c24 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<alloc::collections::vec_deque::VecDeque<alloc::rc::Rc<wasm_bindgen_futures::task::singlethread::Task>>>>::h48737da9a9e255e1 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefMut<wasm_bindgen_futures::Inner>>::ha48b5970e8702608 + 59 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::strong::hb91b7b09452c2ec7 + 59 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::strong::h810346ddc1e9b79f + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for js_sys::Object>::as_ref::h78fe7cfcb00035c3 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Promise>::into_abi::hb0c4a5b2a1e8a378 + 57 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::deref::DerefMut>::deref_mut::he7927dbd34094913 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::channel::Sender>::had53ae4d9ebbae70 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<any_error::Error>::ha541ded57acc7473 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::Promise>::hbc99d059b0586c00 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h70e79afbdf8f82f6 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h7b4e7b4828e90c00 + 52 ┊ 0.00% ┊ ⤷ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::hf17f255e7abe75cd + 50 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::debug_struct::h51632fe39345e689 + 39 ┊ 0.00% ┊ ⤷ <bool as core::fmt::Display>::fmt::h78d4f4f96676b832 + 36 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for i32>::fmt::h8680fb77cf49ea37 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::hd51550eb9a65dc4f + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::hc0fa370140125798 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for u32>::from_abi::h8332ded5f683c770 + 30 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_is_undefined + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::h66b324667bb0bc6a + 22 ┊ 0.00% ┊ ⤷ core::fmt::Formatter::write_fmt::hb1681496ffca058d + 16 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for u32>::fmt::hef52134108805594 + 16 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for u8>::fmt::hb30ba8de6b08cc87 + 16 ┊ 0.00% ┊ ⤷ core::fmt::num::imp::<impl core::fmt::Display for u64>::fmt::h957f2a89a5045a65 + 13 ┊ 0.00% ┊ ⤷ <str as core::fmt::Display>::fmt::h0ae80be026d6a0bc + 11 ┊ 0.00% ┊ ⤷ type[18]: (i32, i32, i32, i32, i32, i32, i32) -> i32 + 6 ┊ 0.00% ┊ ⤷ type[35]: (i32, i32, f64) -> nil + 6 ┊ 0.00% ┊ ⤷ type[57]: (i64, i32) -> i32 + 5 ┊ 0.00% ┊ ⤷ type[55]: (i64) -> i64 + 5 ┊ 0.00% ┊ ⤷ type[66]: (f64) -> f64 + 1387388 ┊ 28.25% ┊ "function names" subsection + 454577 ┊ 9.25% ┊ export "hydrate" + 454566 ┊ 9.25% ┊ ⤷ hydrate + 454516 ┊ 9.25% ┊ ⤷ ssr_modes_axum::hydrate::hb0d2aefd106308bd + 452574 ┊ 9.21% ┊ ⤷ leptos::mount::hydrate_body::ha267ccd78e451492 + 451706 ┊ 9.20% ┊ ⤷ leptos::mount::hydrate_from::h0723f73a3acc0bde + 441747 ┊ 8.99% ┊ ⤷ reactive_graph::owner::Owner::with::h03526cd887adf656 + 439687 ┊ 8.95% ┊ ⤷ leptos::mount::hydrate_from::{{closure}}::h9d031a3697f015e2 + 429798 ┊ 8.75% ┊ ⤷ core::ops::function::FnOnce::call_once::hed6c3aacd02daa2a + 429752 ┊ 8.75% ┊ ⤷ ssr_modes_axum::app::App::ha4083b6fd1a3255f + 429742 ┊ 8.75% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h9a0fa0043cbfcb1b + 429678 ┊ 8.75% ┊ ⤷ ssr_modes_axum::app::App::{{closure}}::h9486132b84418e8e + 429632 ┊ 8.75% ┊ ⤷ ssr_modes_axum::app::__App::h6c0bbd990b29c69e + 422854 ┊ 8.61% ┊ ⤷ leptos::component::component_view::ha2423c754b457196 + 422797 ┊ 8.61% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::hc45a77421f4dce5e + 422655 ┊ 8.60% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h1162f35db64524de + 422513 ┊ 8.60% ┊ ⤷ core::ops::function::Fn::call::heaac224bc91ae8d3 + 422373 ┊ 8.60% ┊ ⤷ routing::components::Router::hb7f7d206ac73704d + 422017 ┊ 8.59% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h26720b7eab93e0cb + 421929 ┊ 8.59% ┊ ⤷ routing::components::Router::{{closure}}::h676a46a3b4cdbc1b + 421802 ┊ 8.59% ┊ ⤷ routing::components::__Router::h656fbca36acdbd10 + 391136 ┊ 7.96% ┊ ⤷ routing::location::server::RequestUrl::parse::h54225954081d6b2c + 391066 ┊ 7.96% ┊ ⤷ routing::location::server::RequestUrl::parse_with_base::hb124193dc4de96e5 + 187024 ┊ 3.81% ┊ ⤷ url::ParseOptions::parse::hc887e1178d0307fe + 186568 ┊ 3.80% ┊ ⤷ url::parser::Parser::parse_url::h0430316951af82aa + 49550 ┊ 1.01% ┊ ⤷ url::host::Host::parse::h86268cdc5cdd1bd6 + 17789 ┊ 0.36% ┊ ⤷ url::host::parse_ipv4addr::h2f15252e8f702083 + 4462 ┊ 0.09% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h13534c228c235219 + 4450 ┊ 0.09% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h31ea25e8d85df4d0 + 4365 ┊ 0.09% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::hccca6c5e0e9cdd2e + 4353 ┊ 0.09% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h420a5aa21120172b + 2252 ┊ 0.05% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h57c2f6158bd3c558 + 2197 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h87fe3dbaae73f93f + 1698 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h515c5ce8bc435bf5 + 1512 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h90157a4aebfddb72 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hfd7f431493a4a6ea + 1162 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hd22bb64cc914d54b + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::hbfe2844f82f65c2e + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h50cdd5c6dc1257a2 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h0e00d9bfb71ab1ab + 1774 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::he3b405453be64028 + 1494 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h6b2d80a1ddcf3bd1 + 1403 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::he36f56dbd40ab242 + 1572 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<&str>>::h439ebe24057d5343 + 1519 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::h5f65b41e915ff645 + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h0e9b1c34b38bcfa9 + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h58754ee4d51ee735 + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h8b25a9a955f21a32 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<&str,alloc::alloc::Global>>::h5ab4e98efe1aab37 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h76eec90a4b4ed4bf + 704 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h8a1acc29d4daed6f + 597 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hc8245a439f62e81b + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h015fd60c14e64bc3 + 461 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h122709fefde62a6b + 384 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h95b3e5a648091156 + 91 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h0a43ea6399c92674 + 428 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u32>>::h81ccc7d2f5fbf83a + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u32>>::h02834905131ccbd5 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hddd1868f833a88ba + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h3fd3abe2a9beb3a7 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::hc7d54cb4a6528ea8 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::hca73dce3e647149e + 328 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h42e1415e85a0e36c + 76 ┊ 0.00% ┊ ⤷ url::host::parse_ipv4addr::{{closure}}::hcc1bc94e6d46da0a + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::ha919cd071b2dd4de + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::hb335e27be9609939 + 279 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::pop::h76f9e14c47025263 + 276 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::pop::h641567a041d8ee78 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<&str>>::h809487d4c5cb63e5 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h32bb921ece096c20 + 240 ┊ 0.00% ┊ ⤷ <core::net::ip_addr::Ipv4Addr as core::convert::From<u32>>::from::h351d5d422e6efc04 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hfa3266451afe7cb2 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h9c9537e6687a457c + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h86caef4ffff27b99 + 178 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<&str>>::hff4130b3e86b2e8c + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h4f557558347dcdb6 + 171 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::last::h9751cba7bf98c104 + 156 ┊ 0.00% ┊ ⤷ <&u32 as core::ops::bit::Shl<u32>>::shl::h67b15b83c4fa979e + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h90ae61b2b0e479f3 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::hcfdd5aadb7a4c5d3 + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hbcda20907a8179c2 + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::enumerate::hf5da11a61ed921a0 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hc77d5191d3de177f + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::h3d63edb2ea91bec3 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::hb5fd84b3f8dc85b9 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::heebf272d2bdbd09f + 16024 ┊ 0.33% ┊ ⤷ url::host::Host::domain_to_ascii::h61e68e3cff250bdf + 15358 ┊ 0.31% ┊ ⤷ idna::domain_to_ascii::hb11b11f18a6c1d62 + 15257 ┊ 0.31% ┊ ⤷ idna::uts46::Config::to_ascii::h4d7d0298460191f6 + 14273 ┊ 0.29% ┊ ⤷ idna::uts46::Idna::to_ascii::ha36cafeaad26d730 + 11662 ┊ 0.24% ┊ ⤷ idna::uts46::Idna::to_ascii_inner::h25f93bde1f92cabf + 9995 ┊ 0.20% ┊ ⤷ idna::punycode::encode_into::h86baccdd5970db5a + 3903 ┊ 0.08% ┊ ⤷ core::iter::traits::iterator::Iterator::min::h6069954e53ba7bdc + 3816 ┊ 0.08% ┊ ⤷ core::iter::traits::iterator::Iterator::min_by::h1aae4dcbd8ea4010 + 3740 ┊ 0.08% ┊ ⤷ core::iter::traits::iterator::Iterator::reduce::h2b7aa08079df1e74 + 1683 ┊ 0.03% ┊ ⤷ <core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::next::h576da7f5bfe871b4 + 1587 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::find::hcead7007475a6e6a + 1335 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::h33497eed2fa72d3d + 1194 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::hf5eed98dd71e25b2 + 457 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::h40cd734ea510008a + 320 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::find::check::{{closure}}::hd40fb7da41dd4721 + 91 ┊ 0.00% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut::h17dced51541448b9 + 141 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h19365456091fc3dc + 89 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::h4fe835a28758895f + 61 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h80424a38dd26c58a + 1613 ┊ 0.03% ┊ ⤷ <core::iter::adapters::filter::Filter<I,P> as core::iter::traits::iterator::Iterator>::fold::h7fff54b9ca1ae93a + 1508 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h142da408624dac3b + 1410 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::hbbe372d7630ad4cb + 1113 ┊ 0.02% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h8d536bb01baa9579 + 975 ┊ 0.02% ┊ ⤷ core::iter::adapters::filter::filter_fold::{{closure}}::h66a50c3624eff958 + 734 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::min_by::fold::{{closure}}::h94c0c8f120f23867 + 659 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h897ec22ee7552563 + 365 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::h7a77724edfb3992d + 276 ┊ 0.01% ┊ ⤷ core::ops::function::FnMut::call_mut::ha819d4706db4f252 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for u32>::cmp::h1e219d562ec81242 + 92 ┊ 0.00% ┊ ⤷ idna::punycode::encode_into::{{closure}}::h979d9a5b97ffc6da + 38 ┊ 0.00% ┊ ⤷ idna::punycode::encode_into::{{closure}}::hbb3d72c821760632 + 553 ┊ 0.01% ┊ ⤷ idna::punycode::value_to_digit::h3e31a78beba8db9b + 181 ┊ 0.00% ┊ ⤷ core::num::<impl u32>::checked_add::h0f456f3c769b8ac9 + 175 ┊ 0.00% ┊ ⤷ core::option::Option<T>::ok_or::h4b287de4a5d2c9d5 + 126 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h69233b7eb28c46a9 + 120 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::clone::Clone>::clone::h2aa59ee30e188573 + 106 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hcd147ff25eaa63b8 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::he5daa0d38190a480 + 69 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::is_ascii::hd0b74a6f4b8c1674 + 64 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::filter::h3259f1c646d3178a + 53 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h1f1a2b79c97eb664 + 300 ┊ 0.01% ┊ ⤷ alloc::string::String::truncate::he9cd1963aa72f2c5 + 123 ┊ 0.00% ┊ ⤷ core::mem::replace::h697098600d53b0a7 + 758 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::any::h75474c786ca712eb + 641 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::hcb52fc4fba452350 + 270 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::any::check::{{closure}}::h7732f4fec0b0ba57 + 103 ┊ 0.00% ┊ ⤷ idna::uts46::Idna::to_ascii::{{closure}}::hafa215cfc0c8ecc5 + 739 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::any::h8617f6ab67e92907 + 622 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h0570dda7eb45c01f + 251 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::any::check::{{closure}}::ha3f8b1f46ba2391f + 84 ┊ 0.00% ┊ ⤷ idna::uts46::Idna::to_ascii::{{closure}}::hb8df531e3308a31e + 335 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeTo<usize>>>::index::h23991bf2f64d0dd4 + 610 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h926c351f4f3cb40d + 69 ┊ 0.00% ┊ ⤷ idna::uts46::Config::to_ascii::{{closure}}::hb2c73dfce41c1c31 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<idna::uts46::Config::to_ascii::{{closure}}>::hf6a0f8951ca777e7 + 565 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h5b84521ee0bd5ec2 + 160 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h56bf6bcc7dd7e51b + 58 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h4a6f9a4571a07848 + 42 ┊ 0.00% ┊ ⤷ <url::parser::ParseError as core::convert::From<idna::uts46::Errors>>::from::h6f77f07c1f4e6d75 + 4682 ┊ 0.10% ┊ ⤷ url::host::parse_ipv4number::ha0fddf68524ccf9e + 1574 ┊ 0.03% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::all::h84e8a6af8a112783 + 1320 ┊ 0.03% ┊ ⤷ url::host::parse_ipv4number::{{closure}}::h4ff2a89efee3294c + 1236 ┊ 0.03% ┊ ⤷ core::ops::range::RangeInclusive<Idx>::contains::h4e7014917d082517 + 1159 ┊ 0.02% ┊ ⤷ core::ops::range::RangeBounds::contains::hfd5ec4456a7bfd03 + 146 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeInclusive<T> as core::ops::range::RangeBounds<T>>::end_bound::he6425771b8f2847a + 86 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeInclusive<T> as core::ops::range::RangeBounds<T>>::start_bound::h5229eab42c6020b3 + 819 ┊ 0.02% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::all::h3efbf1b620eb4a59 + 565 ┊ 0.01% ┊ ⤷ url::host::parse_ipv4number::{{closure}}::he76e09e175b3f205 + 490 ┊ 0.01% ┊ ⤷ core::num::<impl u8>::is_ascii_hexdigit::h45da15c028bcfc99 + 636 ┊ 0.01% ┊ ⤷ core::num::<impl u32>::from_str_radix::h3064a9f0066e2b09 + 621 ┊ 0.01% ┊ ⤷ core::num::from_str_radix::h2fda1046e05ca57d + 329 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::all::h11f6ccd9f88a0589 + 75 ┊ 0.00% ┊ ⤷ url::host::parse_ipv4number::{{closure}}::h004cde9aef0854a8 + 4338 ┊ 0.09% ┊ ⤷ url::host::ends_in_a_number::h610c58825f18e311 + 2298 ┊ 0.05% ┊ ⤷ <core::str::iter::RSplit<P> as core::iter::traits::iterator::Iterator>::next::hbe4049a4e6d4f5bb + 2215 ┊ 0.05% ┊ ⤷ core::str::iter::SplitInternal<P>::next_back::ha6866c01dd337ff2 + 1275 ┊ 0.03% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::ReverseSearcher>::next_match_back::h0f622be1ab7ab6f3 + 68 ┊ 0.00% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::Searcher>::haystack::h3703048081b3adeb + 881 ┊ 0.02% ┊ ⤷ core::str::<impl str>::rsplit::h252919788221270a + 329 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::all::h7fa21fb3ba9b434c + 75 ┊ 0.00% ┊ ⤷ url::host::ends_in_a_number::{{closure}}::h98bdfbd42c124342 + 115 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::is_ok::h8c40c206df41c4f8 + 1782 ┊ 0.04% ┊ ⤷ core::str::<impl str>::find::ha4d7126cce745f0e + 1178 ┊ 0.02% ┊ ⤷ <core::str::pattern::CharPredicateSearcher<F> as core::str::pattern::Searcher>::next_match::h452fa48747d9a7b5 + 968 ┊ 0.02% ┊ ⤷ <core::str::pattern::MultiCharEqSearcher<C> as core::str::pattern::Searcher>::next::h36b5f89db5df17d7 + 376 ┊ 0.01% ┊ ⤷ <F as core::str::pattern::MultiCharEq>::matches::h62229482b50f2d08 + 285 ┊ 0.01% ┊ ⤷ url::host::Host::parse::{{closure}}::hddcf93303c424685 + 381 ┊ 0.01% ┊ ⤷ <F as core::str::pattern::Pattern>::into_searcher::ha7bb96af6dbac876 + 1256 ┊ 0.03% ┊ ⤷ percent_encoding::PercentDecode::decode_utf8_lossy::hfc3981ab7c0876fa + 1000 ┊ 0.02% ┊ ⤷ percent_encoding::decode_utf8_lossy::h72dad2a03ef25d9c + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::from_utf8_unchecked::hb69b889b30dbae31 + 122 ┊ 0.00% ┊ ⤷ <percent_encoding::PercentDecode as core::clone::Clone>::clone::h470c2e37ac7bcdb7 + 402 ┊ 0.01% ┊ ⤷ <alloc::borrow::Cow<B> as core::ops::deref::Deref>::deref::h2e080a0cff9a6436 + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::h2b2ee155e4690160 + 237 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h027eaa6ece870bb4 + 186 ┊ 0.00% ┊ ⤷ core::num::<impl u8>::is_ascii_digit::h7b879f42442b4e15 + 176 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h570a236e8592f6ca + 160 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h9197811bfb435da5 + 132 ┊ 0.00% ┊ ⤷ percent_encoding::percent_decode::hdd1aebe1142cacd8 + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::borrow::Cow<str>>::hc0fbb7e5224573d9 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h72b098a69b19e4c0 + 22530 ┊ 0.46% ┊ ⤷ url::parser::Parser::after_double_slash::h386e735167e0fe38 + 15029 ┊ 0.31% ┊ ⤷ url::parser::Parser::parse_host_and_port::hc710d74dea701ef2 + 9774 ┊ 0.20% ┊ ⤷ url::parser::Parser::parse_host::hdbb0bb4d314f847c + 3737 ┊ 0.08% ┊ ⤷ url::host::Host::parse_opaque::hd6138378414f8e8a + 1732 ┊ 0.04% ┊ ⤷ core::str::<impl str>::find::hab5d282ec0d98799 + 1128 ┊ 0.02% ┊ ⤷ <core::str::pattern::CharPredicateSearcher<F> as core::str::pattern::Searcher>::next_match::h05f128472509c879 + 918 ┊ 0.02% ┊ ⤷ <core::str::pattern::MultiCharEqSearcher<C> as core::str::pattern::Searcher>::next::hcf8e9db375719212 + 326 ┊ 0.01% ┊ ⤷ <F as core::str::pattern::MultiCharEq>::matches::h48b9d63e50584cd2 + 235 ┊ 0.00% ┊ ⤷ url::host::Host::parse_opaque::{{closure}}::h25df4c41a8c2de71 + 381 ┊ 0.01% ┊ ⤷ <F as core::str::pattern::Pattern>::into_searcher::h68819761a2a14944 + 1229 ┊ 0.03% ┊ ⤷ <T as alloc::string::ToString>::to_string::h7d84aead7d3602a2 + 687 ┊ 0.01% ┊ ⤷ <percent_encoding::PercentEncode as core::fmt::Display>::fmt::h7b89072b2254e180 + 105 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha8b00e36a5c74ccc + 96 ┊ 0.00% ┊ ⤷ <percent_encoding::PercentEncode as core::clone::Clone>::clone::h485e5c367a59a346 + 53 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h0fd5568c0e7273bd + 2307 ┊ 0.05% ┊ ⤷ url::parser::Parser::get_file_host::h388daa6c3082ba8c + 116 ┊ 0.00% ┊ ⤷ <url::parser::SchemeType as core::cmp::PartialEq>::eq::h5637977f030ad65d + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h69afd87cf6d4f1b9 + 1424 ┊ 0.03% ┊ ⤷ url::parser::Parser::parse_port::hd08127a20e2b7c3e + 182 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_host_and_port::{{closure}}::he8f2c58ad3a43b21 + 373 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h4a1740ea8325a916 + 247 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h8dcc804e4b00e9af + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::he0c740c335b0fddd + 3859 ┊ 0.08% ┊ ⤷ url::parser::Parser::parse_userinfo::h67d18c2009ffcb61 + 141 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h40c486247ac3031d + 85 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::h562b387371b53c85 + 79 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_none::hb81f4710d1392226 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h2952179edc6e0c99 + 800 ┊ 0.02% ┊ ⤷ <url::host::HostInternal as core::cmp::PartialEq>::eq::hcdf6e47013af8756 + 142 ┊ 0.00% ┊ ⤷ <core::net::ip_addr::Ipv6Addr as core::cmp::PartialEq>::eq::h08782c306b97606f + 117 ┊ 0.00% ┊ ⤷ <core::net::ip_addr::Ipv4Addr as core::cmp::PartialEq>::eq::h0829606ba8532050 + 527 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hc5f372b5e30c092d + 199 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h5eb609fbd2461537 + 20779 ┊ 0.42% ┊ ⤷ url::parser::Parser::parse_file::h3b98d2de54b732b6 + 2661 ┊ 0.05% ┊ ⤷ url::parser::Parser::parse_file_host::h3864727536a33453 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h9fff34987d861150 + 1943 ┊ 0.04% ┊ ⤷ alloc::string::String::drain::h3b23e0779e430895 + 969 ┊ 0.02% ┊ ⤷ core::slice::index::range::h063e7454ed8bd5cf + 1085 ┊ 0.02% ┊ ⤷ url::parser::starts_with_windows_drive_letter_segment::h089c629b10a201b4 + 627 ┊ 0.01% ┊ ⤷ url::Url::path_segments::h9a2c080280538e49 + 494 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h8cd5dd8baa01783b + 70 ┊ 0.00% ┊ ⤷ url::Url::path_segments::{{closure}}::h47d3dfc06013894d + 373 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h62e71e1e6a299fa6 + 349 ┊ 0.01% ┊ ⤷ url::parser::Parser::log_violation_if::h5d69fb2c860175b0 + 84 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_file::{{closure}}::hb68c66862b7b121a + 349 ┊ 0.01% ┊ ⤷ url::parser::Parser::log_violation_if::hbb5df5182b58b0df + 84 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_file::{{closure}}::h17a9be6543b66f9b + 290 ┊ 0.01% ┊ ⤷ url::Url::host_str::hdf30bac7a615b1ea + 91 ┊ 0.00% ┊ ⤷ url::Url::has_host::hb9ee2a0135f025f5 + 237 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h74680ad2b0600741 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::string::Drain>::he17b49f824064ef3 + 117 ┊ 0.00% ┊ ⤷ <alloc::string::Drain as core::ops::drop::Drop>::drop::hf16cb1e6f4481af2 + 17645 ┊ 0.36% ┊ ⤷ url::parser::Parser::with_query_and_fragment::h80b3fcb13ad6ba0a + 13740 ┊ 0.28% ┊ ⤷ alloc::string::String::replace_range::h2ca9f42056e3c9b9 + 10676 ┊ 0.22% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::splice::Splice<core::str::iter::Bytes>>::he3cc2bf0e45de623 + 8904 ┊ 0.18% ┊ ⤷ <alloc::vec::splice::Splice<I,A> as core::ops::drop::Drop>::drop::he3d4fcb1e770c306 + 1654 ┊ 0.03% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h7f2d2f7710f1fe22 + 1592 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h63ef4c24fc346d82 + 1010 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hc647d39ac731608b + 903 ┊ 0.02% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::fold::h5a01cec52e9641c3 + 848 ┊ 0.02% ┊ ⤷ <&mut I as core::iter::traits::iterator::IteratorRefSpec>::spec_fold::h6c85527d87c416c7 + 689 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::he0fc171dc0eabc01 + 288 ┊ 0.01% ┊ ⤷ core::ops::try_trait::NeverShortCircuit<T>::wrap_mut_2::{{closure}}::h7c6fc71488082055 + 212 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hd93c2ca21ef83b03 + 136 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h345f460eca825ecc + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::ops::try_trait::NeverShortCircuit<()>::wrap_mut_2<(),u8,core::iter::traits::iterator::Iterator::for_each::call<u8,alloc::vec::Vec<u8>::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::{{closure}}>::{{closure}}>::h8568811b9296112d + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<u8,alloc::vec::Vec<u8>::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::{{closure}}>::h644ecc2764d3a098 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u8>::extend_trusted<&mut core::str::iter::Bytes>::{{closure}}>::h586d882f385db0b5 + 1205 ┊ 0.02% ┊ ⤷ alloc::vec::splice::<impl alloc::vec::drain::Drain<T,A>>::fill::h54f8fa56480d415a + 537 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hcbb3d3da572ebfcf + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h6c452e0364d0d1ad + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h64a5712a4806d5b4 + 693 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h7d78489b004921a9 + 672 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::hc72b6ab6064d1b15 + 248 ┊ 0.01% ┊ ⤷ core::ops::try_trait::NeverShortCircuit<T>::wrap_mut_2::{{closure}}::hec41d49726f9015e + 172 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h5634749344ebd395 + 96 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h118ec511d2540071 + 29 ┊ 0.00% ┊ ⤷ core::mem::drop::hf0b4f0b6054710a4 + 177 ┊ 0.00% ┊ ⤷ <alloc::vec::drain::Drain<T,A> as core::iter::traits::iterator::Iterator>::next::h29f07d792af3e443 + 668 ┊ 0.01% ┊ ⤷ alloc::vec::splice::<impl alloc::vec::drain::Drain<T,A>>::fill::ha359d5af06ac023c + 637 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<u8>>::he985cc4ee4f0d274 + 584 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::hcc8c391b4a9adf44 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<u8,alloc::alloc::Global>>::h2a72f6527cc3f364 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h55aecfb8d1d37c3b + 186 ┊ 0.00% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::hbb8c298a9550bc05 + 575 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h148911cd4dd6a459 + 520 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h5979e74b98d119e6 + 405 ┊ 0.01% ┊ ⤷ <core::str::iter::Bytes as core::iter::traits::iterator::Iterator>::size_hint::he0b98b4cb825ad21 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::size_hint::h7c0a0e0d82f95923 + 402 ┊ 0.01% ┊ ⤷ alloc::vec::splice::<impl alloc::vec::drain::Drain<T,A>>::move_tail::h8367734c4e988fe2 + 105 ┊ 0.00% ┊ ⤷ <core::str::iter::Bytes as core::iter::traits::iterator::Iterator>::next::h40f2a45a714d63c9 + 62 ┊ 0.00% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::size_hint::h42d7d0826dc3fc6e + 31 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::by_ref::hcbb110fdf4917d88 + 1714 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::drain::Drain<u8>>::hd774a432d62ab7f3 + 1661 ┊ 0.03% ┊ ⤷ <alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::h37249f16b892e770 + 436 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::DropGuard<u8,alloc::alloc::Global>>::h8672bcda45c9c040 + 383 ┊ 0.01% ┊ ⤷ <<alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h1941d5318fe47a50 + 1488 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::drain::h4a98ce9534b59510 + 1042 ┊ 0.02% ┊ ⤷ core::slice::index::range::hc98fa4cc9892e37c + 68 ┊ 0.00% ┊ ⤷ <(core::ops::range::Bound<&T>,core::ops::range::Bound<&T>) as core::ops::range::RangeBounds<T>>::end_bound::hefab839b75d4ce39 + 57 ┊ 0.00% ┊ ⤷ <(core::ops::range::Bound<&T>,core::ops::range::Bound<&T>) as core::ops::range::RangeBounds<T>>::start_bound::hfc86f973b4b634f3 + 577 ┊ 0.01% ┊ ⤷ core::cmp::PartialEq::ne::hd65d0de7207da627 + 489 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::he96c2a4ed1ee47e9 + 412 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::he9758c21f301b964 + 94 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for u8>::eq::hc8e33ccaaade19c9 + 351 ┊ 0.01% ┊ ⤷ alloc::string::String::insert_str::h9c028ba8debe3a16 + 85 ┊ 0.00% ┊ ⤷ alloc::string::String::insert_bytes::h0ae3a0d08834d75c + 212 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get::h37def51b8522dd07 + 137 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::hf30fd0c254744e5f + 144 ┊ 0.00% ┊ ⤷ core::option::Option<&T>::copied::ha1f007de425e066c + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h121ae223dcaeb356 + 16 ┊ 0.00% ┊ ⤷ type[22]: (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32) -> nil + 9912 ┊ 0.20% ┊ ⤷ url::parser::Parser::parse_relative::h66778fe3dc540992 + 2715 ┊ 0.06% ┊ ⤷ url::parser::Parser::log_violation_if::h21eb33566e65f3b0 + 2450 ┊ 0.05% ┊ ⤷ url::parser::Parser::parse_relative::{{closure}}::hd6006e30029a73d4 + 2176 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h3f81a72b54adf704 + 2164 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::FromIterator<char>>::from_iter::hb0086d3a4c69d56c + 1940 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::h584609163c6dab22 + 1468 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hb3edacd23ccb83c0 + 1399 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold::ha9b498391819405a + 1330 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold::he5011cd79db644c5 + 1010 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h4e04b4d25e118f13 + 672 ┊ 0.01% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold::check::{{closure}}::h77feaaabb0332a86 + 221 ┊ 0.00% ┊ ⤷ core::ops::try_trait::NeverShortCircuit<T>::wrap_mut_2::{{closure}}::h2593800686def62c + 145 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h0f4e649f76f4b940 + 69 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::{{closure}}::he2415fb40264dfbc + 132 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_relative::{{closure}}::{{closure}}::h0d74304dd5d30c5a + 215 ┊ 0.00% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::size_hint::h130dbed615d388e9 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8e3dba866b63b058 + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::take_while::he6e86c49414c6ba1 + 697 ┊ 0.01% ┊ ⤷ url::parser::Input::count_matching::h646e4b1428defa49 + 117 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_relative::{{closure}}::h70c3b58ef5046c6f + 9025 ┊ 0.18% ┊ ⤷ url::host::parse_ipv6addr::h9e27058f362384e6 + 1387 ┊ 0.03% ┊ ⤷ core::net::ip_addr::Ipv6Addr::new::h64b1f5242453651e + 12 ┊ 0.00% ┊ ⤷ type[20]: (i32, i32, i32, i32, i32, i32, i32, i32, i32) -> nil + 391 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::swap::h00c0d30997fa2d03 + 132 ┊ 0.00% ┊ ⤷ core::cmp::min::h5c3f6a5a0506bd4c + 66 ┊ 0.00% ┊ ⤷ core::cmp::Ord::min::h5e3b70b5988e1612 + 8799 ┊ 0.18% ┊ ⤷ url::parser::Parser::parse_with_scheme::h26ec1ee869755e95 + 2715 ┊ 0.06% ┊ ⤷ url::parser::Parser::log_violation_if::hdbe07864eabe3a35 + 2450 ┊ 0.05% ┊ ⤷ url::parser::Parser::parse_with_scheme::{{closure}}::hae271f0a990f1179 + 2176 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h046ba87bff107941 + 2164 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::FromIterator<char>>::from_iter::h2165f80aebfb3c48 + 1940 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::h0f571a799addd992 + 1468 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::h49dc4f374a70eeb6 + 1399 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::fold::h58294cd4d820a33a + 1330 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold::h37793dcca63f803c + 1010 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h35e536c4e064d61f + 672 ┊ 0.01% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::try_fold::check::{{closure}}::hd29f33fd3874a168 + 221 ┊ 0.00% ┊ ⤷ core::ops::try_trait::NeverShortCircuit<T>::wrap_mut_2::{{closure}}::ha46175e09f7c5037 + 145 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h54df74b4f65d765e + 69 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::{{closure}}::h758cdc62cf405fd2 + 132 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_with_scheme::{{closure}}::{{closure}}::ha88e428f855736b8 + 215 ┊ 0.00% ┊ ⤷ <core::iter::adapters::take_while::TakeWhile<I,P> as core::iter::traits::iterator::Iterator>::size_hint::h174a3884169b61bf + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hf2eb74ba4890a6fd + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::take_while::he3cf9f99746a1791 + 2086 ┊ 0.04% ┊ ⤷ url::parser::Parser::parse_non_special::hbe7f05f9a889bc68 + 560 ┊ 0.01% ┊ ⤷ url::parser::Parser::parse_cannot_be_a_base_path::heeadb2bb11c77bef + 697 ┊ 0.01% ┊ ⤷ url::parser::Input::count_matching::h09e38bcc70b1aa4b + 117 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_with_scheme::{{closure}}::h9ef9a801c696c933 + 460 ┊ 0.01% ┊ ⤷ <url::parser::SchemeType as core::convert::From<T>>::from::h38d29fadea25aadd + 90 ┊ 0.00% ┊ ⤷ <&T as core::convert::AsRef<U>>::as_ref::h2960daa56681080e + 366 ┊ 0.01% ┊ ⤷ url::parser::Parser::log_violation_if::hc77d5ca79721f57e + 101 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_with_scheme::{{closure}}::hb283b52c7aafc95b + 360 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::he6b8c22f0d6b5684 + 165 ┊ 0.00% ┊ ⤷ url::parser::Parser::parse_with_scheme::{{closure}}::h53505606ad9b92b4 + 7873 ┊ 0.16% ┊ ⤷ url::parser::Parser::parse_path::h6377281efe454061 + 1236 ┊ 0.03% ┊ ⤷ alloc::string::String::split_off::h509c0363ff99315d + 912 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::split_off::hab192ecaf7df7fdc + 117 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::split_off::assert_failed::h186f069840f22d97 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::hcfc2fbf844fdb685 + 1098 ┊ 0.02% ┊ ⤷ url::parser::Parser::last_slash_can_be_removed::h26e236ec2ae4ec55 + 574 ┊ 0.01% ┊ ⤷ url::parser::path_starts_with_windows_drive_letter::hb31ade81af277e27 + 112 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::first::hc90cd21a60295ab1 + 972 ┊ 0.02% ┊ ⤷ alloc::string::String::pop::h19df836b379ad25f + 88 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::h2afc4f13615a50bb + 4452 ┊ 0.09% ┊ ⤷ url::parser::Input::new_trim_c0_control_and_space::h1c57975f8b917aae + 3202 ┊ 0.07% ┊ ⤷ core::str::<impl str>::trim_matches::h648376f1eb420843 + 1290 ┊ 0.03% ┊ ⤷ <core::str::pattern::CharPredicateSearcher<F> as core::str::pattern::ReverseSearcher>::next_reject_back::ha9a6c6555b62394e + 1070 ┊ 0.02% ┊ ⤷ <core::str::pattern::MultiCharEqSearcher<C> as core::str::pattern::ReverseSearcher>::next_back::h5d8e86acff885b10 + 478 ┊ 0.01% ┊ ⤷ <core::str::iter::CharIndices as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::hb7c7b9205bcbba64 + 812 ┊ 0.02% ┊ ⤷ <core::str::pattern::CharPredicateSearcher<F> as core::str::pattern::Searcher>::next_reject::hf817a108a8a662a6 + 592 ┊ 0.01% ┊ ⤷ <core::str::pattern::MultiCharEqSearcher<C> as core::str::pattern::Searcher>::next::hdec9d09dac210fd1 + 381 ┊ 0.01% ┊ ⤷ <F as core::str::pattern::Pattern>::into_searcher::hb8cc23cff583de63 + 234 ┊ 0.00% ┊ ⤷ <F as core::str::pattern::MultiCharEq>::matches::hced316a231344216 + 143 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h73da5896b84cf664 + 61 ┊ 0.00% ┊ ⤷ url::parser::c0_control_or_space::h4ab880c048bf3bcc + 741 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::any::h1fb7ff4547fcb406 + 624 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::hff506df65e39bb06 + 271 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::any::check::{{closure}}::he935e5de9ecc5062 + 127 ┊ 0.00% ┊ ⤷ url::parser::Input::new_trim_c0_control_and_space::{{closure}}::h2c6613fc8d8fea96 + 3370 ┊ 0.07% ┊ ⤷ url::parser::Parser::check_url_code_point::h66f2bf36aa1b70b7 + 2170 ┊ 0.04% ┊ ⤷ url::parser::is_url_code_point::hf0c2bb96f0dbfdf4 + 394 ┊ 0.01% ┊ ⤷ core::char::methods::<impl char>::is_ascii_hexdigit::h01b713b80a564fc9 + 3011 ┊ 0.06% ┊ ⤷ url::parser::Parser::parse_query_and_fragment::h9d2121270e46bb1a + 1425 ┊ 0.03% ┊ ⤷ url::parser::Parser::parse_query::h29d695a1ee80efdf + 129 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h398310d3acbada2b + 65 ┊ 0.00% ┊ ⤷ alloc::vec::cow::<impl core::convert::From<&[T]> for alloc::borrow::Cow<[T]>>::from::hc69c7bde50965dd2 + 308 ┊ 0.01% ┊ ⤷ std::panicking::begin_panic::h2ff4870d90fc2813 + 206 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::h77b688e57ce3a745 + 175 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic::{{closure}}::h4ee88099f6bc298a + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h726e957fb3436258 + 2624 ┊ 0.05% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hdd1b1fc94d8ba1be + 2560 ┊ 0.05% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::FromIterator<char>>::from_iter::h037a57dc557efbf3 + 2353 ┊ 0.05% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::he2df5d980c17b1e5 + 1647 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take::Take<I> as core::iter::traits::iterator::Iterator>::for_each::ha0695218ea05856c + 1576 ┊ 0.03% ┊ ⤷ <core::iter::adapters::take::Take<I> as core::iter::adapters::take::SpecTake>::spec_for_each::h6bb1104670a81d92 + 1336 ┊ 0.03% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::try_fold::hdc4b4a5bc03b64af + 1224 ┊ 0.02% ┊ ⤷ <&mut I as core::iter::traits::iterator::IteratorRefSpec>::spec_try_fold::h517d7a2d0b74b064 + 1105 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h4f1dd34055d42d28 + 342 ┊ 0.01% ┊ ⤷ <core::iter::adapters::take::Take<I> as core::iter::adapters::take::SpecTake>::spec_for_each::check::{{closure}}::h8acd8e080550e597 + 69 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::{{closure}}::h312c061cd80aeced + 126 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hae57bb43466cbd87 + 75 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::from_output::h10d839d10c165a47 + 61 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::hc3650cb12b331e5c + 511 ┊ 0.01% ┊ ⤷ <core::iter::adapters::take::Take<I> as core::iter::traits::iterator::Iterator>::size_hint::h1cb69d6b01cb009c + 62 ┊ 0.00% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::size_hint::hddcc831d4d47c58d + 2064 ┊ 0.04% ┊ ⤷ url::parser::Parser::file_host::hebda6f255dc32d9d + 1767 ┊ 0.04% ┊ ⤷ url::parser::Parser::parse_scheme::hbf0875f4fa7e12cf + 605 ┊ 0.01% ┊ ⤷ url::parser::Input::starts_with::h8836e33b2890f245 + 476 ┊ 0.01% ┊ ⤷ <F as url::parser::Pattern>::split_prefix::h1dcac258f25ea5d4 + 384 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or::h7c14a727145b7fce + 75 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hd31745a79f626349 + 258 ┊ 0.01% ┊ ⤷ core::char::methods::<impl char>::to_ascii_lowercase::hed0e9fa1f44acab4 + 1359 ┊ 0.03% ┊ ⤷ url::parser::Parser::fragment_only::h06166e483e591b8c + 62 ┊ 0.00% ┊ ⤷ alloc::string::String::reserve::h7d48911993a409a5 + 1303 ┊ 0.03% ┊ ⤷ <url::parser::Input as core::iter::traits::iterator::Iterator>::next::h9ce76633c93943dc + 1239 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::find::h4da10edd4122e7a4 + 969 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h9b808f0af4e076f2 + 355 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::find::check::{{closure}}::ha65d9389e59bf890 + 153 ┊ 0.00% ┊ ⤷ <url::parser::Input as core::iter::traits::iterator::Iterator>::next::{{closure}}::h9663025164a4d2a4 + 157 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::ha9d4b16b76e37327 + 59 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::h4cad86dc3d384c09 + 45 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h3d511927f62df506 + 939 ┊ 0.02% ┊ ⤷ url::parser::Parser::parse_path_start::h4731a12d0678ad13 + 732 ┊ 0.01% ┊ ⤷ url::parser::starts_with_windows_drive_letter::h8a242f657a81b9c9 + 714 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::Range<usize>>>::index::h9c48143c4a01bd23 + 356 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::get::h6be4c3ff59cb1a0f + 707 ┊ 0.01% ┊ ⤷ core::char::methods::<impl char>::to_digit::hafd0355bfaf2276a + 662 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeFrom<usize>>>::index::h2cb5b2703a29b66b + 313 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::get::h7059b27153cf52bd + 625 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeTo<usize>>>::index::h4255eed2ea6ab5a4 + 290 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeTo<usize>>::get::h62c1b5fd43be7cbd + 606 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h49a6e685d8a0a077 + 199 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hef65e8da7f52552d + 77 ┊ 0.00% ┊ ⤷ url::host::Host::Ipv6::h0b3ba154407314c8 + 601 ┊ 0.01% ┊ ⤷ url::parser::Parser::pop_path::hd7605356b7afa740 + 106 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h1111f27b32f264bf + 601 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<&str>>::extend::ha806e163bc659fc5 + 495 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::h09f179f75389b1b0 + 426 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h21b22c3107f1c738 + 184 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::hdef85b8370f7e7fb + 85 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<&str>>::extend::{{closure}}::h808a53bfc46db709 + 591 ┊ 0.01% ┊ ⤷ <core::str::iter::CharIndices as core::iter::traits::iterator::Iterator>::next::hf50a852f67aa5937 + 459 ┊ 0.01% ┊ ⤷ <url::parser::SchemeType as core::convert::From<T>>::from::h7a643af76d0b521b + 71 ┊ 0.00% ┊ ⤷ <&T as core::convert::AsRef<U>>::as_ref::h9362cff72e44da14 + 459 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h82596b16775aeee4 + 359 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq<str>>::eq::hf503536df07ab395 + 450 ┊ 0.01% ┊ ⤷ url::parser::Input::next_utf8::h949346273b9c431d + 394 ┊ 0.01% ┊ ⤷ <str as alloc::string::ToString>::to_string::hfbc194c8696e11b9 + 391 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq<&str>>::ne::h140e9ea8996dac7f + 390 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::hd68d1a52ac63f814 + 378 ┊ 0.01% ┊ ⤷ <url::host::HostInternal as core::convert::From<url::host::Host>>::from::h914c62908629012b + 380 ┊ 0.01% ┊ ⤷ <&str as url::parser::Pattern>::split_prefix::h0c38debd35226d2f + 366 ┊ 0.01% ┊ ⤷ url::parser::Parser::parse_fragment::h77ae388806545aba + 353 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h3d537ba69acd9f59 + 341 ┊ 0.01% ┊ ⤷ core::str::<impl str>::is_char_boundary::h85e256e0eb00cba2 + 341 ┊ 0.01% ┊ ⤷ url::parser::ascii_alpha::h3e82baaf8de227a1 + 258 ┊ 0.01% ┊ ⤷ core::char::methods::<impl char>::is_ascii_alphabetic::h70ed69fa3dea18e7 + 301 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hcd775fbbb5166300 + 300 ┊ 0.01% ┊ ⤷ alloc::string::String::truncate::hc0f8c359d38a7bf4 + 262 ┊ 0.01% ┊ ⤷ url::parser::is_normalized_windows_drive_letter::h1b1789f3ea84c517 + 251 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h4f80cbf450577664 + 249 ┊ 0.01% ┊ ⤷ core::str::iter::Chars::as_str::hca4ff17183c5eca6 + 242 ┊ 0.00% ┊ ⤷ <url::parser::Input as core::clone::Clone>::clone::h25529df92f246a6a + 120 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::clone::Clone>::clone::h36f5ad760dacd737 + 241 ┊ 0.00% ┊ ⤷ url::parser::Parser::shorten_path::heb0c6aac948525d2 + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h4c8c2e659db15540 + 230 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::len_utf8::h7226ced438d2c1c4 + 230 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::h2f6488bbddc0a125 + 225 ┊ 0.00% ┊ ⤷ url::parser::Input::split_prefix::h32b2908bfdfd0f21 + 205 ┊ 0.00% ┊ ⤷ url::parser::Input::split_prefix::h09c1f6c5d3686ebb + 194 ┊ 0.00% ┊ ⤷ url::Url::cannot_be_a_base::h305eeada73357f70 + 193 ┊ 0.00% ┊ ⤷ <core::iter::adapters::take::Take<I> as core::iter::traits::iterator::Iterator>::next::h3fd918cb9eb38efb + 64 ┊ 0.00% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::next::h5130848e5ef105e2 + 190 ┊ 0.00% ┊ ⤷ core::str::<impl str>::starts_with::h6ef182887d888d57 + 95 ┊ 0.00% ┊ ⤷ <&str as core::str::pattern::Pattern>::is_prefix_of::hf14434db740fc787 + 177 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next::h9b296bdf6945789e + 176 ┊ 0.00% ┊ ⤷ url::parser::Parser::log_violation::h60fae2f7108d4fc2 + 171 ┊ 0.00% ┊ ⤷ core::str::<impl str>::chars::he5229d856789e710 + 168 ┊ 0.00% ┊ ⤷ alloc::string::String::clear::hb35941d41b89263f + 166 ┊ 0.00% ┊ ⤷ url::parser::is_windows_drive_letter::h8e9bac830331304f + 159 ┊ 0.00% ┊ ⤷ url::parser::Input::is_empty::hc01b6bb90b01475b + 152 ┊ 0.00% ┊ ⤷ url::parser::Input::split_first::h1da4fede38381331 + 150 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h64afcd3364e904f8 + 139 ┊ 0.00% ┊ ⤷ url::parser::Input::starts_with::hda499da6afb29320 + 137 ┊ 0.00% ┊ ⤷ url::parser::Input::starts_with::h07d5e8ffd8bb5728 + 131 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h9750811ef403ca21 + 125 ┊ 0.00% ┊ ⤷ url::parser::to_u32::h380ffea48c76d171 + 124 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h3487f254b4cfb6ee + 117 ┊ 0.00% ┊ ⤷ <char as url::parser::Pattern>::split_prefix::h7073fe1d6c1c5edc + 116 ┊ 0.00% ┊ ⤷ <url::parser::Context as core::cmp::PartialEq>::eq::h84f1789638428621 + 109 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h8525737c04c7f236 + 105 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h19ba7d8b24f90389 + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h916620085ba24117 + 95 ┊ 0.00% ┊ ⤷ percent_encoding::utf8_percent_encode::hbac0e0e439e5542a + 91 ┊ 0.00% ┊ ⤷ url::parser::SchemeType::is_special::hbc51c10bdf62f2a3 + 88 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::he7ba9f79d89b6813 + 86 ┊ 0.00% ┊ ⤷ <core::ops::range::Range<T> as core::ops::range::RangeBounds<T>>::end_bound::hf089df29fa18a011 + 80 ┊ 0.00% ┊ ⤷ url::parser::SchemeType::is_file::h6ac3d2c5b8fde583 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h83c0ec313ceb4068 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::take::h64acb43433155da9 + 75 ┊ 0.00% ┊ ⤷ alloc::string::String::is_empty::he775b2e90be1d7f6 + 75 ┊ 0.00% ┊ ⤷ <core::ops::range::Range<T> as core::ops::range::RangeBounds<T>>::start_bound::hc495cdfc8db6d99c + 71 ┊ 0.00% ┊ ⤷ alloc::string::String::push_str::hc209fee96308a101 + 68 ┊ 0.00% ┊ ⤷ core::str::<impl str>::is_empty::h30598829f712a8bf + 68 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::hf8ed235d3755a515 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::had45f1de460161c1 + 64 ┊ 0.00% ┊ ⤷ percent_encoding::percent_encode::h0a45d53bb3906066 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h98e8dc13fb1b732a + 53 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::ha7f01e6d9610eed9 + 53 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h29c1083890025f26 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<url::parser::Parser>::h6e768f99600380d7 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h171841f4bf734bdb + 45 ┊ 0.00% ┊ ⤷ alloc::string::String::len::hefe96e0be947369c + 31 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::by_ref::hfabd5ecd7beaca63 + 21 ┊ 0.00% ┊ ⤷ <core::ops::try_trait::NeverShortCircuit<T> as core::ops::try_trait::FromResidual>::from_residual::hd822ada710985c32 + 21 ┊ 0.00% ┊ ⤷ <core::ops::try_trait::NeverShortCircuit<T> as core::ops::try_trait::Try>::from_output::h5f6d5af2a9e3b8c0 + 21 ┊ 0.00% ┊ ⤷ <core::ops::try_trait::NeverShortCircuit<T> as core::ops::try_trait::Try>::branch::h3a8987bba1ce391f + 160 ┊ 0.00% ┊ ⤷ alloc::string::String::with_capacity::h084f2804de55fda0 + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::h7568ca70ea545a93 + 144276 ┊ 2.94% ┊ ⤷ idna::uts46::processing::h70b1d8f5b883db3d + 34798 ┊ 0.71% ┊ ⤷ unicode_normalization::quick_check::is_nfc::h077b3cde27f22af1 + 23643 ┊ 0.48% ┊ ⤷ core::iter::traits::iterator::Iterator::eq::h9e2984c4dfff24f4 + 23564 ┊ 0.48% ┊ ⤷ core::iter::traits::iterator::Iterator::eq_by::hb2557a4f74935937 + 23182 ┊ 0.47% ┊ ⤷ core::iter::traits::iterator::iter_compare::h1f408bf54ef0faee + 20968 ┊ 0.43% ┊ ⤷ <unicode_normalization::recompose::Recompositions<I> as core::iter::traits::iterator::Iterator>::next::h400fac5153bf9234 + 17670 ┊ 0.36% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::next::h3e8a6aea39c63d1b + 17606 ┊ 0.36% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::h171fd84b01bcc7de + 11010 ┊ 0.22% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::sort_pending::hb2aa93fad810625e + 10589 ┊ 0.22% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::h31ae1a86c6b1f2b4 + 10461 ┊ 0.21% ┊ ⤷ core::slice::sort::merge_sort::h9f4de56884d6f6f9 + 2098 ┊ 0.04% ┊ ⤷ core::slice::sort::merge::h4e29483f4a1e6800 + 1408 ┊ 0.03% ┊ ⤷ core::slice::sort::insertion_sort_shift_left::h80dfb43a4bc20c4e + 890 ┊ 0.02% ┊ ⤷ core::slice::sort::insert_tail::he5258fff41ba7977 + 937 ┊ 0.02% ┊ ⤷ core::slice::sort::find_streak::h53b642acf695ed5e + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::push::h2c3d0337fd9192bd + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF>::new::hfa5e7585b476b721 + 292 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h75cbedfc25d30c8f + 482 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::remove::h79e36ba488a6a16c + 469 ┊ 0.01% ┊ ⤷ core::slice::sort::provide_sorted_batch::h66ae7544d391a559 + 412 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::BufGuard<(u8,char),alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<core::str::iter::Chars>::sort_pending::{{closure}}>::{{closure}}>::{{closure}}>>::ha063259beedf681e + 359 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF> as core::ops::drop::Drop>::drop::h2837dc02cf8d931d + 242 ┊ 0.00% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::hd9676a53e4219c95 + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::Index<usize>>::index::h72865e18ccf16e35 + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::IndexMut<usize>>::index_mut::hdfe0433dab6d7473 + 317 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::hf03445cfedf46924 + 284 ┊ 0.01% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::{{closure}}::hdeb864797995eb30 + 45 ┊ 0.00% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::sort_pending::{{closure}}::h5bf62a60a4a72c63 + 267 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::hb96beb3e1fb22c55 + 230 ┊ 0.00% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::new::h9cfd14d72b3e5b81 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::RunVec<alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<core::str::iter::Chars>::sort_pending::{{closure}}>::{{closure}}>::{{closure}},alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<core::str::iter::Chars>::sort_pending::{{closure}}>::{{closure}}>::{{closure}}>>::h1dd7c6ab1cc6fd1f + 117 ┊ 0.00% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::drop::Drop>::drop::hc2b6e83c37886dcb + 1879 ┊ 0.04% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::h95a3f58e46093b2c + 1817 ┊ 0.04% ┊ ⤷ unicode_normalization::normalize::decompose::h1aa0a0c8178947c3 + 567 ┊ 0.01% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::{{closure}}::h5f8526fb862cab89 + 408 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::ha059ba4fa7c2fafe + 97 ┊ 0.00% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::{{closure}}::{{closure}}::h7219751a6b9fa42b + 76 ┊ 0.00% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h9db3265850ad894a + 1589 ┊ 0.03% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::increment_next_ready::hd0ecb6d38bc9f30d + 1402 ┊ 0.03% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::reset_buffer::ha9560581ee6f3ed6 + 1312 ┊ 0.03% ┊ ⤷ unicode_normalization::normalize::decompose_canonical::hfa941c49b0c2ea83 + 1250 ┊ 0.03% ┊ ⤷ unicode_normalization::normalize::decompose::hd9867f6b689240da + 76 ┊ 0.00% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::{{closure}}::hfd6f9d157c44b841 + 371 ┊ 0.01% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::push_back::h819f70dbb1c4115e + 329 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::h6d734e5f4d5fd035 + 272 ┊ 0.01% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::h188babe9d45c6630 + 31 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::by_ref::h2a77551c93fc527a + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h75e2c96b7a03bb08 + 1730 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_for_each::hc488f1c033c390fb + 1650 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h40fc4d369476af7a + 1009 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::hf7fac4315997956a + 929 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::iter_compare::compare::{{closure}}::h3ddb035e69e0e9c7 + 359 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::eq_by::compare::{{closure}}::h279108cbaa6f4197 + 192 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::eq::{{closure}}::h39be6f721e679d80 + 78 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for char>::eq::he17ad8d2ceecc6f4 + 253 ┊ 0.01% ┊ ⤷ core::ops::control_flow::ControlFlow<B,C>::map_break::had4a32c872f22bb9 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h086d75dd5e30fdb1 + 42 ┊ 0.00% ┊ ⤷ core::ops::control_flow::ControlFlow::Break::h85f0944badd684ba + 167 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h0ccf1a1346e83570 + 59 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::ha2948a1aa8f48b78 + 42 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h7ed5457d55e44406 + 133 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<unicode_normalization::recompose::Recompositions<core::str::iter::Chars>>::he49bf99afd787d14 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<unicode_normalization::decompose::Decompositions<core::str::iter::Chars>>::h8c045c8b8ddd62aa + 22 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h979ca68945590b39 + 9672 ┊ 0.20% ┊ ⤷ unicode_normalization::quick_check::is_nfc_quick::h76761a672a2757f0 + 9589 ┊ 0.20% ┊ ⤷ unicode_normalization::quick_check::quick_check::h031d5a3838c1cb45 + 6967 ┊ 0.14% ┊ ⤷ core::ops::function::Fn::call::hf4b4b837dabf5348 + 6896 ┊ 0.14% ┊ ⤷ unicode_normalization::tables::qc_nfc::h14810d5a692f8495 + 1716 ┊ 0.03% ┊ ⤷ unicode_normalization::stream_safe::classify_nonstarters::heb658a094fb72380 + 408 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::hea18f88ed1247e3f + 97 ┊ 0.00% ┊ ⤷ unicode_normalization::stream_safe::classify_nonstarters::{{closure}}::hdbc0f1ce1546883a + 343 ┊ 0.01% ┊ ⤷ unicode_normalization::tables::stream_safe_leading_nonstarters::hc2138cea6fe03670 + 232 ┊ 0.00% ┊ ⤷ unicode_normalization::normalize::hangul_decomposition_length::h777a8807a4bd593d + 109 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::stream_safe_trailing_nonstarters::h97ebdcdd704accfd + 1177 ┊ 0.02% ┊ ⤷ <I as unicode_normalization::UnicodeNormalization<I>>::nfc::h9baf29232fab9cd1 + 1113 ┊ 0.02% ┊ ⤷ unicode_normalization::recompose::new_canonical::hbd7e764ac1fa7a63 + 495 ┊ 0.01% ┊ ⤷ unicode_normalization::decompose::new_canonical::h15083b448cd83f09 + 106 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::h0b4aff9396d4ff8d + 24122 ┊ 0.49% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::h4417fa2767c615ff + 23810 ┊ 0.48% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hc168815eee24d8d3 + 23741 ┊ 0.48% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::hf9e0e8cb2c33a621 + 23245 ┊ 0.47% ┊ ⤷ <unicode_normalization::recompose::Recompositions<I> as core::iter::traits::iterator::Iterator>::next::hef3a4fed25318c7f + 19947 ┊ 0.41% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::next::h99201066528945f2 + 19883 ┊ 0.40% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::h2ef2a96a4a9833df + 11010 ┊ 0.22% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::sort_pending::h919b6b982a805f7e + 10589 ┊ 0.22% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::h2a95f5c6edcebed5 + 10461 ┊ 0.21% ┊ ⤷ core::slice::sort::merge_sort::h5833c0695ba88da3 + 2098 ┊ 0.04% ┊ ⤷ core::slice::sort::merge::h7d9b5e54dac1f281 + 1408 ┊ 0.03% ┊ ⤷ core::slice::sort::insertion_sort_shift_left::h87d2dd14f6a17d07 + 890 ┊ 0.02% ┊ ⤷ core::slice::sort::insert_tail::h4a6cfb6275f9b221 + 937 ┊ 0.02% ┊ ⤷ core::slice::sort::find_streak::hc8b0867d30b32561 + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::push::h4b5b21a323956f62 + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF>::new::hfd7810c769804688 + 292 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h5a4db956ed07064a + 482 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::remove::hd41324943a1c0aca + 469 ┊ 0.01% ┊ ⤷ core::slice::sort::provide_sorted_batch::hf6291c081dd4db87 + 412 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::BufGuard<(u8,char),alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<idna::uts46::Mapper>::sort_pending::{{closure}}>::{{closure}}>::{{closure}}>>::h0c1bcb2950dcdd20 + 359 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF> as core::ops::drop::Drop>::drop::h186c837c48661476 + 242 ┊ 0.00% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h122d3ce3e6ddfa61 + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::Index<usize>>::index::h644d61387d1c0f5c + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::IndexMut<usize>>::index_mut::h82d4a0ede25e8f82 + 317 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h5eccbad814b26bf7 + 284 ┊ 0.01% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::{{closure}}::hc8468cdfd3401716 + 45 ┊ 0.00% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::sort_pending::{{closure}}::h4d43f9110cfeb60d + 267 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::hc5f7266a17ae4943 + 230 ┊ 0.00% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::new::h7bf39f1dafd7f18c + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::RunVec<alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<idna::uts46::Mapper>::sort_pending::{{closure}}>::{{closure}}>::{{closure}},alloc::slice::stable_sort<(u8,char),alloc::slice::<impl [(u8,char)]>::sort_by_key<u8,unicode_normalization::decompose::Decompositions<idna::uts46::Mapper>::sort_pending::{{closure}}>::{{closure}}>::{{closure}}>>::hcb3b6b33f99d3e92 + 117 ┊ 0.00% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::drop::Drop>::drop::h1c3deee3be5566a0 + 2605 ┊ 0.05% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::traits::iterator::Iterator>::next::h988daa929b7b6823 + 2548 ┊ 0.05% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::next::ha1f0d012073b840f + 2491 ┊ 0.05% ┊ ⤷ core::iter::adapters::fuse::and_then_or_clear::hd34186f8c4c1cb26 + 1857 ┊ 0.04% ┊ ⤷ core::ops::function::FnOnce::call_once::h123238702355ee3f + 1793 ┊ 0.04% ┊ ⤷ <idna::uts46::Mapper as core::iter::traits::iterator::Iterator>::next::hc1b52e80b4848c44 + 327 ┊ 0.01% ┊ ⤷ idna::uts46::decode_slice::h122e1d1f95b86131 + 143 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hef411a77f7ca0e17 + 45 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::hf2f148499488bb50 + 1879 ┊ 0.04% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::hd122f6df49c1ae42 + 1817 ┊ 0.04% ┊ ⤷ unicode_normalization::normalize::decompose::h7d293c4cff38ccb5 + 567 ┊ 0.01% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::{{closure}}::h03d0ad62431a712f + 408 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::h00ff87ebfa53ce14 + 97 ┊ 0.00% ┊ ⤷ unicode_normalization::normalize::decompose_compatible::{{closure}}::{{closure}}::h84e4f8763c4589a3 + 76 ┊ 0.00% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::{{closure}}::hc411e0b416738c0a + 1589 ┊ 0.03% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::increment_next_ready::hfe2d3e8e2346a3e9 + 1402 ┊ 0.03% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::reset_buffer::hb5af7f72f912345f + 1312 ┊ 0.03% ┊ ⤷ unicode_normalization::normalize::decompose_canonical::hfe038a27339df4db + 1250 ┊ 0.03% ┊ ⤷ unicode_normalization::normalize::decompose::h3666df3b957586a2 + 76 ┊ 0.00% ┊ ⤷ <unicode_normalization::decompose::Decompositions<I> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h098533f54212c31d + 371 ┊ 0.01% ┊ ⤷ unicode_normalization::decompose::Decompositions<I>::push_back::hee61e64de58ea90d + 31 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::by_ref::h9f9240b528546367 + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h2f708ad82c82a8eb + 145 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h48b5dae64b833417 + 69 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::{{closure}}::h331b26dd31973bc9 + 133 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<unicode_normalization::recompose::Recompositions<idna::uts46::Mapper>>::h7385886b7fd8ade3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<unicode_normalization::decompose::Decompositions<idna::uts46::Mapper>>::hbb708d1d5ea024f5 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h88f7f9f324519634 + 22 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hf0fe75758d08c494 + 23520 ┊ 0.48% ┊ ⤷ idna::punycode::Decoder::decode::h1bc388e0ccec586a + 13773 ┊ 0.28% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::h2cd794bbc91a9ddc + 13645 ┊ 0.28% ┊ ⤷ core::slice::sort::merge_sort::hc8a74e19fcdf88cb + 2406 ┊ 0.05% ┊ ⤷ core::slice::sort::merge::hb2fa153da23d6217 + 308 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge::MergeHole<(usize,char)>>::hee7d6ecd68a52748 + 255 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge::MergeHole<T> as core::ops::drop::Drop>::drop::hcdacdca881ad3a79 + 2130 ┊ 0.04% ┊ ⤷ core::slice::<impl [T]>::reverse::h303ee9604fd5d8c2 + 1764 ┊ 0.04% ┊ ⤷ core::slice::<impl [T]>::reverse::revswap::hf694c27058838848 + 1237 ┊ 0.03% ┊ ⤷ core::mem::swap::h176ede0c164d1d57 + 1057 ┊ 0.02% ┊ ⤷ core::ptr::swap_nonoverlapping::hcb04ab18039b19a4 + 1849 ┊ 0.04% ┊ ⤷ core::slice::sort::insertion_sort_shift_left::h3b794c4ff1038351 + 1027 ┊ 0.02% ┊ ⤷ core::slice::sort::insert_tail::h80b7560b7549f284 + 137 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::InsertionHole<(usize,char)>>::hdd5a90cfab1e7325 + 84 ┊ 0.00% ┊ ⤷ <core::slice::sort::InsertionHole<T> as core::ops::drop::Drop>::drop::hbb408456a2faeb80 + 304 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeInclusive<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h1ca92bc1846bcf82 + 937 ┊ 0.02% ┊ ⤷ core::slice::sort::find_streak::hc61f2c45b9dcc05c + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::push::h76e831a36908272f + 552 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF>::new::h713bc468219ced32 + 292 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h40b49a1203deffd1 + 482 ┊ 0.01% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::remove::hb78a7381eb769845 + 469 ┊ 0.01% ┊ ⤷ core::slice::sort::provide_sorted_batch::h4831eb253e54a2ef + 412 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::BufGuard<(usize,char),alloc::slice::stable_sort<(usize,char),alloc::slice::<impl [(usize,char)]>::sort_by_key<usize,idna::punycode::Decoder::decode::{{closure}}>::{{closure}}>::{{closure}}>>::he4c87aa7ed202f53 + 359 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::BufGuard<T,ElemDeallocF> as core::ops::drop::Drop>::drop::h46deba4203475023 + 242 ┊ 0.00% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h59fb5a118333aab9 + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::Index<usize>>::index::hea33442a4bcdf5c8 + 357 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::index::IndexMut<usize>>::index_mut::h556f8c080d68be50 + 317 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h1e477a5a10b2a542 + 314 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::hbac8b3d488212506 + 275 ┊ 0.01% ┊ ⤷ alloc::slice::<impl [T]>::sort_by_key::{{closure}}::h95edf40b80f7b73d + 52 ┊ 0.00% ┊ ⤷ idna::punycode::Decoder::decode::{{closure}}::h552c591d1e2634d8 + 267 ┊ 0.01% ┊ ⤷ alloc::slice::stable_sort::{{closure}}::h13fa1cf37b5c985f + 230 ┊ 0.00% ┊ ⤷ core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF>::new::h8ff14c6c0b3e52b5 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge_sort::RunVec<alloc::slice::stable_sort<(usize,char),alloc::slice::<impl [(usize,char)]>::sort_by_key<usize,idna::punycode::Decoder::decode::{{closure}}>::{{closure}}>::{{closure}},alloc::slice::stable_sort<(usize,char),alloc::slice::<impl [(usize,char)]>::sort_by_key<usize,idna::punycode::Decoder::decode::{{closure}}>::{{closure}}>::{{closure}}>>::h38f3449261697cd0 + 117 ┊ 0.00% ┊ ⤷ <core::slice::sort::merge_sort::RunVec<RunAllocF,RunDeallocF> as core::ops::drop::Drop>::drop::h2c2c6f5dd0d29530 + 1792 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::h6c422c66e45c6a8b + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h7f189ec6617584ff + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::had94d036cc5e5809 + 538 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::hd86fa114473464af + 293 ┊ 0.01% ┊ ⤷ <&mut alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h2ed2c55dab44797f + 253 ┊ 0.01% ┊ ⤷ core::char::from_u32::h488b2b6c6a7145e3 + 199 ┊ 0.00% ┊ ⤷ core::str::<impl str>::bytes::he606604b74dc27d0 + 160 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::clear::h28cb003f2b307cfb + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h16dd0721237ac5d0 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::h754b1b204f42ff1e + 105 ┊ 0.00% ┊ ⤷ <core::str::iter::Bytes as core::iter::traits::iterator::Iterator>::next::h61cb263daf52b269 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h3bd9d3bbeec2ee58 + 8381 ┊ 0.17% ┊ ⤷ tinyvec::tinyvec::TinyVec<A>::push::h69f9c549ead79aaf + 5481 ┊ 0.11% ┊ ⤷ tinyvec::tinyvec::TinyVec<A>::push::drain_to_heap_and_push::h600e7e9671706872 + 5200 ┊ 0.11% ┊ ⤷ tinyvec::arrayvec::ArrayVec<A>::drain_to_vec_and_reserve::h766832aeb8852693 + 3052 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::Extend<T>>::extend::h5f31d8be4f011326 + 2897 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h4acdd1b1c504084e + 2826 ┊ 0.06% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::h5bb5bd300fc7fb98 + 1539 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::he3e8a1a795206b41 + 1400 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h7cc60b7b83c4456c + 1261 ┊ 0.03% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::fold::he021df2bea2666f2 + 333 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::ha8b568082a454efa + 223 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h6c09f1264b2e0df5 + 147 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::hd7e2fda5796d527d + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<&mut char,char,(),tinyvec::take<char>,core::iter::traits::iterator::Iterator::for_each::call<char,alloc::vec::Vec<char>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<char>,tinyvec::take<char>>>::{{closure}}>::{{closure}}>::{{closure}}>::hdab1617311d23cbb + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<char,alloc::vec::Vec<char>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<char>,tinyvec::take<char>>>::{{closure}}>::{{closure}}>::h4bc4d5f40a1d3d95 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<char>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<char>,tinyvec::take<char>>>::{{closure}}>::h66b4550574119982 + 398 ┊ 0.01% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::hdd951a972c403090 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::size_hint::hacad6d39d51049f4 + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::he5f7f01ef6d8a576 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::hd30f8f444d3d5ec7 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hfad75602467eef18 + 1022 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::hc4184dfccfeef94b + 922 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hf9997a0719cf2cee + 252 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::he65dc9cabe4a0d40 + 138 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h7d73b07f1d363c8e + 1403 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h016a14621f4aecc6 + 371 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h17280a9c53ea4f9a + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h4a0bf102427095ed + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_mut::h28650d5d63246a27 + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_mut::h9942f99dfdad4597 + 8378 ┊ 0.17% ┊ ⤷ tinyvec::tinyvec::TinyVec<A>::push::h56df1213837de73b + 5314 ┊ 0.11% ┊ ⤷ tinyvec::tinyvec::TinyVec<A>::push::drain_to_heap_and_push::h036762a02e3661f1 + 5024 ┊ 0.10% ┊ ⤷ tinyvec::arrayvec::ArrayVec<A>::drain_to_vec_and_reserve::h24f83fa077a352de + 3124 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::Extend<T>>::extend::h1eb6c3e32057ee7b + 2969 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h29d108848f1f04b0 + 2898 ┊ 0.06% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::hce894a138c9b19ab + 1611 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hdfa338e96798d89c + 1472 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h66bcc95cfc0cb683 + 1333 ┊ 0.03% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::fold::h424b2c3fa40998f6 + 405 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h36d8c01ae0dcf770 + 260 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h4b08a71ddc49c5db + 161 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::extend_trusted::{{closure}}::h1a8d6f385b215b99 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::map_fold<&mut (u8,char),(u8,char),(),tinyvec::take<(u8,char)>,core::iter::traits::iterator::Iterator::for_each::call<(u8,char),alloc::vec::Vec<(u8,char)>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<(u8,char)>,tinyvec::take<(u8,char)>>>::{{closure}}>::{{closure}}>::{{closure}}>::hc9d0cb025ad00374 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::traits::iterator::Iterator::for_each::call<(u8,char),alloc::vec::Vec<(u8,char)>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<(u8,char)>,tinyvec::take<(u8,char)>>>::{{closure}}>::{{closure}}>::hf4cf7ce1b227ede8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(u8,char)>::extend_trusted<core::iter::adapters::map::Map<core::slice::iter::IterMut<(u8,char)>,tinyvec::take<(u8,char)>>>::{{closure}}>::h53a08680b88ec498 + 398 ┊ 0.01% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h9c16c82d050303f8 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::size_hint::h4b49af8e84c93c9e + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h57cdfd563e502550 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h850dd531a3888581 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::he408ae168c1b3c4d + 1026 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::h09c26d137dd1ed04 + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h997a25fa8bf2e73e + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h26fea219207a2371 + 385 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h6d67ce610ebda0a7 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hba90cd1c7e784ac9 + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_mut::h3f92ed0e24c40d1e + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_mut::h371363a30ae83623 + 3935 ┊ 0.08% ┊ ⤷ unicode_normalization::normalize::compose::ha9f4833a418a7d42 + 2394 ┊ 0.05% ┊ ⤷ core::option::Option<T>::or_else::hed652bea69825376 + 2120 ┊ 0.04% ┊ ⤷ unicode_normalization::normalize::compose::{{closure}}::h591fd349091585ab + 2026 ┊ 0.04% ┊ ⤷ unicode_normalization::lookups::composition_table::h0aab5c812fb43803 + 975 ┊ 0.02% ┊ ⤷ unicode_normalization::tables::composition_table_astral::h89d59173e1d1f520 + 806 ┊ 0.02% ┊ ⤷ unicode_normalization::perfect_hash::mph_lookup::h09ef9f8fb8298173 + 139 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h2e6dd28d55f5f1e1 + 52 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::pair_lookup_fv_opt::h29d74e88588a8af2 + 125 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::ha2e02663bd3a1da3 + 38 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::pair_lookup_fk::hcbd09985909f3a32 + 50 ┊ 0.00% ┊ ⤷ core::char::from_u32_unchecked::hf0916978821edacc + 3411 ┊ 0.07% ┊ ⤷ idna::uts46::passes_bidi::h8861936b330c6bc6 + 234 ┊ 0.00% ┊ ⤷ <core::iter::adapters::rev::Rev<I> as core::iter::traits::iterator::Iterator>::next::hb27012344baf327c + 177 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::h54610df2c4bb5eff + 116 ┊ 0.00% ┊ ⤷ <unicode_bidi::char_data::tables::BidiClass as core::cmp::PartialEq>::eq::h44b25f83ac8ee958 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::rev::hfab8748b3269046f + 64 ┊ 0.00% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::next::ha06a849ee700e5cf + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h169433ce1e9bcdb6 + 2340 ┊ 0.05% ┊ ⤷ idna::uts46::check_validity::h7cc94e1f1e2a2d00 + 873 ┊ 0.02% ┊ ⤷ unicode_normalization::lookups::is_combining_mark::h84cb375425a1161c + 754 ┊ 0.02% ┊ ⤷ unicode_normalization::perfect_hash::mph_lookup::h624a8e1c525a40db + 128 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h81273d48fd2ca0d4 + 46 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::bool_lookup_fv::h7172bd4699451720 + 102 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h2394104955fb5004 + 31 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::bool_lookup_fk::h08240fc6e3f8109c + 854 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::any::ha536dce4adb7464f + 713 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h36cc16920cc4aed9 + 364 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::any::check::{{closure}}::h717f68ce29375e77 + 220 ┊ 0.00% ┊ ⤷ idna::uts46::check_validity::{{closure}}::hf0c51ecb46f48583 + 150 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h72a3053f76d22f14 + 2318 ┊ 0.05% ┊ ⤷ idna::uts46::find_char::h6a526c138805cb16 + 1349 ┊ 0.03% ┊ ⤷ core::slice::<impl [T]>::binary_search_by_key::h6b1ac545dab44b0f + 1206 ┊ 0.02% ┊ ⤷ core::slice::<impl [T]>::binary_search_by::h7acd9a7a61ef6fb6 + 369 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::binary_search_by_key::{{closure}}::h618d64e7f16494dd + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for char>::cmp::h3a5a723fa343eda6 + 66 ┊ 0.00% ┊ ⤷ idna::uts46::find_char::{{closure}}::h6574e61d58779329 + 2130 ┊ 0.04% ┊ ⤷ core::slice::<impl [T]>::reverse::hd39e7e5535cf21b4 + 1764 ┊ 0.04% ┊ ⤷ core::slice::<impl [T]>::reverse::revswap::h5349dc78d20dbcdd + 1237 ┊ 0.03% ┊ ⤷ core::mem::swap::h9813583fbad62ee0 + 1057 ┊ 0.02% ┊ ⤷ core::ptr::swap_nonoverlapping::h0ac94c1455c38f98 + 2012 ┊ 0.04% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::h497439b2be2d2d41 + 1412 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hf709baaf42791844 + 1343 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::fold::h19e7278b0f07f7b3 + 985 ┊ 0.02% ┊ ⤷ <idna::punycode::Decode as core::iter::traits::iterator::Iterator>::next::h5ca2b7dd6ef20ab5 + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get::hfed719302d36a447 + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::h732f8103b49f833b + 145 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h4d35af769ea8bc8e + 69 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::iter::traits::collect::Extend<char>>::extend::{{closure}}::hefe34bd1d8d4c05e + 191 ┊ 0.00% ┊ ⤷ <idna::punycode::Decode as core::iter::traits::iterator::Iterator>::size_hint::h63bf5a4eeb51785a + 119 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hf2158c2e084e8426 + 1810 ┊ 0.04% ┊ ⤷ core::slice::sort::merge_sort::collapse::h79171b6fd04c8854 + 1737 ┊ 0.04% ┊ ⤷ tinyvec::arrayvec::ArrayVec<A>::truncate::hba68a60b9927418d + 1250 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::hf332dd8c1573bd30 + 1188 ┊ 0.02% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::hf43914dbee048d44 + 1126 ┊ 0.02% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::fold::h4fe56f759aa3b81e + 352 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h88419780b1a03650 + 218 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h2aed324da32d4211 + 119 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h00cbafdaf776543f + 36 ┊ 0.00% ┊ ⤷ core::mem::drop::h5a887d5d4eb94f0e + 123 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::hfe34d4c157635e11 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h83bc9327351289cb + 1656 ┊ 0.03% ┊ ⤷ tinyvec::arrayvec::ArrayVec<A>::truncate::h87f5cf2960143314 + 1169 ┊ 0.02% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::h205c5d15b17adef4 + 1107 ┊ 0.02% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold::h58ec9cbc91303ad8 + 1045 ┊ 0.02% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::fold::h799731f020ab0f29 + 271 ┊ 0.01% ┊ ⤷ core::iter::adapters::map::map_fold::{{closure}}::h24cd453b9099e44b + 172 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::ha4a0da62e3335a10 + 96 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h04c02ad683c29e6c + 29 ┊ 0.00% ┊ ⤷ core::mem::drop::haca2b413ed162053 + 123 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::he404bb7a996f8de9 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h6b2b471414fa7636 + 1434 ┊ 0.03% ┊ ⤷ unicode_bidi::char_data::bidi_class::hd42defcd9192df6b + 1361 ┊ 0.03% ┊ ⤷ unicode_bidi::char_data::bsearch_range_value_table::h899177207704a673 + 1085 ┊ 0.02% ┊ ⤷ core::slice::<impl [T]>::binary_search_by::hf29f5ca85d7ae5a0 + 255 ┊ 0.01% ┊ ⤷ unicode_bidi::char_data::bsearch_range_value_table::{{closure}}::h519224ddc0c94e36 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h5531af61588ac078 + 1105 ┊ 0.02% ┊ ⤷ <I as unicode_normalization::UnicodeNormalization<I>>::nfc::hfe1a9937473cca06 + 1093 ┊ 0.02% ┊ ⤷ unicode_normalization::recompose::new_canonical::h77ca57848dab0716 + 759 ┊ 0.02% ┊ ⤷ unicode_normalization::decompose::new_canonical::h82bf6b0f87d5a5e2 + 245 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::h1a7f813673bd82de + 758 ┊ 0.02% ┊ ⤷ unicode_normalization::perfect_hash::mph_lookup::hf88ce4cb61af3646 + 121 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::hc4d45577c24d2e43 + 46 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::pair_lookup_fv_opt::h53b34f5125ddf55a + 93 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h188a0bb942c8c345 + 16 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::pair_lookup_fk::h7c5f3cc60cbd90db + 721 ┊ 0.01% ┊ ⤷ unicode_normalization::perfect_hash::mph_lookup::h82712a621f0abd8b + 114 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h54b8d627203f7b86 + 43 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::u8_lookup_fv::he08ae0c9309777f1 + 113 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::h3e63e8a1583877b9 + 42 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::u8_lookup_fk::h56bf180f8e8fa504 + 670 ┊ 0.01% ┊ ⤷ unicode_normalization::lookups::canonical_fully_decomposed::h7661bef9195da7ad + 488 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::he3d7dec3035be8c9 + 234 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::canonical_fully_decomposed::{{closure}}::h50ba7f1e108ab770 + 670 ┊ 0.01% ┊ ⤷ unicode_normalization::lookups::compatibility_fully_decomposed::ha600d70698f2a6d0 + 488 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h82393da0c1fe5470 + 234 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::compatibility_fully_decomposed::{{closure}}::h33654b245a8d026a + 630 ┊ 0.01% ┊ ⤷ <tinyvec::tinyvec::TinyVec<A> as core::default::Default>::default::h6c86156d57ffdad1 + 380 ┊ 0.01% ┊ ⤷ <tinyvec::arrayvec::ArrayVec<A> as core::default::Default>::default::hea40b23de6f6f137 + 557 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tinyvec::tinyvec::TinyVec<[char; 4]>>::h6d16d689c55e5228 + 428 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<char>>::hbf53b333681142c4 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<char>>::h74f65cfdf4fa1197 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hfc5a537c38644f4f + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hf8893aa361b98066 + 557 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<tinyvec::tinyvec::TinyVec<[(u8,char); 4]>>::h938be42281b64257 + 428 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(u8,char)>>::h039c65c15cb69676 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(u8,char)>>::h36827ee977d88e59 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hc44b332ee3def9f3 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h11a29614a612b9c3 + 552 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::he0ff9d37d613622e + 438 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index::h7462da941b17cc34 + 300 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::ha569e9f96c80483f + 552 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h69f5c2c6e62b83ef + 438 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index::h7fc4cfb8c1b41b2c + 300 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::h8dc53e1183d2fc33 + 537 ┊ 0.01% ┊ ⤷ idna::uts46::is_bidi_domain::ha17dfb22b84bc1c0 + 155 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::is_ascii_graphic::h7931132e797b704e + 481 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<idna::punycode::Decoder>::hdb3660ecae420e17 + 428 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(usize,char)>>::hf8409c43c2980b07 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(usize,char)>>::h210146a33acaa7f9 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hec5f8587c35574ff + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h25981f55eaa572a2 + 408 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::hde145c7e5dc1974e + 294 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeFrom<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::had7367f5eb41612a + 380 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h76396b0b27e39dfd + 266 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeFrom<usize> as core::slice::index::SliceIndex<[T]>>::index::h5072df665390ce00 + 349 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::ops::index::Index<core::ops::range::RangeFrom<usize>>>::index::h56ac4715fa7abb5e + 345 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::h9de66a693ed0f564 + 262 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h317cb9eb6dfc5afb + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::ha9fdfe160813bd12 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h731bb5f363056581 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h0bd2f61c3fd61121 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h53eb93a82c1bba7a + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h7e45b1943bad59a6 + 314 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h3e786975ab72c4b1 + 314 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h5e4d439430bd1d7a + 308 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::merge::MergeHole<(u8,char)>>::hcc2c4da74e7b5596 + 255 ┊ 0.01% ┊ ⤷ <core::slice::sort::merge::MergeHole<T> as core::ops::drop::Drop>::drop::h792f63ee950b281a + 304 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeInclusive<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::he8754dbf0776b096 + 303 ┊ 0.01% ┊ ⤷ unicode_normalization::perfect_hash::my_hash::h52456d3c605de6a1 + 301 ┊ 0.01% ┊ ⤷ <tinyvec::tinyvec::TinyVec<A> as core::default::Default>::default::h3a38209f31281235 + 137 ┊ 0.00% ┊ ⤷ <tinyvec::arrayvec::ArrayVec<A> as core::default::Default>::default::h504ada4b9d133425 + 262 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next_back::h42085b2b1a2985f8 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::backward_unchecked::h583d2ff4f6cf5932 + 252 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::h6d4326afffa1b6ef + 138 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::hde972e275736eee4 + 241 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::hb4d80c3761b2af46 + 241 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::hb50846333b30a197 + 238 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::hf4ef37b79e2a5494 + 99 ┊ 0.00% ┊ ⤷ core::mem::replace::h970f9e5770ccce09 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::hbb2672e9f5188f47 + 225 ┊ 0.00% ┊ ⤷ <T as core::convert::TryInto<U>>::try_into::hde2ff77a7f872ada + 131 ┊ 0.00% ┊ ⤷ core::convert::num::ptr_try_from_impls::<impl core::convert::TryFrom<usize> for u16>::try_from::h04e302e3d6e1b3f4 + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get::h94d15360cc04c1ef + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::h52e839aba3f7268a + 215 ┊ 0.00% ┊ ⤷ unicode_normalization::normalize::is_hangul_syllable::he5947e6d019c2cd1 + 203 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h7e9964bb268433db + 126 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::index::h452450a100242bf0 + 203 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::h7898cf3bbe907705 + 126 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::index_mut::hf2ce560f1fb17e3d + 187 ┊ 0.00% ┊ ⤷ core::slice::iter::<impl core::iter::traits::collect::IntoIterator for &[T]>::into_iter::h2ed4ef0571944f49 + 180 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter_mut::h01a32c1300500757 + 180 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter_mut::h20a0b813e5c63df3 + 168 ┊ 0.00% ┊ ⤷ alloc::string::String::clear::h32a221b517197653 + 160 ┊ 0.00% ┊ ⤷ <idna::punycode::Decoder as core::default::Default>::default::hd2c140883a8b959d + 40 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T> as core::default::Default>::default::h333c46145dbc2e97 + 149 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h185d7bb83e19e6bf + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h95c83d157cdbdfbd + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::hf00350ffd03d6198 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::he04c201987dde8b6 + 143 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h769cf130cb443940 + 59 ┊ 0.00% ┊ ⤷ core::mem::replace::hc09117a45a16edf5 + 137 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::slice::sort::InsertionHole<(u8,char)>>::hb78adfe756bf93e8 + 84 ┊ 0.00% ┊ ⤷ <core::slice::sort::InsertionHole<T> as core::ops::drop::Drop>::drop::h32594f6dbedea15c + 123 ┊ 0.00% ┊ ⤷ core::option::Option<&T>::cloned::hda9c1390cd4480b8 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::hd6f6247729afffa5 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h841b2f5e2fa89765 + 97 ┊ 0.00% ┊ ⤷ core::ops::function::Fn::call::hb86dda5c6386fdd0 + 97 ┊ 0.00% ┊ ⤷ unicode_normalization::lookups::canonical_combining_class::hac84106233829aec + 90 ┊ 0.00% ┊ ⤷ idna::uts46::Config::transitional_processing::h771d24eb25440ebf + 88 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::he334deaebecbb588 + 31 ┊ 0.00% ┊ ⤷ core::char::convert::<impl core::convert::From<char> for u32>::from::he547cb3c43850d94 + 82 ┊ 0.00% ┊ ⤷ core::tuple::<impl core::default::Default for (U,T)>::default::h3febef9b15c1540a + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h9cef1bfd6b5dcb80 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::hb686b69f91043d6b + 73 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h97cc765d35bf80e8 + 50 ┊ 0.00% ┊ ⤷ core::char::from_u32_unchecked::h396c6f47b2961d19 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h68419de0009e9418 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::hb6b844553872d3ab + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h1362c9a363e6dd3e + 15281 ┊ 0.31% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h1ead255e6b5f1c92 + 15217 ┊ 0.31% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::hca7c3924d6edd099 + 14882 ┊ 0.30% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hcef37dd67d076505 + 14818 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h37ab6ec820e41ee1 + 14681 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h7c663f873270b8be + 14617 ┊ 0.30% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::h3209a955bc030832 + 12667 ┊ 0.26% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::hf6ad18ffd55f01a6 + 11584 ┊ 0.24% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h1c098a5ae9e6efd7 + 10017 ┊ 0.20% ┊ ⤷ <form_urlencoded::Parse as core::iter::traits::iterator::Iterator>::next::h17343c307647114f + 4115 ┊ 0.08% ┊ ⤷ form_urlencoded::decode::h248a6dceaf2cf5d2 + 2423 ┊ 0.05% ┊ ⤷ form_urlencoded::replace_plus::h7729d721aab1b691 + 701 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::h6a717c0e654f5c63 + 98 ┊ 0.00% ┊ ⤷ form_urlencoded::replace_plus::{{closure}}::hebb06a82bca415c5 + 501 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::IndexMut<I>>::index_mut::h989c14dc73cc412f + 283 ┊ 0.01% ┊ ⤷ <core::ops::range::RangeFrom<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h59caf7975d71531e + 307 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::index::IndexMut<I>>::index_mut::hf1da9e072fd1f75d + 115 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::index_mut::h9b2415953a1f8645 + 169 ┊ 0.00% ┊ ⤷ core::slice::iter::<impl core::iter::traits::collect::IntoIterator for &mut [T]>::into_iter::h89846e607d2c89b2 + 1000 ┊ 0.02% ┊ ⤷ form_urlencoded::decode_utf8_lossy::h94fd9ac8f62ecb03 + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::from_utf8_unchecked::h0f324acf64ef5b78 + 132 ┊ 0.00% ┊ ⤷ percent_encoding::percent_decode::h28a3d68d1e7ddbf5 + 2005 ┊ 0.04% ┊ ⤷ <core::slice::iter::SplitN<T,P> as core::iter::traits::iterator::Iterator>::next::h563c38360767debc + 1676 ┊ 0.03% ┊ ⤷ <core::slice::iter::Split<T,P> as core::iter::traits::iterator::Iterator>::next::ha191c043c02b027b + 806 ┊ 0.02% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::hf66c3d29a9813a92 + 196 ┊ 0.00% ┊ ⤷ <core::slice::iter::Split<T,P> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h934f21a580b5c61e + 98 ┊ 0.00% ┊ ⤷ <form_urlencoded::Parse as core::iter::traits::iterator::Iterator>::next::{{closure}}::h99e1d09e7687c313 + 2005 ┊ 0.04% ┊ ⤷ <core::slice::iter::SplitN<T,P> as core::iter::traits::iterator::Iterator>::next::h66cbd51e8b09e65a + 1676 ┊ 0.03% ┊ ⤷ <core::slice::iter::Split<T,P> as core::iter::traits::iterator::Iterator>::next::h003d509980ed089f + 806 ┊ 0.02% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::h3a9d6db454835ee2 + 196 ┊ 0.00% ┊ ⤷ <core::slice::iter::Split<T,P> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h5b2ba96f248ec76c + 98 ┊ 0.00% ┊ ⤷ <form_urlencoded::Parse as core::iter::traits::iterator::Iterator>::next::{{closure}}::h3d37baf6b5ed8125 + 219 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::h9be2ab99b1d0d67c + 218 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::splitn::h167fc5dccfcf1069 + 218 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::splitn::hfbcebecfdedb5ce4 + 150 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hf99e5b9bfa4e9ecc + 68 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::is_empty::h9b05181b44dbabe7 + 1003 ┊ 0.02% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::h8f1101bdffba80c5 + 861 ┊ 0.02% ┊ ⤷ routing::location::server::RequestUrl::parse_with_base::{{closure}}::h6e9ecb84b8ac4b76 + 444 ┊ 0.01% ┊ ⤷ <alloc::borrow::Cow<str> as alloc::string::ToString>::to_string::hd8aafe715f05b5e4 + 519 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::hf2d17bd156ba06c3 + 377 ┊ 0.01% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::{{closure}}::hda0164cb63e92365 + 827 ┊ 0.02% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h57c24789ffc278b0 + 756 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::he89f926cdca93f38 + 189 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h8d4a9f65a0d6db70 + 134 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h54fc196bdfe60e17 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h871b8bbef0c59100 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h9b407d1f24c403ab + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h71801b8bf5d332f3 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h98cafc230fdb8ec4 + 6556 ┊ 0.13% ┊ ⤷ <T as core::convert::Into<U>>::into::he7b2ba7f361a6096 + 6492 ┊ 0.13% ┊ ⤷ percent_encoding::<impl core::convert::From<percent_encoding::PercentDecode> for alloc::borrow::Cow<[u8]>>::from::hb0f1d64766c18fa6 + 5913 ┊ 0.12% ┊ ⤷ percent_encoding::PercentDecode::if_any::ha6c04d197be51656 + 2278 ┊ 0.05% ┊ ⤷ percent_encoding::after_percent_sign::h74bdb3fb244dd2e6 + 943 ┊ 0.02% ┊ ⤷ core::char::methods::<impl char>::to_digit::h55703adbbe49d606 + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h70906a9dc91cb16a + 126 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::ha8e5c752d40badf0 + 106 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h5347a11f9515d5a1 + 61 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h1d89d453097e593e + 43 ┊ 0.00% ┊ ⤷ core::char::convert::<impl core::convert::From<u8> for char>::from::h4471275d48bb81d6 + 1752 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::Extend<T>>::extend::ha177d64a1c2b266e + 1597 ┊ 0.03% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::hf21f380c81b276bb + 1526 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h41b341b47abea8f7 + 753 ┊ 0.02% ┊ ⤷ <percent_encoding::PercentDecode as core::iter::traits::iterator::Iterator>::next::heaae9302ec76f06d + 617 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h56c627ac056495d2 + 383 ┊ 0.01% ┊ ⤷ <percent_encoding::PercentDecode as core::iter::traits::iterator::Iterator>::next::{{closure}}::had66d652402a3e79 + 163 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::hd85ea71f4e9e8ad9 + 283 ┊ 0.01% ┊ ⤷ <percent_encoding::PercentDecode as core::iter::traits::iterator::Iterator>::size_hint::hc085911de493f2c9 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8958af7808903f2c + 360 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h224ba276442954ce + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hf433278d464f2968 + 350 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::h1ad343f7133ea1d7 + 98 ┊ 0.00% ┊ ⤷ percent_encoding::PercentDecode::if_any::{{closure}}::h156622772a2b41a1 + 252 ┊ 0.01% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h3ffd00d52abdc28e + 138 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeTo<usize> as core::slice::index::SliceIndex<[T]>>::index::hca0decbe873206bb + 228 ┊ 0.00% ┊ ⤷ core::slice::iter::Iter<T>::as_slice::he1df693e5e99885b + 3729 ┊ 0.08% ┊ ⤷ url::origin::Origin::unicode_serialization::h0a8fdefa7cb097ea + 827 ┊ 0.02% ┊ ⤷ idna::domain_to_unicode::h60380a5d1e990a34 + 726 ┊ 0.01% ┊ ⤷ idna::uts46::Config::to_unicode::h85d2678a7661c226 + 266 ┊ 0.01% ┊ ⤷ idna::uts46::Idna::to_unicode::h26c000ea4b75af18 + 775 ┊ 0.02% ┊ ⤷ alloc::fmt::format::h64016973aebc176f + 525 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or_else::h75711fcc1cac11cf + 180 ┊ 0.00% ┊ ⤷ alloc::fmt::format::{{closure}}::h4d3f506d07e34e15 + 78 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hce1c5289eb87694a + 533 ┊ 0.01% ┊ ⤷ <url::host::Host<S> as core::clone::Clone>::clone::he37663bb3510c19b + 77 ┊ 0.00% ┊ ⤷ <core::net::ip_addr::Ipv6Addr as core::clone::Clone>::clone::h5779147fcbf49c7f + 52 ┊ 0.00% ┊ ⤷ <core::net::ip_addr::Ipv4Addr as core::clone::Clone>::clone::h345b5830e03c04c3 + 3650 ┊ 0.07% ┊ ⤷ url::Url::origin::h1811a9cab32f4e53 + 3595 ┊ 0.07% ┊ ⤷ url::origin::url_origin::h53cf59a835783600 + 769 ┊ 0.02% ┊ ⤷ url::Url::host::h059d283b67d4bd8f + 595 ┊ 0.01% ┊ ⤷ url::Url::port_or_known_default::h87dcbdd457a60ca3 + 450 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::hf7381baeed7976c1 + 143 ┊ 0.00% ┊ ⤷ url::Url::port_or_known_default::{{closure}}::h5bdc45a9f4ca1ec8 + 399 ┊ 0.01% ┊ ⤷ url::host::Host<&str>::to_owned::h53ceec8666b99fd8 + 367 ┊ 0.01% ┊ ⤷ url::origin::Origin::new_opaque::h8c740bd44e04b37b + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_add::hc39e3be67723a3cc + 186 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h7eb1853dd2eded57 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h5150eaf1fa8420a4 + 114 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<url::Url,url::parser::ParseError>>::hab7c3529bd644ab6 + 101 ┊ 0.00% ┊ ⤷ url::Url::parse::hda51d259ba4ae80d + 2785 ┊ 0.06% ┊ ⤷ <core::str::iter::Split<P> as core::iter::traits::iterator::Iterator>::next::hbbdbdc3ea983563b + 2702 ┊ 0.06% ┊ ⤷ core::str::iter::SplitInternal<P>::next::h41962d07d04da911 + 1768 ┊ 0.04% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next_match::hc442383dd2a36dc4 + 339 ┊ 0.01% ┊ ⤷ core::slice::memchr::memchr_naive::h00553a73ddf35e14 + 429 ┊ 0.01% ┊ ⤷ core::str::iter::SplitInternal<P>::get_end::h2db1db9633ebc351 + 68 ┊ 0.00% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::Searcher>::haystack::h7231a5e9a18d3115 + 2781 ┊ 0.06% ┊ ⤷ core::str::<impl str>::is_ascii::ha7dff7b3c5769c3c + 2690 ┊ 0.05% ┊ ⤷ core::slice::ascii::is_ascii::h12e9b73e9bbdeea1 + 1607 ┊ 0.03% ┊ ⤷ core::ptr::const_ptr::<impl *const T>::align_offset::hc727fbd633f0c00e + 1254 ┊ 0.03% ┊ ⤷ core::ptr::align_offset::h3f600e4b1d8065ed + 624 ┊ 0.01% ┊ ⤷ core::ptr::align_offset::mod_inv::hc83ded479de23d9d + 1566 ┊ 0.03% ┊ ⤷ idna::punycode::adapt::hbfd9727441838bfb + 1507 ┊ 0.03% ┊ ⤷ core::str::<impl str>::rfind::haab8efc2fe35309c + 1275 ┊ 0.03% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::ReverseSearcher>::next_match_back::h83939f665f710f2a + 1417 ┊ 0.03% ┊ ⤷ core::str::validations::next_code_point_reverse::h8b529bb3f00bc288 + 466 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::hb9ae0043345d52af + 1384 ┊ 0.03% ┊ ⤷ idna::uts46::is_simple::h2a03bd030d26a3ca + 156 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::is_ascii_lowercase::h0ceeaeaeb045b76f + 154 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::is_ascii_digit::h97cdfaad091603f0 + 1163 ┊ 0.02% ┊ ⤷ alloc::string::String::from_utf8_lossy::hf20d5859f7a0c60b + 551 ┊ 0.01% ┊ ⤷ <core::str::lossy::Utf8Chunks as core::iter::traits::iterator::Iterator>::next::h64359954d742b059 + 1040 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h795adec91c5cb794 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::hd41584a24cf9150b + 1032 ┊ 0.02% ┊ ⤷ core::str::traits::<impl core::ops::index::Index<I> for str>::index::h9ec78074872eaa85 + 909 ┊ 0.02% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::index::ha7c1cdbcc67e850c + 697 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::get::h9f4cf71c2eb1e82e + 341 ┊ 0.01% ┊ ⤷ core::str::<impl str>::is_char_boundary::hbcebab8c5f5b4d89 + 801 ┊ 0.02% ┊ ⤷ core::str::<impl str>::ends_with::haaef8c62c5ec7a63 + 715 ┊ 0.01% ┊ ⤷ <char as core::str::pattern::Pattern>::is_suffix_of::h1927b1ba1ea4c86a + 499 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::ends_with::h4038bc4d201b537a + 717 ┊ 0.01% ┊ ⤷ url::Url::query::hdee54be6ad18305b + 552 ┊ 0.01% ┊ ⤷ idna::uts46::Errors::is_err::hacdcd762187ac6ea + 538 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::h74a3d3bdae9cbc40 + 497 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::h8810f6e8a9e481bf + 420 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h9cdefbbb55f0f61b + 96 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for u16>::eq::h00630c0d5bab7f61 + 489 ┊ 0.01% ┊ ⤷ url::Url::query_pairs::h871325ce0b805dec + 219 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_or::hb5f040ddf258fee5 + 78 ┊ 0.00% ┊ ⤷ form_urlencoded::parse::h3ff2a4ecd2d27400 + 453 ┊ 0.01% ┊ ⤷ alloc::string::String::push::hab3b2fc70ace13c2 + 418 ┊ 0.01% ┊ ⤷ core::str::<impl str>::split::h9f4b69465ae615f8 + 396 ┊ 0.01% ┊ ⤷ <char as core::str::pattern::Pattern>::into_searcher::h4dfd6331ecdb706e + 395 ┊ 0.01% ┊ ⤷ <alloc::borrow::Cow<B> as core::ops::deref::Deref>::deref::hb7c5a4cf59718a02 + 164 ┊ 0.00% ┊ ⤷ alloc::slice::<impl core::borrow::Borrow<[T]> for alloc::vec::Vec<T,A>>::borrow::h246cb7c5d7f8cb5c + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h2383c0c65727449b + 384 ┊ 0.01% ┊ ⤷ url::parser::default_port::hafab87a304fc9f7c + 380 ┊ 0.01% ┊ ⤷ idna::uts46::Idna::new::hdfd57235587abe50 + 114 ┊ 0.00% ┊ ⤷ alloc::string::String::new::he3808611f6f55873 + 357 ┊ 0.01% ┊ ⤷ url::Url::path::habfe618c2e6e94fa + 350 ┊ 0.01% ┊ ⤷ core::slice::memchr::memrchr::h6e556df1f69555b4 + 325 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::ops::index::Index<I> for str>::index::h467859445814a9f3 + 211 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeTo<usize>>::index::h09b7ab8faebb1557 + 311 ┊ 0.01% ┊ ⤷ url::Url::slice::h1956424767a3f396 + 155 ┊ 0.00% ┊ ⤷ <core::ops::range::Range<u32> as url::RangeArg>::slice_of::h2ab63091c0dfe8d7 + 303 ┊ 0.01% ┊ ⤷ url::Url::slice::hb88fca302c1b10c1 + 143 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFrom<u32> as url::RangeArg>::slice_of::hf946afa9d3915ccd + 303 ┊ 0.01% ┊ ⤷ url::Url::slice::ha0e881b6a813bb81 + 143 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeTo<u32> as url::RangeArg>::slice_of::h9a67c6d667e1e589 + 296 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h6763a1d3224c0f98 + 295 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::get::h5281112e9b6aa4ee + 290 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeTo<usize>>::get::haad98bf11d0777a3 + 272 ┊ 0.01% ┊ ⤷ <idna::uts46::Errors as core::default::Default>::default::h598e0f01638a880c + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::hf2ba899881e2d733 + 226 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::cmp::PartialEq for str>::eq::hd29bc735a992be29 + 208 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h8e433c39480e626d + 189 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h72fe374b770b983c + 177 ┊ 0.00% ┊ ⤷ idna::uts46::<impl core::convert::From<idna::uts46::Errors> for core::result::Result<(),idna::uts46::Errors>>::from::hdc116f271b57cd94 + 177 ┊ 0.00% ┊ ⤷ <core::iter::adapters::copied::Copied<I> as core::iter::traits::iterator::Iterator>::next::h5d4449422ff8ab80 + 177 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next::h53ce4541b3bd29b1 + 171 ┊ 0.00% ┊ ⤷ core::str::<impl str>::chars::h658fe17bbc6a60a9 + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::hc5de325e21b26be4 + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::hb5479e7b38386c07 + 160 ┊ 0.00% ┊ ⤷ alloc::string::String::with_capacity::h6cc59273322b6a4f + 156 ┊ 0.00% ┊ ⤷ alloc::string::String::as_bytes::hac72392b94bd2114 + 155 ┊ 0.00% ┊ ⤷ url::Url::byte_at::hdd42723aab1b4e99 + 152 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hd9d4b7e3e1cd3be8 + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::hb2dac241d1731893 + 136 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<url::origin::Origin>::he92993d1d298a1ef + 125 ┊ 0.00% ┊ ⤷ url::Url::options::h2b612c954c65953d + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::borrow::Cow<[u8]>>::h55c6c7c947ba5b3d + 118 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::h8d64bd70fb20c279 + 116 ┊ 0.00% ┊ ⤷ url::ParseOptions::base_url::hbb5ff511d3c639e0 + 106 ┊ 0.00% ┊ ⤷ url::Url::scheme::h6bc3b084c73ca34d + 103 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::set_len_on_drop::SetLenOnDrop>::h88bf2056ec940949 + 50 ┊ 0.00% ┊ ⤷ <alloc::vec::set_len_on_drop::SetLenOnDrop as core::ops::drop::Drop>::drop::h34f50bb6be447a60 + 101 ┊ 0.00% ┊ ⤷ url::Url::parse::hc2f457545983438d + 94 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<url::host::Host>::h4bd7c56ae869a13c + 85 ┊ 0.00% ┊ ⤷ <core::slice::iter::Iter<T> as core::clone::Clone>::clone::h0f8a966d0bd7cf74 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h5bed72ab16aed599 + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h47779850b8392a68 + 71 ┊ 0.00% ┊ ⤷ alloc::string::String::push_str::h09dfd90644922a5c + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<idna::uts46::Idna>::h7d68c0b136c55b32 + 68 ┊ 0.00% ┊ ⤷ core::str::<impl str>::is_empty::h36e7240aee0c860e + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<url::Url>::h7c0cef90438a6a59 + 62 ┊ 0.00% ┊ ⤷ <idna::uts46::Config as core::default::Default>::default::hdd62677ce41ebe93 + 45 ┊ 0.00% ┊ ⤷ alloc::string::String::len::h2762090bf13db3d5 + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::h89c90ece653cc2a0 + 31 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::by_ref::h133662ccf59f9132 + 14469 ┊ 0.29% ┊ ⤷ routing::location::Location::new::h4d12ffd187332683 + 3291 ┊ 0.07% ┊ ⤷ reactive_graph::computed::memo::Memo<T>::new::h6938e6d4008b576c + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h56afb33ff93e1fb2 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h1714b6f774d9860f + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hececf205dd7ddeb2 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h6e180230fd7fc91b + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::ha2c91223dd456e1a + 1476 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::he591f374a56b1994 + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h712919e9eacab837 + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h888b0811284eca2a + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h35bc7c19b96f5c47 + 482 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h4c83ed00654d9cba + 250 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::ha0cd71a5582c3cd1 + 1815 ┊ 0.04% ┊ ⤷ reactive_graph::computed::memo::Memo<T>::new::h3f4fe5bd0c9c0062 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::h007db6ee32f0ad70 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::hb7bbce3821407ecf + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hf3d70606b90d0395 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h6f44826b2019b883 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::he82a3197771b2181 + 1815 ┊ 0.04% ┊ ⤷ reactive_graph::computed::memo::Memo<T>::new::h883d9c792411e60d + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::hf7e8208996762a23 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h421c4ceb02226e0d + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::h99dab90464c92285 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h78412dfaa67934ac + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h172eb2df9d4fdde1 + 1815 ┊ 0.04% ┊ ⤷ reactive_graph::computed::memo::Memo<T>::new::hf1320e8d6ebb4626 + 1687 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new::hd48a967e3d3dfbc6 + 1591 ┊ 0.03% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::h8f501f59d9046c5a + 1391 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T>::new_cyclic::hfbdcff9843cf04b3 + 704 ┊ 0.01% ┊ ⤷ reactive_graph::computed::arc_memo::ArcMemo<T>::new_with_compare::{{closure}}::h9e85c9182c8f2fbd + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::ha9b8946c15cf48c1 + 1686 ┊ 0.03% ┊ ⤷ <T as core::convert::Into<U>>::into::h3fb21b05dff3ce87 + 1663 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as core::convert::From<reactive_graph::signal::arc_read::ArcReadSignal<T>>>::from::hcd66b97c4229d3bd + 1560 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::he65fb920860f36c3 + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h17b64cbe62c9e216 + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hdbddae207d2b99ba + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h7a0aefad9e81d1a8 + 529 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h2b791f7407587b6d + 302 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::hfb556bd6317203d2 + 1686 ┊ 0.03% ┊ ⤷ <T as core::convert::Into<U>>::into::heeaad51fdfc342c0 + 1663 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::read::ReadSignal<T> as core::convert::From<reactive_graph::signal::arc_read::ArcReadSignal<T>>>::from::hd92d8d3b1cf69e8d + 1560 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::hd936d55987d43fc8 + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hbba2612914bb23f2 + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hafd842c80c2714f7 + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h96d5ec5a386b6fd0 + 529 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h71b26cc46e18cec4 + 302 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::he54a885d6c307364 + 1476 ┊ 0.03% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::h354abca45b414457 + 776 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::ha790981657e2040c + 587 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h50076cef2a56dee9 + 241 ┊ 0.00% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::h3fe0dd73bb740305 + 482 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::hf19050e4db92e7fa + 250 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::StoredValue<T>::new::{{closure}}::hd9328fb2b638934e + 3825 ┊ 0.08% ┊ ⤷ reactive_graph::owner::context::use_context::hfefdaf7ab30bb9a1 + 3711 ┊ 0.08% ┊ ⤷ core::option::Option<T>::and_then::h65a23d6bc2a42a92 + 3395 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::h5ac41c882acc0552 + 3314 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::hd72c5ef4773d91f1 + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::h0775861a8070ef86 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h03f6eebb65a3af0b + 341 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hc88ef45505d9300c + 106 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h992f2ec426d248f0 + 306 ┊ 0.01% ┊ ⤷ core::option::Option<&T>::cloned::h7c50628b7a05e583 + 122 ┊ 0.00% ┊ ⤷ <routing::location::server::RequestUrl as core::clone::Clone>::clone::h271138af944b17dc + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h45766c5fdf6016cb + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::hc60ed4d0c804f073 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h92f27bb8257bc42b + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h2b50033dc34a57fd + 163 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h215a7342b1397b43 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<routing::location::server::RequestUrl>>::hbf9ffba4db822b76 + 3562 ┊ 0.07% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::init::h8bc50faf453a8a15 + 669 ┊ 0.01% ┊ ⤷ routing::location::handle_anchor_click::hd5f3e9603c42f1d6 + 331 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_default::h5a4cd3ed16b1099c + 120 ┊ 0.00% ┊ ⤷ <alloc::borrow::Cow<B> as core::default::Default>::default::hded2bb2853d88dd0 + 542 ┊ 0.01% ┊ ⤷ web_sys::features::gen_EventTarget::EventTarget::add_event_listener_with_callback::h4dfb444806d9d22b + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Function>::into_abi::h64e94e43020eee2e + 46 ┊ 0.00% ┊ ⤷ import wbg::__wbg_addEventListener_53b787075bd5e003 + 486 ┊ 0.01% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::h14fc41db83b23f90 + 111 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::breaks_if_inlined::h407a033bbe7c543f + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_closure_wrapper10075 + 485 ┊ 0.01% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::h9a19647e0beda4fa + 110 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::wrap::breaks_if_inlined::h3a892fefc534f46e + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_closure_wrapper9957 + 167 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::into_js_value::haca241615de017bf + 5 ┊ 0.00% ┊ ⤷ core::mem::forget::h1bb7f6fb2b1cefdd + 167 ┊ 0.00% ┊ ⤷ wasm_bindgen::closure::Closure<T>::into_js_value::hfffbd13c84a631ed + 5 ┊ 0.00% ┊ ⤷ core::mem::forget::hcbc2feacd7f2dca2 + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::habd94831bd38a6c1 + 31 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Function>::unchecked_from_js_ref::hd8d07222cafa92bb + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Window::Window as core::ops::deref::Deref>::deref::h0fb34d330698029f + 1626 ┊ 0.03% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::new::h5e57b623ba166f3c + 776 ┊ 0.02% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h7c71a9350562894c + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h016c3d74100c2a2b + 1312 ┊ 0.03% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::h12ff40189a972988 + 772 ┊ 0.02% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hbf500ae86c400444 + 341 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h3267b7c7eb61c099 + 923 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::had11e4a87a31efca + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hf1f8630adbe880a1 + 187 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h236a6103d3c26f60 + 7 ┊ 0.00% ┊ ⤷ type[41]: (i32, i64, i32, i32) -> nil + 850 ┊ 0.02% ┊ ⤷ reactive_graph::owner::context::provide_context::hda73dae7368d32d3 + 358 ┊ 0.01% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::provide_context::hfcfdebc9cba7231b + 422 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h3aefa5bf5b6d8f14 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h8af6647944a3969b + 411 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::expect::h20833ce58b58a4be + 391 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h24d4d3e00bd6ab42 + 148 ┊ 0.00% ┊ ⤷ routing::components::__Router::{{closure}}::h2c01036901e4c931 + 185 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h47808f1b25445486 + 153 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h6a1121acd2c22864 + 114 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::default::Default>::default::h288cea1a35ab7c01 + 112 ┊ 0.00% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::read_only::hff5ebbc66bd8d512 + 112 ┊ 0.00% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::read_only::h52a8ebc03df8a58a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::server::RequestUrl>::h29e2cd3711330a41 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::location::history::BrowserUrl>::h878bc0b25de4f9b1 + 50 ┊ 0.00% ┊ ⤷ leptos::children::TypedChildren<T>::into_inner::h1db01c1c8d5e9af2 + 31 ┊ 0.00% ┊ ⤷ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::as_url::hb000e3f2d5896ed3 + 2945 ┊ 0.06% ┊ ⤷ leptos::component::component_view::h83b0589a6542fef2 + 2888 ┊ 0.06% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::h4960904975dc010d + 2627 ┊ 0.05% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h75e9b5e231464f26 + 2366 ┊ 0.05% ┊ ⤷ core::ops::function::Fn::call::h07a6727aed1cdb02 + 2107 ┊ 0.04% ┊ ⤷ leptos_meta::stylesheet::Stylesheet::h1147faad3a0dd704 + 1397 ┊ 0.03% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h7d3f443a89687100 + 1309 ┊ 0.03% ┊ ⤷ leptos_meta::stylesheet::Stylesheet::{{closure}}::h71e7f69273d24426 + 1038 ┊ 0.02% ┊ ⤷ leptos_meta::stylesheet::__Stylesheet::hd46403a2a6cf8bd6 + 360 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Link,At,(),Rndr>>::href::h583ce28c31ee9815 + 123 ┊ 0.00% ┊ ⤷ <(A,) as next_tuple::TupleBuilder>::next_tuple::he0b726c9ad2961f1 + 311 ┊ 0.01% ┊ ⤷ tachys::html::element::elements::<impl tachys::html::element::HtmlElement<tachys::html::element::elements::Link,At,(),Rndr>>::rel::h08268a3c80b46642 + 78 ┊ 0.00% ┊ ⤷ tachys::html::attribute::key::rel::hafa57d769e82190b + 78 ┊ 0.00% ┊ ⤷ <() as next_tuple::TupleBuilder>::next_tuple::ha2e71d0c92ecff77 + 225 ┊ 0.00% ┊ ⤷ leptos_meta::register::hf30ad9a6014b68b3 + 5 ┊ 0.00% ┊ ⤷ tachys::html::element::elements::link::hf88461edd90dcbbe + 847 ┊ 0.02% ┊ ⤷ leptos_meta::stylesheet::StylesheetPropsBuilder<((alloc::string::String,),__id,__attrs)>::build::h71937a29806cdaf2 + 152 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hd056daab594c00fe + 92 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::h015d9a9d046c43ce + 46 ┊ 0.00% ┊ ⤷ leptos_meta::stylesheet::StylesheetPropsBuilder<((alloc::string::String,),__id,__attrs)>::build::{{closure}}::h30bddf35820989bd + 69 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::h126eda41ef05b74b + 507 ┊ 0.01% ┊ ⤷ routing::components::RouterPropsBuilder<Chil,(__base,(leptos::children::TypedChildren<Chil>,),__id)>::build::h1151e3d8db5544fd + 114 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::ha082a0979093f1bd + 68 ┊ 0.00% ┊ ⤷ routing::components::RouterPropsBuilder<Chil,(__base,(leptos::children::TypedChildren<Chil>,),__id)>::build::{{closure}}::h156bbd52ede86281 + 22 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::hd765a0c289c2c99f + 87 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h29437b19695d99c2 + 75 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::h0cd11f5ac1d65287 + 27 ┊ 0.00% ┊ ⤷ routing::components::RouterPropsBuilder<Chil,(__base,(leptos::children::TypedChildren<Chil>,),__id)>::build::{{closure}}::ha7b72fe0ed5697c8 + 438 ┊ 0.01% ┊ ⤷ leptos_meta::stylesheet::StylesheetPropsBuilder<((),__id,__attrs)>::href::h63466c0388287c6f + 345 ┊ 0.01% ┊ ⤷ leptos_meta::stylesheet::StylesheetPropsBuilder<(__href,(),__attrs)>::id::h3172a5b0850f8ddf + 239 ┊ 0.00% ┊ ⤷ leptos_meta::provide_meta_context::hbfee8dd1f0b86b73 + 96 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_none::hcc5c6084db0a0f97 + 218 ┊ 0.00% ┊ ⤷ leptos_meta::title::TitlePropsBuilder<(__formatter,())>::text::h9dc3acf5c022f5b5 + 135 ┊ 0.00% ┊ ⤷ routing::components::RouterPropsBuilder<Chil,(__base,(),__id)>::children::h7559ad4f28eb7e8f + 107 ┊ 0.00% ┊ ⤷ <leptos::children::TypedChildren<C> as leptos::children::ToChildren<F>>::to_children::h915d9a1fa5c09859 + 80 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::hc828ce91d1bae381 + 29 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::h9ef1b0fd50291ec9 + 21 ┊ 0.00% ┊ ⤷ <routing::components::RouterProps<Chil> as leptos::component::Props>::builder::h4d358397a01005e1 + 13 ┊ 0.00% ┊ ⤷ routing::components::RouterProps<Chil>::builder::h9d8ec0d92f7ee9e6 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h8fb2030fce2b1a17 + 75 ┊ 0.00% ┊ ⤷ leptos::component::component_props_builder::h243125f0928930b1 + 24 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::h96212029c5533af9 + 16 ┊ 0.00% ┊ ⤷ <leptos_meta::stylesheet::StylesheetProps as leptos::component::Props>::builder::h91052de1c4a34e19 + 8 ┊ 0.00% ┊ ⤷ leptos_meta::stylesheet::StylesheetProps::builder::h0ba3c75c8ac45c94 + 8862 ┊ 0.18% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::hb27b065ce2af086d + 8773 ┊ 0.18% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<Rndr> for (A,B,C)>::hydrate::h2df45ea6c538e45f + 5960 ┊ 0.12% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::ha97d455090a09312 + 5851 ┊ 0.12% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h5317bdc4e19b729d + 5287 ┊ 0.11% ┊ ⤷ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for (A,)>::hydrate::h21008efb9e492cd0 + 5140 ┊ 0.10% ┊ ⤷ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::h77872894d17ccb4a + 4730 ┊ 0.10% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::h4aef7a2fcfe8544f + 4624 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h1f6d8dfa3d1228e4 + 2455 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::ha899a3853ed3c2ec + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hd2e1aa62a2af38d2 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4f1848a3bd24daf4 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hcc962c9521a5737d + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hf99554621bb34ea2 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h90e94ad219630bd1 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h3b557ff0e1a85845 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>,reactive_graph::effect::render_effect::RenderEffect<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>::new_with_value<tachys::reactive_graph::<impl tachys::view::RenderHtml<tachys::renderer::dom::Dom> for routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}}>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::ha8a5ff29bbaf1eb6 + 424 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h1d69ccca9ff5a898 + 252 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hb7ccbb2c3baab45e + 117 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::h3b690a278dab8f2d + 395 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::haebe4a2b46c2981d + 349 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h8f1991c533e8599b + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::he159cc241317cde2 + 212 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::hede0a9223f28369d + 198 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h0e4798f3bd151f79 + 106 ┊ 0.00% ┊ ⤷ <tachys::reactive_graph::RenderEffectState<T> as core::convert::From<reactive_graph::effect::render_effect::RenderEffect<T>>>::from::he5b8c0222b262eb7 + 1992 ┊ 0.04% ┊ ⤷ <leptos_meta::RegisteredMetaTag<E,At,Ch> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::he6d5543b16837dfe + 1195 ┊ 0.02% ┊ ⤷ <tachys::html::element::HtmlElement<E,At,Ch,Rndr> as tachys::view::RenderHtml<Rndr>>::hydrate::h38ec4e5b95143f7d + 441 ┊ 0.01% ┊ ⤷ <(A,B) as tachys::html::attribute::Attribute<Rndr>>::hydrate::hda5c64be6182c6a5 + 102 ┊ 0.00% ┊ ⤷ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::ha67e7de5ff7211c7 + 174 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h7d94a963c5b0c877 + 510 ┊ 0.01% ┊ ⤷ <tachys::view::PositionState as core::default::Default>::default::h468d8931186b04d9 + 448 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T> as core::default::Default>::default::h4a28d59b979c1547 + 61 ┊ 0.00% ┊ ⤷ <lock_api::rwlock::RwLock<R,T> as core::default::Default>::default::h8defffd01d6e56c3 + 42 ┊ 0.00% ┊ ⤷ <tachys::view::Position as core::default::Default>::default::h6fc30c853b7d937f + 249 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::hf5f854bd2dc3adc6 + 114 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h91e1dd48166287dc + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl core::convert::From<web_sys::features::gen_HtmlElement::HtmlElement> for wasm_bindgen::JsValue>::from::hc1a70a5dbb458834 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Element::Element>::unchecked_from_js::h3310180ace2fb2a6 + 22 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::hd9ae1485a19d9f22 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hae0208066b9c9b63 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h0d3d97af2af84b7a + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0e37320fda77b866 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::he9735b6a4bbf4519 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hf785b8aaed816c0c + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h1b65d9cb39f9bc2b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(leptos_meta::RegisteredMetaTagState<tachys::html::element::elements::Link,(tachys::html::attribute::Attr<tachys::html::attribute::key::Rel,&str,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>),()>,leptos_meta::title::TitleViewState,tachys::html::element::ElementState<(),tachys::reactive_graph::RenderEffectState<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>,tachys::renderer::dom::Dom>),leptos::mount::hydrate_from<ssr_modes_axum::app::App,(leptos_meta::RegisteredMetaTag<tachys::html::element::elements::Link,(tachys::html::attribute::Attr<tachys::html::attribute::key::Rel,&str,tachys::renderer::dom::Dom>,tachys::html::attribute::Attr<tachys::html::attribute::key::Href,alloc::string::String,tachys::renderer::dom::Dom>),()>,leptos_meta::title::TitleView,leptos::into_view::View<tachys::html::element::HtmlElement<tachys::html::element::elements::Main,(),(routing::components::__Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),ssr_modes_axum::app::__App::{{closure}},leptos::into_view::View<&str>>::{{closure}},),tachys::renderer::dom::Dom>>)>::{{closure}}>::{{closure}}>::h7d4724b526855598 + 7530 ┊ 0.15% ┊ ⤷ any_spawner::Executor::init_wasm_bindgen::hdf2bdb8ceaca1d5e + 3167 ┊ 0.06% ┊ ⤷ std::sync::once_lock::OnceLock<T>::set::h067bda6ebf3717fa + 2842 ┊ 0.06% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_try_init::h5a4ac7b9da0ad424 + 2492 ┊ 0.05% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::hcd78c53199d5215c + 2360 ┊ 0.05% ┊ ⤷ std::sync::once::Once::call_once_force::h64f8c6eee1974a30 + 1961 ┊ 0.04% ┊ ⤷ std::sys::wasm::once::Once::call::h3c3a407508c17e85 + 910 ┊ 0.02% ┊ ⤷ std::sync::once::Once::call_once_force::{{closure}}::hd1ce35d0ddceccdf + 548 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::{{closure}}::hf9399808ef395e93 + 248 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}::h38b52db03db3f6c8 + 177 ┊ 0.00% ┊ ⤷ std::sync::once_lock::OnceLock<T>::try_insert::{{closure}}::h7c3edfc9487bb290 + 3167 ┊ 0.06% ┊ ⤷ std::sync::once_lock::OnceLock<T>::set::h9900608610a0a306 + 2842 ┊ 0.06% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_try_init::haaac6add226984d0 + 2492 ┊ 0.05% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::hef17262c32d9030b + 2360 ┊ 0.05% ┊ ⤷ std::sync::once::Once::call_once_force::hb22e97acc242f2dd + 1961 ┊ 0.04% ┊ ⤷ std::sys::wasm::once::Once::call::h22a9f31a6424ba59 + 910 ┊ 0.02% ┊ ⤷ std::sync::once::Once::call_once_force::{{closure}}::h0eef201b3735fc39 + 548 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::{{closure}}::h5cb36e6173a52c4f + 248 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}::h67a6bd3353343b5d + 177 ┊ 0.00% ┊ ⤷ std::sync::once_lock::OnceLock<T>::try_insert::{{closure}}::hb5f552a5f268ff04 + 237 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::map_err::h028dc9231e7be88b + 29 ┊ 0.00% ┊ ⤷ any_spawner::Executor::init_wasm_bindgen::{{closure}}::he3934a3ab784a45a + 237 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::map_err::h7856cfcbcffc9960 + 29 ┊ 0.00% ┊ ⤷ any_spawner::Executor::init_wasm_bindgen::{{closure}}::h2b38ffe78f69e11e + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::hbb09ba215bfcd1e7 + 105 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h4ad36c295c6f5de2 + 53 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h0a564c307dbc1ca7 + 983 ┊ 0.02% ┊ ⤷ hydration_context::hydrate::HydrateSharedContext::new::h47240282c28fe6ed + 554 ┊ 0.01% ┊ ⤷ once_cell::sync::Lazy<T,F>::new::h9a224f246626ab65 + 339 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::new::hd0e3208e1806b7e0 + 241 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::new::he02e27b38e3ec424 + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::h7c1bbb732024e312 + 74 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::new::h7f0f8c663194638f + 59 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::new::h1ace5550fae999b4 + 593 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h6a3cc5b89be3e71d + 472 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::new_root::hcb35de1f70fdafa5 + 763 ┊ 0.02% ┊ ⤷ tachys::dom::body::h658019e797cf570b + 532 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Document::Document::body::h188eb0d6b6319f2b + 359 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::h9e4663277c86b8af + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_HtmlElement::HtmlElement>::from_abi::heffde88912974a89 + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_HtmlElement::HtmlElement>::is_none::h4a1e69fa9a258a09 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_body_edb1908d3ceff3a1 + 106 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hb709ab4cbd8d1e79 + 15 ┊ 0.00% ┊ ⤷ leptos::mount::UnmountHandle<M,R>::forget::h860f0632a58063f5 + 5 ┊ 0.00% ┊ ⤷ core::mem::forget::hb9a729cb59604dd8 + 1931 ┊ 0.04% ┊ ⤷ console_error_panic_hook::set_once::h18d2df3440f8568b + 1903 ┊ 0.04% ┊ ⤷ std::sync::once::Once::call_once::h748b688df704cfa5 + 1629 ┊ 0.03% ┊ ⤷ std::sys::wasm::once::Once::call::hf761fb92887a3a20 + 578 ┊ 0.01% ┊ ⤷ std::sync::once::Once::call_once::{{closure}}::h0eb91437ed50fcc6 + 391 ┊ 0.01% ┊ ⤷ console_error_panic_hook::set_once::{{closure}}::hd7b1d20d01da588c + 319 ┊ 0.01% ┊ ⤷ std::panicking::set_hook::h187b86773eee4d0d + 166820 ┊ 3.40% ┊ tachys::reactive_graph::<impl tachys::view::RenderHtml<R> for F>::hydrate::{{closure}}::h5070a03e492f6d38 + 38826 ┊ 0.79% ┊ ⤷ <routing::nested_router::NestedRoutesView<Defs,Fal,R> as tachys::view::Render<R>>::rebuild::h00b483c492c17c77 + 31198 ┊ 0.64% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::h7b32684d20ad4331 + 5498 ┊ 0.11% ┊ ⤷ <T as reactive_graph::traits::Read>::read::hdb11f6701bb96274 + 3314 ┊ 0.07% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::hb721ab7435024557 + 2770 ┊ 0.06% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::hd55d455709367512 + 2169 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::haf2a63a3bb333731 + 1286 ┊ 0.03% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::hebe050904d286552 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h0e24732734e3dedf + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::hf390c55fccb145c6 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h2d6ffe44e37ae9cf + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h02eab3ebccb25599 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h934c210df3dc8335 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::hb62619e8cdbf6634 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hd09d6b719d0794bc + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h163e4598ec4849fb + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::hc50c8360f352c69e + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<alloc::string::String>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<alloc::string::String>>>>::hcb28b28e2e17a4b6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<alloc::string::String>>>::h70846f24d0f0f0f6 + 513 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h425862c2a3f95dea + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfd42a200e07c4951 + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::heb026ca4927078b9 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h933c033f31f2f8df + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::h6c8a98cbc2a8b7aa + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h8611493625816e40 + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::he1e66ed2f2c2916b + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hc78411fa17d08260 + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h7ac000e904011fe9 + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hd4dc5936920ebf1d + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h7d0f0b79ecdc74e8 + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::h26c5b497da768e58 + 4958 ┊ 0.10% ┊ ⤷ reactive_graph::traits::Set::set::haf034a16c44f5113 + 4851 ┊ 0.10% ┊ ⤷ reactive_graph::traits::Update::update::h9ae2e46c99f55840 + 4795 ┊ 0.10% ┊ ⤷ reactive_graph::traits::Update::try_update::h1a625c32b48f9cf0 + 4673 ┊ 0.10% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::hbafe7db267f443e8 + 3473 ┊ 0.07% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::h7992f5d933a5d6a2 + 1673 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write_untracked::hfce4fc0965be3d5e + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hfcc26bfc8cc9433b + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h2dac397a4d63b793 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h4231f875605bc348 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h8e413fa4074ce0d8 + 554 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hb18018e3151548bb + 225 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h3b3dc1ac22138dcb + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::convert::From<std::sync::rwlock::RwLockWriteGuard<T>>>::from::h636669ededf21b29 + 336 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h0fa47dd6bd475390 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<std::sync::rwlock::RwLockWriteGuard<routing::params::ParamsMap>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<routing::params::ParamsMap>>>>::h687bebd4363c10a8 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<routing::params::ParamsMap>>>::h61122b18034798e3 + 437 ┊ 0.01% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::hac07070f1ef52d90 + 262 ┊ 0.01% ┊ ⤷ reactive_graph::traits::Set::set::{{closure}}::h6b241d51a6b2a023 + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hb635f8a98aecfc62 + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<routing::params::ParamsMap>>::h9cc4f14650552caf + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h8657c1f213c1200d + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hb13db8c3c690ab07 + 124 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h80dff7b941740eb6 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::ha7039bf8dd25b9cc + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<reactive_graph::signal::arc_rw::ArcRwSignal<routing::params::ParamsMap> as reactive_graph::traits::Update>::try_update<(),<reactive_graph::signal::arc_rw::ArcRwSignal<routing::params::ParamsMap> as reactive_graph::traits::Set>::set<routing::params::ParamsMap>::{{closure}}>::{{closure}}>::he704f834bac2733d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<<reactive_graph::signal::arc_rw::ArcRwSignal<routing::params::ParamsMap> as reactive_graph::traits::Set>::set<routing::params::ParamsMap>::{{closure}}>::ha7db6f2220e6b079 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::UntrackedWriteGuard<routing::params::ParamsMap>>::haee1228f305349e0 + 921 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Trigger>::trigger::ha20765e664a670ef + 868 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_dirty::h4035bcf79f3d5a1f + 815 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_subscribers_check::he9e8905e1730d522 + 4624 ┊ 0.09% ┊ ⤷ reactive_graph::traits::Set::set::h90dc8802687886f1 + 4525 ┊ 0.09% ┊ ⤷ reactive_graph::traits::Update::update::hdfdf452c8e1cf51d + 4453 ┊ 0.09% ┊ ⤷ reactive_graph::traits::Update::try_update::hedd73225c8a8c7d3 + 4339 ┊ 0.09% ┊ ⤷ <T as reactive_graph::traits::Update>::try_maybe_update::he0966005238efce3 + 3123 ┊ 0.06% ┊ ⤷ <T as reactive_graph::traits::UpdateUntracked>::try_update_untracked::h568d1d17c5ca974f + 1673 ┊ 0.03% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Writeable>::try_write_untracked::h381df6d0eca96c75 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h6bbd92b676eb31cd + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h7c333a7e4e422e3e + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h00c4b23e0f30675e + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h5b342ac350f241b5 + 554 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h4e2219413dbc10b2 + 225 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h198efdf65fa4358c + 89 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::convert::From<std::sync::rwlock::RwLockWriteGuard<T>>>::from::h52e40eb947eb7dcb + 336 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::ha38fcc4f8eeb0cab + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<std::sync::rwlock::RwLockWriteGuard<alloc::string::String>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<alloc::string::String>>>>::h17cebdbdd327ad97 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<alloc::string::String>>>::hb09cf20f3a049b4b + 398 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<alloc::string::String>>::he6b674d95539da0f + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::he9a9f755cf987857 + 267 ┊ 0.01% ┊ ⤷ reactive_graph::traits::Update::try_update::{{closure}}::hcda136588c90a793 + 151 ┊ 0.00% ┊ ⤷ reactive_graph::traits::Set::set::{{closure}}::ha0b8cbb4fcb17bad + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::hb2fc2b64ebbb3794 + 124 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::UntrackedWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h92581814526694f9 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h2067792bea6a3d36 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::UntrackedWriteGuard<alloc::string::String>>::h537185574037b437 + 921 ┊ 0.02% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::Trigger>::trigger::h81ec614b2c992196 + 868 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_dirty::h43d7d251557903f7 + 815 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for T>::mark_subscribers_check::h8568f64a2df60da0 + 3258 ┊ 0.07% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::rebuild_nested_route::h9e589d75df1c89a8 + 2992 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::Extend<T>>::extend::h242994e82fa61260 + 2195 ┊ 0.04% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,alloc::vec::into_iter::IntoIter<T>>>::spec_extend::ha95d7b43745ff543 + 937 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h44d9dd5a99a93eee + 341 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h89ab740339396835 + 646 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>>>::h5246db8160ede6be + 593 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::hae8affc061f590c8 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>,alloc::alloc::Global>>::h5957bf8d6741f949 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::heb042ef23944ffc6 + 186 ┊ 0.00% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::he5ca408b5ab1706e + 291 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::reserve::h815a620d6dc1231d + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h87a66162a4777918 + 705 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h68a4f443e4b412e8 + 2816 ┊ 0.06% ┊ ⤷ <T as reactive_graph::traits::Read>::read::hd7cc57d715a6a19e + 2120 ┊ 0.04% ┊ ⤷ <T as reactive_graph::traits::Track>::track::h15d5a4de12dc7728 + 988 ┊ 0.02% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::h85e862950ff6e5bb + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::ha2afad61bf6b7b9a + 136 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::hd67c3a27c21495a1 + 393 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h4430748c2d1e1927 + 140 ┊ 0.00% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::h7c2b7ccbc9616879 + 631 ┊ 0.01% ┊ ⤷ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::Source for T>::add_subscriber::h3d02783d91b45c8e + 632 ┊ 0.01% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::hfdb1152fdd3fd5f1 + 401 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::hf25130e17e92962e + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::h38ca60f6b76079f1 + 88 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::h238f6cbec2946cca + 571 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<alloc::string::String>>::h467329443339714c + 262 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<alloc::string::String>>>::h31875e9f301bfd9f + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<alloc::string::String>>::hfd52522f24749568 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h2a5163543aa3c9d2 + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h1777b85b10319712 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h346132421d4d97c8 + 497 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::hf06cc8e02f90b273 + 440 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::he12cb5da1e07d034 + 383 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h1aad1b415752cf0c + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h7d3dbdd8517f7a6e + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hc60ab5ee0b9d725f + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h2cf5c6da9e163030 + 470 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::ne::ha2aa65d55d09a725 + 370 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq<str>>::ne::hb8a83bd6f219e80f + 269 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::hed7813f69fcdf62d + 224 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_mut::h863274b554644c33 + 149 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_mut::h9ac7210b026b8ad1 + 209 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::hd5eca39b5a70325e + 121 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::cmp::PartialEq<T>>::eq::h831ea14f7e5f70fe + 184 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::h85d2c2df5d77d81b + 96 ┊ 0.00% ┊ ⤷ <routing::matching::RouteMatchId as core::cmp::PartialEq>::eq::h2e1c83b68706d7af + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::h70caf2f5c024ae18 + 141 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_trigger::ArcTrigger as reactive_graph::traits::Trigger>::trigger::head33950e696b924 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h807892a55084cad8 + 123 ┊ 0.00% ┊ ⤷ core::mem::replace::h6c3f0a7ab47aa533 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<alloc::string::String,reactive_graph::signal::guards::Plain<alloc::string::String>>>::hdb8b30d024f9b089 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<alloc::string::String>>::hb854ce3f6d3b081e + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h78f4f575b639544f + 3675 ┊ 0.07% ┊ ⤷ tachys::view::either::<impl tachys::view::Render<Rndr> for either_of::Either<A,B>>::rebuild::h0959778c0c846b5d + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h907959008b11d3f7 + 432 ┊ 0.01% ┊ ⤷ tachys::renderer::Renderer::try_mount_before::h9deb8c05af95f753 + 124 ┊ 0.00% ┊ ⤷ <tachys::view::strings::StrState<R> as tachys::view::Mountable<R>>::unmount::h51056d15e9746ede + 60 ┊ 0.00% ┊ ⤷ tachys::renderer::dom::<impl tachys::view::Mountable<tachys::renderer::dom::Dom> for web_sys::features::gen_Text::Text>::unmount::h70a5a068bd2b7e64 + 71 ┊ 0.00% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::hd1c1baa769138025 + 64 ┊ 0.00% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::Render<tachys::renderer::dom::Dom>>::build::h81a896f8c035413c + 2609 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::hbb184a66777709b4 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h671b7487c6e128ea + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h8c4077f879535299 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h40f49de7d86324a3 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hb1150b3d34d2dc80 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2dd04e01de3a8fb8 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hb61574fbeb6ba174 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(),<routing::nested_router::NestedRoutesView<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),leptos::into_view::View<&str>,tachys::renderer::dom::Dom> as tachys::view::Render<tachys::renderer::dom::Dom>>::rebuild::{{closure}}>::{{closure}}>::h0ed46c42b9b2cd03 + 551 ┊ 0.01% ┊ ⤷ <routing::nested_router::NestedRoutesView<Defs,Fal,R> as tachys::view::Render<R>>::rebuild::{{closure}}::hc516bb265d47bafe + 186 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::clear::hd6316bdfa6a32330 + 31652 ┊ 0.64% ┊ ⤷ std::sync::mpsc::Sender<T>::send::h0803479971002916 + 31540 ┊ 0.64% ┊ ⤷ std::sync::mpmc::Sender<T>::send::h08790fee9228f26e + 8253 ┊ 0.17% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::send::h9e5e64b5870bc154 + 6453 ┊ 0.13% ┊ ⤷ std::sync::mpmc::context::Context::with::h3f8bd8f61f7f1980 + 2573 ┊ 0.05% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::send::{{closure}}::hf6918efc6d45d334 + 2390 ┊ 0.05% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::ha04f8f0f6444310d + 1997 ┊ 0.04% ┊ ⤷ std::sync::mpmc::context::Context::with::{{closure}}::hb4ace32ac31322c3 + 769 ┊ 0.02% ┊ ⤷ std::sync::mpmc::context::Context::with::{{closure}}::hbc783bcea448a7e4 + 201 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::mpmc::zero::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>::send::{{closure}}>>::haa0cc2fde3b2dd0f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::zero::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>::send::{{closure}}>::h5a5658e897c342fa + 310 ┊ 0.01% ┊ ⤷ std::sync::mpmc::zero::Channel<T>::write::hcd5e53a8eaa4ac6a + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(),alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::hd260b2546e0b7f88 + 7508 ┊ 0.15% ┊ ⤷ std::sync::mpmc::array::Channel<T>::send::hf39333af18a43853 + 4514 ┊ 0.09% ┊ ⤷ std::sync::mpmc::context::Context::with::h020d1e831186828b + 2434 ┊ 0.05% ┊ ⤷ std::sync::mpmc::array::Channel<T>::send::{{closure}}::h235c4d18ea64dd2d + 729 ┊ 0.01% ┊ ⤷ std::sync::mpmc::waker::SyncWaker::register::hde110589f2e0a0e5 + 623 ┊ 0.01% ┊ ⤷ std::sync::mpmc::waker::SyncWaker::unregister::hd9534ff900ec82bb + 277 ┊ 0.01% ┊ ⤷ std::sync::mpmc::array::Channel<T>::is_full::hd46afcc2a3645e85 + 189 ┊ 0.00% ┊ ⤷ std::sync::mpmc::array::Channel<T>::is_disconnected::h864f9f21c2b2a750 + 1392 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h1ce19cd80b1e04ca + 1046 ┊ 0.02% ┊ ⤷ std::sync::mpmc::context::Context::with::{{closure}}::h462b9cea2d55f02f + 438 ┊ 0.01% ┊ ⤷ std::sync::mpmc::context::Context::with::{{closure}}::hd3550cf00fc9ad59 + 1611 ┊ 0.03% ┊ ⤷ std::sync::mpmc::array::Channel<T>::start_send::h296ec792fa205eb3 + 351 ┊ 0.01% ┊ ⤷ std::sync::mpmc::array::Channel<T>::write::hd5cb4847a2bb6093 + 6833 ┊ 0.14% ┊ ⤷ std::sync::mpmc::list::Channel<T>::send::hd58062b8de834727 + 5994 ┊ 0.12% ┊ ⤷ std::sync::mpmc::list::Channel<T>::start_send::h811627f2bad89b94 + 1907 ┊ 0.04% ┊ ⤷ core::sync::atomic::atomic_compare_exchange::hce965ceb03a2e482 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::boxed::Box<std::sync::mpmc::list::Block<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::h9e69551ad4727cae + 489 ┊ 0.01% ┊ ⤷ std::sync::mpmc::list::Channel<T>::write::h1348ad584b0a9a19 + 2162 ┊ 0.04% ┊ ⤷ std::sync::mpmc::waker::Waker::unregister::h42f1d94623488b91 + 1427 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h770bf7b9a860bd16 + 621 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::try_fold::enumerate::{{closure}}::hbaf4001f79f937ab + 352 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::find::check::{{closure}}::h081b61506a7cb434 + 124 ┊ 0.00% ┊ ⤷ std::sync::mpmc::waker::Waker::unregister::{{closure}}::hf5203164c0fcaa87 + 182 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h4ab52203a898c45f + 106 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::h7ecab3adc9cb2d66 + 61 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h3ac2e37c6838e827 + 2052 ┊ 0.04% ┊ ⤷ std::sync::mpmc::context::Context::wait_until::he48ff6514eaf0e91 + 355 ┊ 0.01% ┊ ⤷ <std::sync::mpmc::select::Selected as core::cmp::PartialEq>::eq::hf6b1bdeffb0fba75 + 234 ┊ 0.00% ┊ ⤷ <std::time::Instant as core::ops::arith::Sub>::sub::h79d1265fdc693cd9 + 8 ┊ 0.00% ┊ ⤷ type[45]: (i32, i64, i32, i64, i32) -> nil + 181 ┊ 0.00% ┊ ⤷ std::thread::park_timeout::h1c17133831bad20c + 1812 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::h56e6306aded8bfcf + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h1aaf2a53aeb6dea6 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h0bb444be49416323 + 670 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hb6fc85a7dea630ac + 302 ┊ 0.01% ┊ ⤷ std::sync::mpmc::Sender<T>::send::{{closure}}::hfbf45d4b978eb476 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::error::SendTimeoutError<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h14f39b5cfc8b580b + 635 ┊ 0.01% ┊ ⤷ <core::time::Duration as core::cmp::PartialOrd>::partial_cmp::h8a3e98638a63899f + 429 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hc1c8be13b2159e94 + 139 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hfe81405444bc7bb5 + 61 ┊ 0.00% ┊ ⤷ std::sync::mpmc::error::SendTimeoutError::Disconnected::hdc3916fc915dece9 + 392 ┊ 0.01% ┊ ⤷ std::sync::mpmc::context::Context::reset::h02eb0faa7f3b38ee + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hf5bbffa3869798a8 + 66 ┊ 0.00% ┊ ⤷ std::time::Instant::now::hfc894493361fc7e1 + 30726 ┊ 0.63% ┊ ⤷ routing::matching::Routes<Children,Rndr>::match_route::hc0d830af858fe4b6 + 26555 ┊ 0.54% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchNestedRoutes<Rndr> for (A,B,C)>::match_nested::habc9dcca821a22eb + 11977 ┊ 0.24% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,Rndr> as routing::matching::MatchNestedRoutes<Rndr>>::match_nested::h0a8e01b329c31187 + 5264 ┊ 0.11% ┊ ⤷ routing::matching::horizontal::tuples::<impl routing::matching::horizontal::PossibleRouteMatch for (A,B)>::test::h4eac325db4011612 + 2335 ┊ 0.05% ┊ ⤷ <routing::matching::horizontal::param_segments::ParamSegment as routing::matching::horizontal::PossibleRouteMatch>::test::h7b41cd5cc7f89d9c + 470 ┊ 0.01% ┊ ⤷ core::iter::sources::once::once::h1274a40e58af65ed + 170 ┊ 0.00% ┊ ⤷ routing::matching::PartialPathMatch<ParamsIter>::new::hab84ec17c850b701 + 482 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h406c4ad6487ef58e + 413 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::chain::h4dcf55db663a158d + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h65426e8b1533a204 + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h6f016b3daec86552 + 36 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h824dc1536114e094 + 5256 ┊ 0.11% ┊ ⤷ core::option::Option<T>::and_then::hc6a4b242f3d19edd + 4533 ┊ 0.09% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,Rndr> as routing::matching::MatchNestedRoutes<Rndr>>::match_nested::{{closure}}::h3e3b2feea63e9664 + 336 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::chain::h0b1764e04f42c008 + 119 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h6249379336dc33fa + 36 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h62a91423b541d76d + 883 ┊ 0.02% ┊ ⤷ core::option::Option<T>::unwrap_or::hbcf6cdaee62995c9 + 3449 ┊ 0.07% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,Rndr> as routing::matching::MatchNestedRoutes<Rndr>>::match_nested::h8e9e5606683d8e9f + 2548 ┊ 0.05% ┊ ⤷ core::option::Option<T>::and_then::haf2ea00a5bc34bf7 + 2249 ┊ 0.05% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,Rndr> as routing::matching::MatchNestedRoutes<Rndr>>::match_nested::{{closure}}::h07f791be684fca54 + 144 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::chain::h7e06c52be2ec4ef5 + 36 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h0667131e82e3c4f8 + 563 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or::h13d88a1ce59f3c03 + 2861 ┊ 0.06% ┊ ⤷ <routing::matching::horizontal::static_segment::StaticSegment as routing::matching::horizontal::PossibleRouteMatch>::test::h40722770d7c31117 + 587 ┊ 0.01% ┊ ⤷ core::iter::adapters::peekable::Peekable<I>::peek::hb31f8a0883c66a55 + 376 ┊ 0.01% ┊ ⤷ core::option::Option<T>::get_or_insert_with::h3ce4b8fa2b0dd840 + 64 ┊ 0.00% ┊ ⤷ core::iter::adapters::peekable::Peekable<I>::peek::{{closure}}::h56c99f0d7e861b2d + 410 ┊ 0.01% ┊ ⤷ core::bool::<impl bool>::then::hf6a22bfe18ae5428 + 129 ┊ 0.00% ┊ ⤷ <routing::matching::horizontal::static_segment::StaticSegment as routing::matching::horizontal::PossibleRouteMatch>::test::{{closure}}::hf9e3bfa3cbd83173 + 78 ┊ 0.00% ┊ ⤷ routing::matching::PartialPathMatch<ParamsIter>::new::h569bc30026308196 + 222 ┊ 0.00% ┊ ⤷ <core::iter::adapters::peekable::Peekable<I> as core::iter::traits::iterator::Iterator>::next::h67e257c4a44b9797 + 78 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::peekable::h278d79663b6af969 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hfbc17558a32a4196 + 408 ┊ 0.01% ┊ ⤷ core::str::<impl str>::split_at::hc753b9388f333335 + 236 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::option::Option<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>)>,&str)>::h9b58922fd92a87d8 + 183 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>)>>::h56d922541d2a02f9 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>)>::hfd34d80dcee46b5c + 236 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::option::Option<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>)>,&str)>::hbfcd8b2177cecb86 + 183 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>)>>::h86e4e5ec79e1a1ab + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(routing::matching::RouteMatchId,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>)>::h0f0b06c06417cd40 + 230 ┊ 0.00% ┊ ⤷ core::char::methods::<impl char>::len_utf8::h636e8d00924eb22f + 177 ┊ 0.00% ┊ ⤷ <core::str::iter::Chars as core::iter::traits::iterator::Iterator>::next::h5a9d06f1ec87640f + 171 ┊ 0.00% ┊ ⤷ core::str::<impl str>::chars::h7f58e703a409b00b + 140 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::ha43585cda271a942 + 136 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchNestedRoutes<Rndr> for ()>::match_nested::h4fa3e86180bfccc3 + 39 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h99b63ef067e3e0b0 + 647 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h24f3726cfb6fd0cd + 137 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>>>::h860bf38ca911a778 + 83 ┊ 0.00% ┊ ⤷ <alloc::borrow::Cow<T> as core::convert::AsRef<T>>::as_ref::h3649e7693edafe3e + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>>::h164bc53b0326c9d0 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>>::h9c475f2272ede0be + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h50bdc8e082fb0c02 + 8171 ┊ 0.17% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h1191a7a96dc4c6b6 + 8159 ┊ 0.17% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h8b93d5679488cc4f + 7794 ┊ 0.16% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h8de9ea68a4ae474c + 7782 ┊ 0.16% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h8a2ccf1c3fab6b3f + 7545 ┊ 0.15% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h3f0b8074408bec10 + 7533 ┊ 0.15% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::hf4e60666e7bcfc99 + 5391 ┊ 0.11% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h84ea6249ac51f8ca + 4308 ┊ 0.09% ┊ ⤷ <either_of::EitherOf3<A,B,C> as core::iter::traits::iterator::Iterator>::next::had150e66a90b2d8f + 2598 ┊ 0.05% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::hde7dfbc53cfabbe9 + 1806 ┊ 0.04% ┊ ⤷ core::iter::adapters::chain::and_then_or_clear::hfed565d88f73d4a7 + 1088 ┊ 0.02% ┊ ⤷ core::ops::function::FnOnce::call_once::h56e3ff7f6ff555bd + 1026 ┊ 0.02% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::hf1154966430c27dd + 929 ┊ 0.02% ┊ ⤷ core::option::Option<T>::or_else::h9f5efe674460c9be + 544 ┊ 0.01% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::{{closure}}::hda50f51fd7e49b74 + 246 ┊ 0.01% ┊ ⤷ <core::iter::sources::once::Once<T> as core::iter::traits::iterator::Iterator>::next::hcafb5b68638cf6ec + 695 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::h8455533572806e00 + 310 ┊ 0.01% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h59d84b7cdb9d6ac3 + 792 ┊ 0.02% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::hae4ddb1649647a7a + 695 ┊ 0.01% ┊ ⤷ core::option::Option<T>::or_else::h63a44eaeccf8ca48 + 310 ┊ 0.01% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::iter::traits::iterator::Iterator>::next::{{closure}}::h60dc21541c429244 + 635 ┊ 0.01% ┊ ⤷ core::iter::adapters::chain::and_then_or_clear::hdda12a4ac1de51eb + 62 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1b30c793cd2b3b0c + 128 ┊ 0.00% ┊ ⤷ <either_of::Either<A,B> as core::iter::traits::iterator::Iterator>::next::h5fc9f07f60742cc8 + 519 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::hed6225e124b29e64 + 377 ┊ 0.01% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::{{closure}}::h66e52abb9053b5d3 + 771 ┊ 0.02% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h502effa493b3ec51 + 716 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h8f32b431a36339ad + 168 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<either_of::EitherOf3<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>>,<routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(alloc::borrow::Cow<str>,alloc::string::String)>>::from_iter<either_of::EitherOf3<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>>>::{{closure}}>>::hf6189eac443b83a2 + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<either_of::EitherOf3<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>>>::he4446de9042e7fdf + 134 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h1342e178d3a5abe5 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h207d56cc6fbdba39 + 152 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hff006e8ee4bd6cf2 + 166 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h30f11a55c1479dd9 + 6570 ┊ 0.13% ┊ ⤷ <routing::nested_router::NestedRoutesView<Defs,Fal,R> as tachys::view::RenderHtml<R>>::hydrate::ha3ac2dbb9be46354 + 2539 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h1498b1a9b6999f7b + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h374f16e1d40d852e + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h833e75ca998805c6 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9a8adde9ac763917 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h45afc24d182e683e + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7be34ea74bb10d1c + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h426d76e06fb5ea72 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<either_of::Either<leptos::into_view::View<&str>,tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>>,<routing::nested_router::NestedRoutesView<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),leptos::into_view::View<&str>,tachys::renderer::dom::Dom> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::{{closure}}>::h624b18c7c6f123a2 + 488 ┊ 0.01% ┊ ⤷ <routing::nested_router::NestedRoutesView<Defs,Fal,R> as tachys::view::RenderHtml<R>>::hydrate::{{closure}}::h8bd80100f551a05d + 1302 ┊ 0.03% ┊ ⤷ tachys::view::either::<impl tachys::view::RenderHtml<Rndr> for either_of::Either<A,B>>::hydrate::hebda38276f219e67 + 82 ┊ 0.00% ┊ ⤷ <leptos::into_view::View<T> as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::h46c929026ad32f6a + 6403 ┊ 0.13% ┊ ⤷ routing::nested_router::Outlet::hb1353dee474a828e + 6357 ┊ 0.13% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h644b877bcfb33a5b + 6293 ┊ 0.13% ┊ ⤷ routing::nested_router::Outlet::{{closure}}::h124ff4d63f621a52 + 6247 ┊ 0.13% ┊ ⤷ routing::nested_router::__Outlet::h33c7c405aeb1f0f1 + 3505 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::ha2b29188dfb86484 + 3422 ┊ 0.07% ┊ ⤷ core::option::Option<T>::and_then::h6c6b7d6a627ae0d3 + 3158 ┊ 0.06% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::h339068afcc6ae9b4 + 3105 ┊ 0.06% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::hef6be30a46b6ac2d + 480 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hadee63b0d4ae5f34 + 414 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::ha73c11b322de9d98 + 257 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hed52bd7e0ed9a6ee + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h530c297c1d42e7eb + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h22a3a13eb35e8ea4 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h81a742c11423f0bf + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hcedfdd079d66350c + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h9943ed0c767a1538 + 164 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h278a6dd8d8bb81ec + 160 ┊ 0.00% ┊ ⤷ core::option::Option<&T>::cloned::hc1abdf6eb118bb59 + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>>>::h41c4dc86df8e3fa9 + 1096 ┊ 0.02% ┊ ⤷ std::sync::mutex::Mutex<T>::lock::h63095f0e36b00c20 + 558 ┊ 0.01% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::hcb0485b9a0c2c4ff + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h0decbb5e00c5cf92 + 96 ┊ 0.00% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::{{closure}}::h7264d19fe414bd43 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::mutex::MutexGuard<T>,std::sync::poison::PoisonError<std::sync::mutex::MutexGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h28ac54b6010a66f2 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h8be3ace6c1b58a44 + 183 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hfbb1201252e93769 + 142 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hc069702cd6dd2c5e + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h452081b831a1ff01 + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hfdaa08f6b0a9ba01 + 67 ┊ 0.00% ┊ ⤷ <std::sync::mutex::MutexGuard<T> as core::ops::deref::DerefMut>::deref_mut::h15987b2bd3e82a0c + 4813 ┊ 0.10% ┊ ⤷ <T as reactive_graph::traits::Read>::read::hf6723b5a8b3d3666 + 3291 ┊ 0.07% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::h62804e8420670e74 + 2792 ┊ 0.06% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::traits::ReadUntracked>::try_read_untracked::had0000ac33190b2c + 2046 ┊ 0.04% ┊ ⤷ reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<T>,U>::try_new::h6f52601a7168b467 + 1490 ┊ 0.03% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::h1179d0381ec610b3 + 607 ┊ 0.01% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::hff54f7d34dd134cf + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::hd91dfc769957f512 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::hd57051174eacfee4 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h1b2a84ee8d3085b1 + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::h447112cbc7578256 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h7fbfd73e6a1744a7 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<alloc::string::String>>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>>::hf2ca6347d06507f9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>::h93e1a0d25b6aa0e8 + 164 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h560ccbc657e82d69 + 32 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h0653471867c484cc + 537 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h5cb0347cc08bf79b + 177 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h8de8c2d28d0dee7a + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h43242df5071fe14e + 86 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::h08e8a1d9dbf05975 + 379 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or_else::he03fea87657a8f8f + 136 ┊ 0.00% ┊ ⤷ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::h0b33e8a18b22a238 + 1388 ┊ 0.03% ┊ ⤷ <T as reactive_graph::traits::Track>::track::hf8cdd53d95f51077 + 814 ┊ 0.02% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::ToAnySource>::to_any_source::hfaea2dcc8285a9e9 + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h21cc8ecf6bf1f9cf + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::h749e094732203ed1 + 73 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as reactive_graph::graph::source::Source>::add_subscriber::h531d1b80e759249d + 70 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hda131168854221b6 + 4668 ┊ 0.10% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::hd8d5f688f7b40186 + 2118 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::hda24c70e95056d81 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h38967a7c2b3c4839 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h87ad32b53f6626cd + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9a2743b015e89971 + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hc0bb15c157a2c18d + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h7a5e80f4e5bd7b16 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h93e7517b0f6c93d5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(),<either_of::EitherOf3<routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::HomePage>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>,routing::matching::nested::NestedMatch<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>,(),ssr_modes_axum::app::Post>> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}>::{{closure}}>::h4aac7d7f04ae1084 + 60 ┊ 0.00% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::h6f9765aae29aa537 + 4296 ┊ 0.09% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::hb45b9b99d42b63c7 + 2118 ┊ 0.04% ┊ ⤷ reactive_graph::owner::Owner::with::h4c10b0ac329c2b3e + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h54a2198550a8f03c + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h9fdcb20af67f6525 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hf98a54a0f1d7230e + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h421daac6fefb6535 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4b3430f3f5aef800 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h9991eddf746b91da + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<(),<either_of::EitherOf3<(),(),()> as routing::nested_router::AddNestedRoute<tachys::renderer::dom::Dom>>::build_nested_route::{{closure}}>::{{closure}}>::h27acd1ff72419128 + 60 ┊ 0.00% ┊ ⤷ <Match as routing::nested_router::AddNestedRoute<R>>::build_nested_route::{{closure}}::h264648bb77123737 + 3503 ┊ 0.07% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::hcd2faf4c5ec33aaa + 3448 ┊ 0.07% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h60770d6206b2669f + 3282 ┊ 0.07% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h20f441cc0798beb6 + 3227 ┊ 0.07% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::hbdda090e91916412 + 3134 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h60eca5e720ad77b7 + 3079 ┊ 0.06% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::hb609ddcd77bb5277 + 1238 ┊ 0.03% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h7b929582a128d389 + 519 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::hfee2bcfe966314ce + 377 ┊ 0.01% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::{{closure}}::h4617a8f5104c91ba + 155 ┊ 0.00% ┊ ⤷ <either_of::EitherOf3<A,B,C> as core::iter::traits::iterator::Iterator>::next::hab7f8d9acc0d3126 + 810 ┊ 0.02% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::h7b9ef9336e8acbea + 748 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h4e14f487f8d09263 + 134 ┊ 0.00% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h9e7223bf42893fd2 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h1261252c7d5892c3 + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hce497881f5b85581 + 45 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h8eba87901f9146c1 + 3399 ┊ 0.07% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchParams for either_of::EitherOf3<A,B,C>>::to_params::h25fc0c854be31b53 + 1894 ┊ 0.04% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::clone::Clone>::clone::hc8ca99da4afcef47 + 1288 ┊ 0.03% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::clone::Clone>::clone::h2185e8ec4ac778bc + 741 ┊ 0.02% ┊ ⤷ <core::iter::sources::once::Once<T> as core::clone::Clone>::clone::h59c2f864ad822b73 + 84 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::h78db3d79bd12dd68 + 363 ┊ 0.01% ┊ ⤷ <core::iter::adapters::chain::Chain<A,B> as core::clone::Clone>::clone::h75dfe2a3979970a7 + 167 ┊ 0.00% ┊ ⤷ <either_of::Either<A,B> as core::clone::Clone>::clone::h434082f78bb3108d + 119 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h19959ebbfd0e022f + 61 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::ha18f3af1ebc4c266 + 29 ┊ 0.00% ┊ ⤷ <core::iter::sources::empty::Empty<T> as core::clone::Clone>::clone::h5a1ec40905675cbd + 2987 ┊ 0.06% ┊ ⤷ std::sync::mpsc::channel::h2ccd144890dd0970 + 2796 ┊ 0.06% ┊ ⤷ std::sync::mpmc::channel::h88bcaa94001161da + 2065 ┊ 0.04% ┊ ⤷ std::sync::mpmc::list::Channel<T>::new::h988201dd6b478f4b + 439 ┊ 0.01% ┊ ⤷ std::sync::mpmc::counter::new::hd5a3da9876cb701b + 2815 ┊ 0.06% ┊ ⤷ routing::components::__Routes::{{closure}}::h3b3529d391be8d11 + 1256 ┊ 0.03% ┊ ⤷ <routing::matching::Routes<Children,Rndr> as core::clone::Clone>::clone::h772a8b88ecae4a2b + 808 ┊ 0.02% ┊ ⤷ core::clone::Clone::clone::h47a4e828742e6756 + 303 ┊ 0.01% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,R> as core::clone::Clone>::clone::h35f8e7d571e5fe9d + 77 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::h33af085843c1ad2a + 237 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedRoute<Segments,Children,Data,ViewFn,R> as core::clone::Clone>::clone::h7c9cb5e02f5e779e + 57 ┊ 0.00% ┊ ⤷ <routing::matching::horizontal::static_segment::StaticSegment as core::clone::Clone>::clone::hd68b4dd062e20b45 + 155 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::clone::Clone>::clone::h280a5641c0dd2c1d + 393 ┊ 0.01% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as core::clone::Clone>::clone::hf6a51d4b3ea0ef6f + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h09af51a13364a02e + 174 ┊ 0.00% ┊ ⤷ ssr_modes_axum::app::__App::{{closure}}::h99607d106aed3955 + 78 ┊ 0.00% ┊ ⤷ <T as leptos::into_view::IntoView>::into_view::hce035fd2a855555b + 115 ┊ 0.00% ┊ ⤷ <reactive_graph::computed::arc_memo::ArcMemo<T> as core::clone::Clone>::clone::h9d5c1d7b5ad07ca5 + 2065 ┊ 0.04% ┊ ⤷ routing::nested_router::RouteContext<R>::provide_contexts::hed7f3798260a2ec6 + 935 ┊ 0.02% ┊ ⤷ reactive_graph::owner::context::provide_context::h8c1171d4b8dc8272 + 414 ┊ 0.01% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::provide_context::h244d962247a0a49f + 863 ┊ 0.02% ┊ ⤷ reactive_graph::owner::context::provide_context::h7f1880d28f880e53 + 371 ┊ 0.01% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::provide_context::h4b1d0a813d298724 + 112 ┊ 0.00% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::read_only::h7e88af4aeb6ad4ce + 1408 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h8344b0aa83d0d7a3 + 1296 ┊ 0.03% ┊ ⤷ <routing::nested_router::RouteContext<R> as core::clone::Clone>::clone::hdc8258c09e4105ec + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h0d7ada7183a9657b + 115 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_trigger::ArcTrigger as core::clone::Clone>::clone::he2ec289bfd6b490e + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::h37c3c46282edacee + 112 ┊ 0.00% ┊ ⤷ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::h5958ba26f08aeec5 + 38 ┊ 0.00% ┊ ⤷ <routing::matching::RouteMatchId as core::clone::Clone>::clone::hb0e7f987f9550851 + 1234 ┊ 0.03% ┊ ⤷ <std::sync::mpsc::Sender<T> as core::clone::Clone>::clone::hd550ac72e3f74680 + 1112 ┊ 0.02% ┊ ⤷ <std::sync::mpmc::Sender<T> as core::clone::Clone>::clone::h2426ba883f7fd1d4 + 273 ┊ 0.01% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::acquire::h191b8e1c008ed6cb + 273 ┊ 0.01% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::acquire::hbdce7466788c8ad4 + 268 ┊ 0.01% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::acquire::hc6175337f06998a2 + 1175 ┊ 0.02% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::into_view_and_child::h08a498efa257629f + 107 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::into_view_and_child::h4d0e0eca1d0bba7d + 91 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::into_view_and_child::h57adcec09236df95 + 1118 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_trigger::ArcTrigger::new::hb8fa80e46d9b6ddc + 985 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T> as core::default::Default>::default::h3ffc22f2f44e53e8 + 425 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLock<T> as core::default::Default>::default::h8110d1721bb0cbd9 + 120 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::sets::SubscriberSet as core::default::Default>::default::h7700615f3808e016 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::caller::h9f96419c0f5d578f + 968 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::h1d8e26bd36036159 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hd64befea4300de48 + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h0b64bf2f24f1880b + 968 ┊ 0.02% ┊ ⤷ reactive_graph::signal::arc_rw::ArcRwSignal<T>::new::h646d86d2ff4f6da6 + 518 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::hb043d02711b5a65e + 255 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::new::h94caf07664d38769 + 511 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::child::hb5fbce7ed6aefddb + 511 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::h234af7a3b3136026 + 454 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Mapped<Inner,U> as core::ops::deref::Deref>::deref::haf2072e8f88d5cae + 381 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::hee85ca8f7278c67e + 324 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::hf94099b660f45acc + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h5d9f1d071b95d56e + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h831a7469c2438dfe + 455 ┊ 0.01% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::as_matched::h944b4808af3acd37 + 83 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::as_matched::h6c088bee9ab8256e + 83 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::as_matched::ha223290ca7c087e6 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h6e233279b790519d + 405 ┊ 0.01% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::into_view_and_child::hcbf38cf59f79c5c0 + 78 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for ()>::into_view_and_child::h8357b672a16d8b01 + 394 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::h8700c71a1769f68d + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h6bda23d91959025b + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h7a6710ffc55abec6 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>::h312cd5709ea0e579 + 373 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::push::h8c994a2cfddc6051 + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hddbdb6f39000dff4 + 343 ┊ 0.01% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::as_matched::h96bef053277b4a3c + 54 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for ()>::as_matched::hb403d835fe9a3d21 + 331 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>>::ha747f77a5e67ed47 + 278 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>>::h8c82153e54569593 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>::h3c6b3b5653c82c15 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::IntoIter<(alloc::borrow::Cow<str>,alloc::string::String)>>::h3debc7c85a1d55fa + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Item<(alloc::borrow::Cow<str>,alloc::string::String)>>::hd487b6a63c6fb83e + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h565a21fe8c202474 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hcbed37a8ecb5ce99 + 261 ┊ 0.01% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::as_id::h5120744f15b289e6 + 38 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::as_id::h855c7ff961f53525 + 38 ┊ 0.00% ┊ ⤷ <routing::matching::nested::NestedMatch<ParamsIter,Child,ViewFn> as routing::matching::MatchInterface<Rndr>>::as_id::hf2ab2bbe1da91c4f + 253 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h9589916875ebe384 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hf0d19e18f272811e + 42 ┊ 0.00% ┊ ⤷ either_of::EitherOf3::A::h75405ef2e2d9461c + 253 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h9c39d5739c70e70b + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hba9b0665b5629c1e + 42 ┊ 0.00% ┊ ⤷ either_of::EitherOf3::C::h61acc01be7a64fde + 253 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hea2cfd7da2441578 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6aa746b25b114e00 + 42 ┊ 0.00% ┊ ⤷ either_of::EitherOf3::B::h28866c57517782cc + 234 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for either_of::EitherOf3<A,B,C>>::as_id::hc9172d683d58f650 + 49 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchInterface<Rndr> for ()>::as_id::h5044757081139ad8 + 222 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::clone::Clone>::clone::hf9a0fe774cdf222d + 200 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchParams for either_of::EitherOf3<A,B,C>>::to_params::ha9ed7d767eaa91a8 + 184 ┊ 0.00% ┊ ⤷ std::sync::mutex::Mutex<T>::new::hcfa3af066bab53ef + 161 ┊ 0.00% ┊ ⤷ routing::nested_router::OutletPropsBuilder<R,(__rndr,)>::build::h77529685c7ef1431 + 93 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::hf73a36c8e01db680 + 49 ┊ 0.00% ┊ ⤷ routing::nested_router::OutletPropsBuilder<R,(__rndr,)>::build::{{closure}}::h54bf55a7e0d5e444 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h6c23c27117c60fd8 + 21 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h88008d4a32bde3b6 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<alloc::string::String,reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<alloc::string::String>>,alloc::string::String>>>::hd36c667ff1df76c8 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Mapped<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<alloc::string::String>>,alloc::string::String>>::h1419008d510934fe + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::h752c06db91e56b14 + 152 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hc9556ae6dbf34313 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<(),std::sync::mpsc::SendError<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h63a04b99f3f73151 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpsc::SendError<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::he80d0871d9dfa5cd + 119 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>>>::hf8c3dd23b4b4718d + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::haaf03e714fd8fe73 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::chain::Chain<core::iter::adapters::chain::Chain<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::once::Once<(alloc::borrow::Cow<str>,alloc::string::String)>>,either_of::Either<core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>,core::iter::sources::empty::Empty<(alloc::borrow::Cow<str>,alloc::string::String)>>>>::h7eee177b59cb1cdd + 51 ┊ 0.00% ┊ ⤷ routing::matching::nested::tuples::<impl routing::matching::MatchParams for ()>::to_params::h8a07f74f701d9265 + 44 ┊ 0.00% ┊ ⤷ <core::iter::sources::empty::Empty<T> as core::iter::traits::iterator::Iterator>::next::hbd0bb39133823087 + 40 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::new::h9a591e9188a0d98a + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h96af45ddc3637203 + 29 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::h8717818f7b196bd8 + 29 ┊ 0.00% ┊ ⤷ core::clone::Clone::clone::hfcff164dc8e63a4e + 21 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h082b9519e69516fd + 13 ┊ 0.00% ┊ ⤷ routing::nested_router::OutletProps<R>::builder::h4543e762a1bcb2b7 + 5 ┊ 0.00% ┊ ⤷ <core::marker::PhantomData<T> as core::default::Default>::default::h8369551f0249e67b + 5 ┊ 0.00% ┊ ⤷ core::iter::sources::empty::empty::h5a346866215292cf + 31477 ┊ 0.64% ┊ tachys::view::PositionState::set::h2edc76024137b9bc + 13069 ┊ 0.27% ┊ ⤷ lock_api::rwlock::RwLock<R,T>::write::h0a1d4091de055b85 + 12962 ┊ 0.26% ┊ ⤷ <parking_lot::raw_rwlock::RawRwLock as lock_api::rwlock::RawRwLock>::lock_exclusive::hfb342af5cf8091e1 + 12582 ┊ 0.26% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_exclusive_slow::h9c19e999a51af06f + 7545 ┊ 0.15% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wait_for_readers::h6d1669c87c466ab8 + 3455 ┊ 0.07% ┊ ⤷ parking_lot_core::parking_lot::park::hc7ca9d5fa4f36f1c + 2497 ┊ 0.05% ┊ ⤷ parking_lot_core::parking_lot::park::{{closure}}::h8d93f911c219a696 + 282 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hab3fe79eff85847a + 199 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wait_for_readers::{{closure}}::h5fab1d8761a402f4 + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h326dfa5856c2cfb6 + 47 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wait_for_readers::{{closure}}::h48086c3d44fbcd2e + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h6fc1ac735785058f + 29 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wait_for_readers::{{closure}}::h9098d7b0679bd5d3 + 387 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2c6d7570e590aaa3 + 31 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::hd6e3fc9c795a5ff5 + 238 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::h468e898df9bee9a2 + 64 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::h4c8f66f1884a0398 + 2995 ┊ 0.06% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::h404ccf6c2e6a7ca9 + 2811 ┊ 0.06% ┊ ⤷ parking_lot_core::parking_lot::unpark_filter::h35e9ff9fcf339184 + 528 ┊ 0.01% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::{{closure}}::h1afd34613f975c89 + 324 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h399de87f4538684d + 133 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wait_for_readers::{{closure}}::h71213b333fc99346 + 267 ┊ 0.01% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::{{closure}}::h0209617d897adcdc + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_add::h333fb5eb5f9cb949 + 4788 ┊ 0.10% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::h31c21bd9f253111f + 3617 ┊ 0.07% ┊ ⤷ parking_lot_core::parking_lot::park::h0767ea8033e7001c + 2620 ┊ 0.05% ┊ ⤷ parking_lot_core::parking_lot::park::{{closure}}::haacaaedc1cd8e1e5 + 299 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h92a459f3c97f94d8 + 209 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::h72ff9781eefcc202 + 239 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h869c7cc53d1a4125 + 124 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::h64a5023e87e93819 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h8457933ecab832f8 + 29 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::h8ff19a09991c050e + 387 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h01c10ee74e2ee658 + 31 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::h4eb2a215cd1f229a + 238 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::hdc19a233053b3a48 + 64 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::h79402f9b4d2b877e + 298 ┊ 0.01% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_exclusive_slow::{{closure}}::ha26bfcf664fb173c + 10 ┊ 0.00% ┊ ⤷ type[43]: (i32, i64, i32, i32, i32, i32) -> i32 + 79 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::is_err::h24c41e032d675e0e + 45 ┊ 0.00% ┊ ⤷ lock_api::rwlock::RwLock<R,T>::make_write_guard_unchecked::h1da813cbed2108ee + 7386 ┊ 0.15% ┊ ⤷ smallvec::SmallVec<A>::push::h859d580c150a198e + 6923 ┊ 0.14% ┊ ⤷ smallvec::SmallVec<A>::reserve_one_unchecked::h8191fb77b052a223 + 5531 ┊ 0.11% ┊ ⤷ smallvec::SmallVec<A>::try_grow::h2ddb909f629368d5 + 1630 ┊ 0.03% ┊ ⤷ smallvec::layout_array::hf156e537ced814c6 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::habd88121ad96f438 + 61 ┊ 0.00% ┊ ⤷ smallvec::layout_array::{{closure}}::h35ba751989a767c6 + 281 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::from_size_align::h0730507a1cf6e04d + 225 ┊ 0.00% ┊ ⤷ core::num::<impl usize>::checked_mul::hb63a7e79d243ad52 + 199 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha60785b758ec0d21 + 168 ┊ 0.00% ┊ ⤷ core::option::Option<T>::ok_or::h7de9707d03df3480 + 103 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hc9ef37b8bb387670 + 484 ┊ 0.01% ┊ ⤷ smallvec::deallocate::h4f357dcdb5dac3b0 + 173 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::h63e7a2239b9bbec2 + 151 ┊ 0.00% ┊ ⤷ alloc::alloc::dealloc::h56c278fd83b0d916 + 236 ┊ 0.00% ┊ ⤷ alloc::alloc::alloc::h5280c946b9690763 + 199 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hb4c064f87bc03124 + 178 ┊ 0.00% ┊ ⤷ core::option::Option<T>::ok_or::h42c084e0e0965450 + 176 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h39d4cdb82080213e + 142 ┊ 0.00% ┊ ⤷ alloc::alloc::realloc::ha977b675c5fef6b1 + 120 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h758eb6e1497eb97f + 89 ┊ 0.00% ┊ ⤷ core::ptr::non_null::NonNull<T>::new::hfd56cd5f94f20069 + 61 ┊ 0.00% ┊ ⤷ smallvec::SmallVecData<A>::from_heap::h6a5e6c0d950269e4 + 52 ┊ 0.00% ┊ ⤷ core::ptr::non_null::NonNull<T>::cast::h28def42a45310fc4 + 38 ┊ 0.00% ┊ ⤷ core::alloc::layout::Layout::size::h5a08a3ed0339d819 + 665 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::hba5907d67938d9b9 + 429 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::hb0e49cafcc1e5e6a + 339 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::checked_next_power_of_two::h4b91c49fc3c2c446 + 216 ┊ 0.00% ┊ ⤷ smallvec::infallible::h9b5d1bf451458a81 + 68 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::capacity::h8cfa679de18ab624 + 65 ┊ 0.00% ┊ ⤷ core::ptr::write::he8791b1417d47c47 + 3776 ┊ 0.08% ┊ ⤷ core::ptr::drop_in_place<lock_api::rwlock::RwLockWriteGuard<parking_lot::raw_rwlock::RawRwLock,tachys::view::Position>>::hac8d740190ca10ae + 3723 ┊ 0.08% ┊ ⤷ <lock_api::rwlock::RwLockWriteGuard<R,T> as core::ops::drop::Drop>::drop::hee43154b4a42fd77 + 3663 ┊ 0.07% ┊ ⤷ <parking_lot::raw_rwlock::RawRwLock as lock_api::rwlock::RawRwLock>::unlock_exclusive::hde5f815e91bfdd53 + 3327 ┊ 0.07% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::unlock_exclusive_slow::hd89754a6b7746525 + 3199 ┊ 0.07% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::hfd5259da4d149895 + 3000 ┊ 0.06% ┊ ⤷ parking_lot_core::parking_lot::unpark_filter::h503a776a17b6d574 + 756 ┊ 0.02% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::{{closure}}::hdf3ee51acde00de3 + 579 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h82b48a38b6f22f4b + 381 ┊ 0.01% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::unlock_exclusive_slow::{{closure}}::h4f92eea37ea56922 + 267 ┊ 0.01% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::wake_parked_threads::{{closure}}::hccb1e2e675f89e54 + 126 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::compare_exchange::h7995e91d56295d2a + 2141 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<smallvec::IntoIter<[(*const parking_lot_core::parking_lot::ThreadData,core::option::Option<parking_lot_core::thread_parker::imp::UnparkHandle>); 8]>>::hfecc2582aa834221 + 1760 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<smallvec::SmallVec<[(*const parking_lot_core::parking_lot::ThreadData,core::option::Option<parking_lot_core::thread_parker::imp::UnparkHandle>); 8]>>::h0c04bf7957566a4a + 1707 ┊ 0.03% ┊ ⤷ <smallvec::SmallVec<A> as core::ops::drop::Drop>::drop::h349309226d887a11 + 987 ┊ 0.02% ┊ ⤷ core::mem::drop::h0550fbbb698023f9 + 977 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(*const parking_lot_core::parking_lot::ThreadData,core::option::Option<parking_lot_core::thread_parker::imp::UnparkHandle>)>>::haf8e76cdd630c65e + 799 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(*const parking_lot_core::parking_lot::ThreadData,core::option::Option<parking_lot_core::thread_parker::imp::UnparkHandle>)>>::h19f44f545068d42b + 746 ┊ 0.02% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hc9f0f47ac4f7ec2f + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h9355c5337565383a + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::he9b00414b23ebedb + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h3dff5528ca5d9b4b + 286 ┊ 0.01% ┊ ⤷ <smallvec::SmallVec<A> as core::ops::index::IndexMut<I>>::index_mut::h00e60dc06b256974 + 155 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::IndexMut<I> for [T]>::index_mut::h4b765234dab3ebad + 50 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::slice::index::SliceIndex<[T]>>::index_mut::hc453ee004404e392 + 173 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::from_raw_parts::hb8a771527de51e60 + 323 ┊ 0.01% ┊ ⤷ <smallvec::IntoIter<A> as core::ops::drop::Drop>::drop::h238b2f7ad10ff1ff + 90 ┊ 0.00% ┊ ⤷ <&mut I as core::iter::traits::iterator::Iterator>::next::h843af2f78ba76275 + 31 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h626ab354de532030 + 1098 ┊ 0.02% ┊ ⤷ smallvec::SmallVec<A>::triple::he49370dce6ed9665 + 651 ┊ 0.01% ┊ ⤷ smallvec::SmallVecData<A>::inline::h9096aceb06384360 + 368 ┊ 0.01% ┊ ⤷ smallvec::ConstNonNull<T>::new::hbead33a435747fc2 + 304 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h0f07fc0ef44b0f0e + 109 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h50924c4e57302869 + 45 ┊ 0.00% ┊ ⤷ smallvec::ConstNonNull::h46ab801b0427b00d + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::h70952ad6511dd3af + 254 ┊ 0.01% ┊ ⤷ smallvec::SmallVecData<A>::heap::h2228e8afecf624f2 + 538 ┊ 0.01% ┊ ⤷ <core::slice::iter::IterMut<T> as core::iter::traits::iterator::Iterator>::next::h8b5039cee3f0d742 + 492 ┊ 0.01% ┊ ⤷ <smallvec::IntoIter<A> as core::iter::traits::iterator::Iterator>::next::h1bb69af83d7e69e3 + 113 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::as_ptr::h6fb6c950529e976e + 38 ┊ 0.00% ┊ ⤷ smallvec::ConstNonNull<T>::as_ptr::he12450f4a827ca13 + 57 ┊ 0.00% ┊ ⤷ core::ptr::read::hd7d5856387c701a7 + 310 ┊ 0.01% ┊ ⤷ smallvec::SmallVec<A>::new::h0d50f86b8abfc8cd + 283 ┊ 0.01% ┊ ⤷ smallvec::SmallVecData<A>::inline_mut::h0254912141c118e1 + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::he42bfa25a3bf439d + 270 ┊ 0.01% ┊ ⤷ smallvec::SmallVecData<A>::from_inline::hf9636489d5a391c7 + 270 ┊ 0.01% ┊ ⤷ <smallvec::SmallVec<A> as core::ops::deref::DerefMut>::deref_mut::h3417b84b636aa7e0 + 113 ┊ 0.00% ┊ ⤷ core::slice::raw::from_raw_parts_mut::h492da6ebf8c30a0f + 237 ┊ 0.00% ┊ ⤷ <smallvec::SmallVec<A> as core::iter::traits::collect::IntoIterator>::into_iter::h8fe2ecd193023433 + 98 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::set_len::hbece95708b8bbac1 + 233 ┊ 0.00% ┊ ⤷ smallvec::SmallVecData<A>::heap_mut::he32440b9adade86f + 198 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::triple_mut::h39732880c0dddadf + 180 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter_mut::hbe63b2937f0fb779 + 141 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as parking_lot_core::util::UncheckedOptionExt<T>>::unchecked_unwrap::hc43a94b08a912369 + 60 ┊ 0.00% ┊ ⤷ parking_lot_core::util::unreachable::had7838914639a76a + 119 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::inline_capacity::h7f9fe5191be068d0 + 89 ┊ 0.00% ┊ ⤷ core::ptr::non_null::NonNull<T>::new::h5d9126c48dc86f36 + 88 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::spilled::h4473d5105aa72368 + 71 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::set::h98eedbb468d6f391 + 68 ┊ 0.00% ┊ ⤷ smallvec::SmallVec<A>::len::h31cedfe859c6c4e4 + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::hf91081cda872fd22 + 56 ┊ 0.00% ┊ ⤷ <lock_api::rwlock::RwLockWriteGuard<R,T> as core::ops::deref::DerefMut>::deref_mut::h3d3c8a2931af9c35 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h3b6120934f6aebeb + 45 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::get::he15d4049e4cf677f + 45 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::get::hf6e8178d3eda10c6 + 22 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h77c5c422772893df + 13 ┊ 0.00% ┊ ⤷ <[T; 8] as smallvec::Array>::size::h7f2d51001423d9e6 + 5 ┊ 0.00% ┊ ⤷ core::hint::unreachable_unchecked::hc13147ab4adf0461 + 27138 ┊ 0.55% ┊ routing::location::history::search_params_from_web_url::h45a497fdae5ae70b + 23015 ┊ 0.47% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h018b12ecca7385b3 + 23003 ┊ 0.47% ┊ ⤷ <core::result::Result<V,E> as core::iter::traits::collect::FromIterator<core::result::Result<A,E>>>::from_iter::h15853ff35bbe9992 + 22831 ┊ 0.46% ┊ ⤷ core::iter::adapters::try_process::h797a4dd172b6ff60 + 22154 ┊ 0.45% ┊ ⤷ <core::result::Result<V,E> as core::iter::traits::collect::FromIterator<core::result::Result<A,E>>>::from_iter::{{closure}}::he75fe4eb5e8cd55a + 22099 ┊ 0.45% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::h07bf57f738aba9d5 + 21647 ┊ 0.44% ┊ ⤷ core::iter::traits::iterator::Iterator::collect::h5c5c1d5bcb649f88 + 21635 ┊ 0.44% ┊ ⤷ <alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter::h6e9dab3bae44384e + 21431 ┊ 0.44% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter::h56bd2fc9f96e4f21 + 21419 ┊ 0.44% ┊ ⤷ <alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter::ha324cced52f094a2 + 14148 ┊ 0.29% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::next::h8a559cc0ce5a05ae + 13065 ┊ 0.27% ┊ ⤷ <core::iter::adapters::GenericShunt<I,R> as core::iter::traits::iterator::Iterator>::next::hb2ce4dead0880cbc + 12380 ┊ 0.25% ┊ ⤷ <core::iter::adapters::GenericShunt<I,R> as core::iter::traits::iterator::Iterator>::try_fold::h352767f153b4d4e7 + 11907 ┊ 0.24% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::try_fold::h16a587fbe803c62c + 11793 ┊ 0.24% ┊ ⤷ <core::iter::adapters::flatten::Flatten<I> as core::iter::traits::iterator::Iterator>::try_fold::h8b475749d85079f2 + 11654 ┊ 0.24% ┊ ⤷ core::iter::adapters::flatten::FlattenCompat<I,U>::iter_try_fold::ha7c27b3c9b8b2437 + 7633 ┊ 0.16% ┊ ⤷ <core::iter::adapters::flatten::FlattenCompat<I,U> as core::iter::traits::iterator::Iterator>::try_fold::flatten::{{closure}}::h16590f6a7dbf16fe + 7569 ┊ 0.15% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::habb00cd14b0d1e66 + 5459 ┊ 0.11% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut::ha223f0d81fc9f8f3 + 5365 ┊ 0.11% ┊ ⤷ core::iter::adapters::map::map_try_fold::{{closure}}::hcbc231ffdaf58d2b + 2549 ┊ 0.05% ┊ ⤷ routing::location::history::search_params_from_web_url::{{closure}}::hb45cac86e959ff93 + 2478 ┊ 0.05% ┊ ⤷ core::result::Result<T,E>::and_then::h2099899a396bc7a6 + 2284 ┊ 0.05% ┊ ⤷ routing::location::history::search_params_from_web_url::{{closure}}::{{closure}}::hc6b5bbaa389dd98b + 500 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::hdec0183d3bdd293b + 186 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h7e738667330c658c + 80 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Array>::is_type_of::h45860fc79c6b70d8 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::h7e34edb43ec706f1 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h43803e4c88a32865 + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Array>::unchecked_from_js::h8c6134f8f69922cf + 469 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::hef0295315c98e140 + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::ha099876c42f802bd + 80 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::JsString>::is_type_of::h47f40d540cc0597d + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::hb14981856c4da3f1 + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::JsString>::unchecked_from_js::h80b4f4dbde2fef18 + 162 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h0c7e5deb52b4d434 + 162 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha99fcb49c534f574 + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h659a3333fc84f28a + 2542 ┊ 0.05% ┊ ⤷ <core::iter::adapters::GenericShunt<I,R> as core::iter::traits::iterator::Iterator>::try_fold::{{closure}}::h73f84e32ea2ef13a + 433 ┊ 0.01% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h3abce9d9250740a8 + 369 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::hdad95b1b48c469a7 + 227 ┊ 0.00% ┊ ⤷ core::ops::function::FnMut::call_mut::h79061d59f8a91fa8 + 87 ┊ 0.00% ┊ ⤷ core::ops::control_flow::ControlFlow::Break::hd0310b581ce1cc88 + 301 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h904a924a7ca1626b + 225 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::he5ff365985b0aaac + 154 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::result::Result<core::convert::Infallible,wasm_bindgen::JsValue>>>::h173a8b21a075186d + 75 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::convert::Infallible,wasm_bindgen::JsValue>>::h9c59f48034680e3a + 1525 ┊ 0.03% ┊ ⤷ <js_sys::IntoIter as core::iter::traits::iterator::Iterator>::next::h8b1c4dc43ce67731 + 1429 ┊ 0.03% ┊ ⤷ js_sys::IterState::next::h652ff902eda8ae2b + 579 ┊ 0.01% ┊ ⤷ js_sys::Iterator::next::h679c26be4459362f + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h0199f255dcfa7e20 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::IteratorNext>::from_abi::h14237048076c0ed8 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Iterator>::into_abi::h0a3bd113aaa28593 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_next_196c84450b364254 + 157 ┊ 0.00% ┊ ⤷ js_sys::IteratorNext::done::h6464f85bb14c1dde + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_done_298b57d23c0fc80c + 147 ┊ 0.00% ┊ ⤷ js_sys::IteratorNext::value::h749863b5f5032eaf + 35 ┊ 0.00% ┊ ⤷ import wbg::__wbg_value_d93c65011f51a456 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::IteratorNext>::into_abi::h456576fab83784df + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::IteratorNext>::h69fbcb0969cb0e11 + 1740 ┊ 0.04% ┊ ⤷ <core::iter::adapters::fuse::Fuse<I> as core::iter::adapters::fuse::FuseImpl<I>>::try_fold::haeda1fee6115a61f + 1229 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h84f8b009f66405fd + 464 ┊ 0.01% ┊ ⤷ core::iter::adapters::flatten::FlattenCompat<I,U>::iter_try_fold::flatten::{{closure}}::hc68907760e4cf01c + 247 ┊ 0.01% ┊ ⤷ core::option::Option<T>::insert::h137a8039bc4581b9 + 61 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8de043e62990828c + 124 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::next::h2940707d30a36a5d + 433 ┊ 0.01% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::h23abbc12083fc9fd + 225 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::h4ad9914fa7270a3f + 36 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h85eb7c757745b17e + 36 ┊ 0.00% ┊ ⤷ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::hedbabac870cec0b8 + 188 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::ops::control_flow::ControlFlow<(alloc::string::String,alloc::string::String)>>::hcb471d555321aa0a + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(alloc::string::String,alloc::string::String)>::h4cb0795f11b475d2 + 519 ┊ 0.01% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &mut F>::call_once::h0d43d6b9b2f83fac + 377 ┊ 0.01% ┊ ⤷ <routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter::{{closure}}::h7c59c14ea531484b + 4683 ┊ 0.10% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::ha2a89a757716fb52 + 4628 ┊ 0.09% ┊ ⤷ <core::iter::adapters::GenericShunt<I,R> as core::iter::traits::iterator::Iterator>::size_hint::h14614f070c3f94bc + 4368 ┊ 0.09% ┊ ⤷ <core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::size_hint::h420bd5761afbd4d9 + 4313 ┊ 0.09% ┊ ⤷ <core::iter::adapters::flatten::Flatten<I> as core::iter::traits::iterator::Iterator>::size_hint::hcfc34072203b1f53 + 4258 ┊ 0.09% ┊ ⤷ <core::iter::adapters::flatten::FlattenCompat<I,U> as core::iter::traits::iterator::Iterator>::size_hint::heef8c52a8ee6dd08 + 405 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or::h53f3e8d101286393 + 141 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hb5bc143c425bb5e7 + 79 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::size_hint::h133c356168e90c24 + 257 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::saturating_mul::h300f3332c9b42ccf + 241 ┊ 0.00% ┊ ⤷ <core::option::IntoIter<A> as core::iter::traits::iterator::Iterator>::size_hint::hb1f556bad68d5af3 + 61 ┊ 0.00% ┊ ⤷ <T as core::iter::adapters::flatten::ConstSizeIntoIterator>::size::hc827d7369af382ca + 771 ┊ 0.02% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend::he5aa2532dc165a72 + 716 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::extend_desugared::h8da24246aa36a7b3 + 599 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<core::iter::adapters::GenericShunt<core::iter::adapters::map::Map<core::iter::adapters::flatten::Flatten<core::option::IntoIter<js_sys::IntoIter>>,routing::location::history::search_params_from_web_url::{{closure}}>,core::result::Result<core::convert::Infallible,wasm_bindgen::JsValue>>,<routing::params::ParamsMap as core::iter::traits::collect::FromIterator<(alloc::string::String,alloc::string::String)>>::from_iter<core::iter::adapters::GenericShunt<core::iter::adapters::map::Map<core::iter::adapters::flatten::Flatten<core::option::IntoIter<js_sys::IntoIter>>,routing::location::history::search_params_from_web_url::{{closure}}>,core::result::Result<core::convert::Infallible,wasm_bindgen::JsValue>>>::{{closure}}>>::hbceb7ed3ec243063 + 546 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::GenericShunt<core::iter::adapters::map::Map<core::iter::adapters::flatten::Flatten<core::option::IntoIter<js_sys::IntoIter>>,routing::location::history::search_params_from_web_url::{{closure}}>,core::result::Result<core::convert::Infallible,wasm_bindgen::JsValue>>>::hcc2b47a8b62176cf + 482 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::map::Map<core::iter::adapters::flatten::Flatten<core::option::IntoIter<js_sys::IntoIter>>,routing::location::history::search_params_from_web_url::{{closure}}>>::h4e0e584890e0ae04 + 429 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::flatten::Flatten<core::option::IntoIter<js_sys::IntoIter>>>::h3e120cbe62527ee8 + 376 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::flatten::FlattenCompat<core::option::IntoIter<js_sys::IntoIter>,js_sys::IntoIter>>::h8b3b62b66de8fe32 + 291 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::iter::adapters::fuse::Fuse<core::option::IntoIter<js_sys::IntoIter>>>::he1b1fd5a97d4f59d + 238 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<core::option::IntoIter<js_sys::IntoIter>>>::hb7738c5e762dea23 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::IntoIter<js_sys::IntoIter>>::hd075a794f43759f1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Item<js_sys::IntoIter>>::hdb2280205698fa39 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<js_sys::IntoIter>>::h7cb8d62aa5918d43 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::IntoIter>::h12086a2f88aa7623 + 119 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::hfc74ed1cc4d1963d + 134 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h8a36ec3ae967c36d + 119 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h530350cb5d3550cf + 55 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::from_output::h4a898947e448b1e5 + 87 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8dc57d06670196e6 + 2791 ┊ 0.06% ┊ ⤷ js_sys::try_iter::h917b771930215da7 + 469 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h52e7b870978f22e9 + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hdae2c5d6726f36bd + 80 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Iterator>::is_type_of::h15570648d6308bff + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h44c9e88ed95437de + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Iterator>::unchecked_from_js::ha376e646cb381631 + 469 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h91231ee73621c0d5 + 155 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h8969ce9f207cee98 + 80 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Function>::is_type_of::he7ebe56416345749 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h8e74be1f3387e09b + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::cast::JsCast for js_sys::Function>::unchecked_from_js::he64ec40ec462b422 + 191 ┊ 0.00% ┊ ⤷ js_sys::Symbol::iterator::h2a87f955e04638e6 + 78 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Symbol>::from_abi::h30198902bf5700cd + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_iterator_2cee6dadfd956dfa + 162 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hc77ffed4d94e1744 + 148 ┊ 0.00% ┊ ⤷ <js_sys::Iterator as core::iter::traits::collect::IntoIterator>::into_iter::h6f023da86a6643a4 + 53 ┊ 0.00% ┊ ⤷ js_sys::IterState::new::ha3d4823dbc3e48be + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<js_sys::Function,wasm_bindgen::JsValue>>::h5b45f2cfdbf9e3cc + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<js_sys::Iterator,wasm_bindgen::JsValue>>::h58c4077fe1b947e8 + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hcc1c42af3c0b47fa + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for js_sys::Symbol>::as_ref::ha9039111c6904629 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::Symbol>::h0e0e7df1c4d66c36 + 392 ┊ 0.01% ┊ ⤷ core::iter::traits::iterator::Iterator::flatten::he4f6d76968fecab9 + 106 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::fuse::h1ebe21f5a7cb11be + 193 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::hf832c4f223eb8b85 + 106 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::iter::traits::collect::IntoIterator>::into_iter::h18af9546b899dbec + 101 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::map::h28b5cf49993a0489 + 72 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h6a71906a5944b45a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<js_sys::Iterator>::h0e739b517ea07482 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_UrlSearchParams::UrlSearchParams as core::ops::deref::Deref>::deref::ha672393b060f47e7 + 15329 ┊ 0.31% ┊ parking_lot_core::parking_lot::HashTable::new::haa62ee3956938acc + 6192 ┊ 0.13% ┊ ⤷ alloc::vec::Vec<T,A>::push::h4b5c4cd6be5ec4d5 + 5686 ┊ 0.12% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hc7b31c11a50c2218 + 5595 ┊ 0.11% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h960b52ec4d52475f + 3625 ┊ 0.07% ┊ ⤷ alloc::raw_vec::finish_grow::hece95d64cf1a29f7 + 1625 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h308aa6cca37f8151 + 1490 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::h51c0558212a25485 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h4fed157e1444b7b4 + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::hbe21f9ba22288509 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h653a1fad225ce835 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h72fd869e3943a158 + 565 ┊ 0.01% ┊ ⤷ core::cmp::max_by::h0620d625f4cf8fa7 + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h498ebd76c7c2944d + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h971507afe913f615 + 4424 ┊ 0.09% ┊ ⤷ alloc::vec::Vec<T,A>::into_boxed_slice::h32c279d6096cf720 + 3538 ┊ 0.07% ┊ ⤷ alloc::vec::Vec<T,A>::shrink_to_fit::h325c9ec358938c20 + 3327 ┊ 0.07% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::h6c5da3a64be76389 + 1587 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::shrink::hbc91ac9298fec217 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h6f9c651fe31d6406 + 92 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::{{closure}}::h21de4fe428ae1a40 + 1144 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::h6ef7bbc1e2261d5d + 1044 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::h1427f074a7700c5f + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h33b88994ae24ae96 + 800 ┊ 0.02% ┊ ⤷ alloc::raw_vec::handle_reserve::h0b3a072ac7b61a4c + 571 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h416b5f468a46101d + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::h9d36d7d68f042945 + 403 ┊ 0.01% ┊ ⤷ parking_lot_core::parking_lot::Bucket::new::h6f4d7b8ad2a83b2e + 96 ┊ 0.00% ┊ ⤷ parking_lot_core::word_lock::WordLock::new::h52e32b6dc63ac930 + 45 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::FairTimeout::new::h3b83fd3d2e4c11c1 + 345 ┊ 0.01% ┊ ⤷ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::hd2b34f3aa7453904 + 262 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h7b520aac93588c7d + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::hd8c18a21a0579efa + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::he70ca70774c71950 + 329 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h4ce22fe10d17ee47 + 246 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::next_power_of_two::hdcd4efcfd65a66ef + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h1ec441ba803ff347 + 50 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h8c17c287bd549e57 + 15001 ┊ 0.31% ┊ std::collections::hash::map::HashMap<K,V,S>::insert::hf3dedfbadc66c0b1 + 14861 ┊ 0.30% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::insert::h90152995355b47e7 + 13340 ┊ 0.27% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find_or_find_insert_slot::he42fa413b61130aa + 10150 ┊ 0.21% ┊ ⤷ hashbrown::raw::RawTable<T,A>::reserve::hb308cfefd6729ccb + 9891 ┊ 0.20% ┊ ⤷ hashbrown::raw::RawTable<T,A>::reserve_rehash::h0a0ec7b38ba54964 + 4390 ┊ 0.09% ┊ ⤷ hashbrown::raw::RawTableInner::rehash_in_place::h0ffabae75b23d53b + 1690 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTableInner::prepare_rehash_in_place::hd4a5fe20eb585079 + 386 ┊ 0.01% ┊ ⤷ core::num::<impl usize>::div_ceil::h4d304cc8f0054de2 + 45 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::forward_unchecked::h36d0ca4c6db2cfd7 + 574 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::find_insert_slot::hb6821bd29726721b + 322 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::prepare_insert_slot::h311eaf4d169b65a4 + 1520 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTableInner::find_or_find_insert_slot_inner::hc489df47da37e6fa + 676 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::fix_insert_slot::he45b28ee0e88eb19 + 670 ┊ 0.01% ┊ ⤷ hashbrown::raw::RawTableInner::find_insert_slot_in_group::hc5c66267196fb6ac + 779 ┊ 0.02% ┊ ⤷ hashbrown::raw::RawTable<T,A>::insert_in_slot::h6b20b32655daf0cd + 9 ┊ 0.00% ┊ ⤷ type[33]: (i32, i32, i64, i64, i32, i32) -> nil + 13071 ┊ 0.27% ┊ leptos::component::component_view::h15aff81a751e593e + 13014 ┊ 0.26% ┊ ⤷ <Func as leptos::component::ComponentConstructor<P,T>>::construct::hc6b4164f6c3d15cf + 12882 ┊ 0.26% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h61ba2636853061aa + 12750 ┊ 0.26% ┊ ⤷ core::ops::function::Fn::call::ha8235af46d14f1d3 + 12621 ┊ 0.26% ┊ ⤷ leptos_meta::title::Title::h9bb003f70e941022 + 12425 ┊ 0.25% ┊ ⤷ reactive_graph::graph::subscriber::untrack::h918db8c2f56d3222 + 12337 ┊ 0.25% ┊ ⤷ leptos_meta::title::Title::{{closure}}::h3b1a318ab5849691 + 12289 ┊ 0.25% ┊ ⤷ leptos_meta::title::__Title::hab0bab552abd615a + 3967 ┊ 0.08% ┊ ⤷ reactive_graph::owner::context::use_context::h38c5037f8ca79387 + 3884 ┊ 0.08% ┊ ⤷ core::option::Option<T>::and_then::h031c9daa34f66320 + 3620 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::h8e7aec359b0f238c + 3567 ┊ 0.07% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::hfd659ee7e8c13776 + 613 ┊ 0.01% ┊ ⤷ core::option::Option<&T>::cloned::h0be247d50272ea36 + 422 ┊ 0.01% ┊ ⤷ <leptos_meta::ServerMetaContext as core::clone::Clone>::clone::h3e4c4ea206ae7999 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h1792fcbaf21a37b3 + 480 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::hf601dcc4b92fe706 + 414 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h5187e2b4f9213f60 + 257 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h9eb088f7c5560b71 + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h1104d545d952d2a9 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h96b762d8276ee666 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h9dae36762688420a + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::ha50f5670263d2378 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h18845d2e5eca74ca + 164 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::he88cf00c3ef6fdf2 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<leptos_meta::ServerMetaContext>>::h9837affa85896473 + 3137 ┊ 0.06% ┊ ⤷ leptos_meta::use_head::h70ab34842644fe13 + 2262 ┊ 0.05% ┊ ⤷ leptos_dom::logging::console_warn::he39c566af8629207 + 1319 ┊ 0.03% ┊ ⤷ std::io::stdio::_eprint::h90f653825689d7ce + 633 ┊ 0.01% ┊ ⤷ std::io::stdio::print_to_buffer_if_capture_used::h4a7e124abda60b33 + 83 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hb85466ed21c95fb9 + 412 ┊ 0.01% ┊ ⤷ <&std::io::stdio::Stderr as std::io::Write>::write_fmt::h5405e329034c2404 + 65 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h758826ae8e9759ab + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hc61daeaf376f396e + 133 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::from_str::h9fc7c82926e3fddb + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::h8cb01dd6f49aa478 + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_console::console::warn_1::h8b6c9a8042b5b93f + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_warn_63bbae1730aead09 + 24 ┊ 0.00% ┊ ⤷ leptos_dom::logging::log_to_stdout::h7e2b851f9a0716ae + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h4c9eecc59494ce14 + 140 ┊ 0.00% ┊ ⤷ <core::fmt::Arguments as alloc::string::ToString>::to_string::h5003952e0ad35d88 + 1324 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::ServerMetaContext>::hdf42136e60a061e3 + 1255 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<leptos_meta::ServerMetaContextInner>>>::h35fd789a3b0b7405 + 1202 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hc89b48f561db8a07 + 962 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hf60e770e311639b9 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<leptos_meta::ServerMetaContextInner>,&alloc::alloc::Global>>::h99d910559b823dec + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h0244ea6c2058f5b0 + 202 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<leptos_meta::ServerMetaContextInner>>::ha99c1219871d2522 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<leptos_meta::ServerMetaContextInner>>::h8f6d845ef0dc4431 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<leptos_meta::ServerMetaContextInner>::h81bd0cae58a55855 + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::h4939265d953bdc55 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hbab3a19f04e31a2e + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hebc7ece63931c715 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::heb7dcdeeca29b33d + 618 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::write::hac6c8ed74f91a90d + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hc3382cb713d26092 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hb2a0afffc51f40a1 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h35a325e72c7cb518 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h18d9d74df06a2a46 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h7efa3b378d917145 + 320 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h476567df96ea9aa9 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h2004984093d72c22 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h1e94346b93c90640 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h387d3e1770629088 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h3dcdd0c616f8e9a0 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::heb99938363df8092 + 10365 ┊ 0.21% ┊ leptos_meta::title::TitleView::el::he114802a1b596166 + 3359 ┊ 0.07% ┊ ⤷ reactive_graph::owner::Owner::on_cleanup::h1c52f255925a5f4c + 2365 ┊ 0.05% ┊ ⤷ alloc::vec::Vec<T,A>::push::h059c2cf8b593b3c4 + 2071 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hb8b8e36a0feaaddd + 1751 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hfd72c1881021a63f + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h16cf60f7ce2f2a99 + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::h43995c658e840a88 + 1259 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h507108d159d48b54 + 538 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::he18a74b84c6fdae3 + 150 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h1ae08ced954eed5f + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Element::Element,wasm_bindgen::JsValue>>::he396d7c1b5f1a7b9 + 1160 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h523a003776ab2edf + 439 ┊ 0.01% ┊ ⤷ <core::result::Result<T,E> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h1d52afa970db4001 + 150 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h2ee122e454688ebc + 906 ┊ 0.02% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::h618983efe8005182 + 185 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h1f17cdf0022e3990 + 504 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Document::Document::query_selector::h91e47f53928ea72e + 68 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hdc92a69760fe4c37 + 43 ┊ 0.00% ┊ ⤷ import wbg::__wbg_querySelector_a5f74efc5fa193dd + 250 ┊ 0.01% ┊ ⤷ send_wrapper::SendWrapper<T>::take::hc07cee3a8e431885 + 45 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::take::h4a9c90c2df579a09 + 178 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::he6c59097febded68 + 114 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlTitleElement::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>::as_ref::h870bade10ef39dc8 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_HtmlElement::HtmlElement>::as_ref::h5ef7ddba71833e25 + 160 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::new::h457c52036c3e5bd5 + 160 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::new::he5afbb498a87696c + 136 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<core::option::Option<web_sys::features::gen_Element::Element>,wasm_bindgen::JsValue>>::hf0f0ab61105d28e2 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h6b458103947f9437 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlTitleElement::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>::unchecked_from_js::h6e5d6d41caacfc23 + 112 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::clone::Clone>::clone::hd9bd6082369ddd53 + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::h337d867c9fa0244d + 57 ┊ 0.00% ┊ ⤷ core::panic::location::Location::file::h05f17a10fec3f534 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::line::he5bb39cbde43bff1 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::column::hc489005eebd4e139 + 9342 ┊ 0.19% ┊ tachys::view::PositionState::get::hb449d6e5c98ca56d + 6819 ┊ 0.14% ┊ ⤷ lock_api::rwlock::RwLock<R,T>::read::h201b7232142c76eb + 6712 ┊ 0.14% ┊ ⤷ <parking_lot::raw_rwlock::RawRwLock as lock_api::rwlock::RawRwLock>::lock_shared::h70f088ea8e0622c1 + 5694 ┊ 0.12% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_shared_slow::h3cff15066e971bc4 + 5518 ┊ 0.11% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::hadf643df3e06c250 + 3617 ┊ 0.07% ┊ ⤷ parking_lot_core::parking_lot::park::h2bd11ddcc9c690e8 + 2620 ┊ 0.05% ┊ ⤷ parking_lot_core::parking_lot::park::{{closure}}::he93798f8da7cf5d5 + 299 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h7ecfc53bf96a10a0 + 209 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::h5e3560a40f34558b + 239 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h217883e962f65391 + 124 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::hd0c862c2ab6f5c03 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hddc435d216e61dfd + 29 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_common::{{closure}}::h8ba1b587183005f2 + 387 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h56e53605c914f3b4 + 31 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::hfb22a4fd22193792 + 238 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap_or_else::h83d0dc2a32f5156d + 64 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::with_thread_data::{{closure}}::hf01637bb20084a2e + 1020 ┊ 0.02% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::lock_shared_slow::{{closure}}::h9881d4cd66d3c832 + 285 ┊ 0.01% ┊ ⤷ parking_lot_core::spinwait::SpinWait::spin_no_yield::h0da96bc0312dfd3c + 74 ┊ 0.00% ┊ ⤷ <core::sync::atomic::AtomicUsize as parking_lot::elision::AtomicElisionExt>::elision_compare_exchange_acquire::h339e708c1708a240 + 24 ┊ 0.00% ┊ ⤷ parking_lot::elision::have_elision::h3e15e5b65cfbe0db + 11 ┊ 0.00% ┊ ⤷ type[44]: (i32, i64, i32, i32, i32, i32, i32) -> i32 + 8 ┊ 0.00% ┊ ⤷ type[31]: (i32, i32, i64, i32) -> i32 + 188 ┊ 0.00% ┊ ⤷ core::num::<impl usize>::checked_add::hcf5df623908c28fc + 74 ┊ 0.00% ┊ ⤷ <core::sync::atomic::AtomicUsize as parking_lot::elision::AtomicElisionExt>::elision_compare_exchange_acquire::h7bebd1704f20b1ad + 73 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::load::h4b7be6f03142bf10 + 45 ┊ 0.00% ┊ ⤷ lock_api::rwlock::RwLock<R,T>::make_read_guard_unchecked::h67344607efa94827 + 2323 ┊ 0.05% ┊ ⤷ core::ptr::drop_in_place<lock_api::rwlock::RwLockReadGuard<parking_lot::raw_rwlock::RawRwLock,tachys::view::Position>>::h98eba43bf3d6481a + 2270 ┊ 0.05% ┊ ⤷ <lock_api::rwlock::RwLockReadGuard<R,T> as core::ops::drop::Drop>::drop::h4d15ba9b1fee8ba0 + 2210 ┊ 0.04% ┊ ⤷ <parking_lot::raw_rwlock::RawRwLock as lock_api::rwlock::RawRwLock>::unlock_shared::h5b6f356170ea49ef + 1690 ┊ 0.03% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::unlock_shared_slow::h199d91ffd4b1282d + 1512 ┊ 0.03% ┊ ⤷ parking_lot_core::parking_lot::unpark_one::hd8a096726b7c6a79 + 249 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h7e68fd33beb7afc9 + 100 ┊ 0.00% ┊ ⤷ parking_lot::raw_rwlock::RawRwLock::unlock_shared_slow::{{closure}}::hf5040391f838554c + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_sub::h76bfd39268e8eb73 + 67 ┊ 0.00% ┊ ⤷ <core::sync::atomic::AtomicUsize as parking_lot::elision::AtomicElisionExt>::elision_fetch_sub_release::hea26eb3d985f503d + 56 ┊ 0.00% ┊ ⤷ <lock_api::rwlock::RwLockReadGuard<R,T> as core::ops::deref::Deref>::deref::hfabe861d697ebbb7 + 24 ┊ 0.00% ┊ ⤷ parking_lot::elision::have_elision::hd2aed79c6785ce8a + 8585 ┊ 0.17% ┊ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::haa80977bf265815c + 4247 ┊ 0.09% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::he1a237a6ed801882 + 2564 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::he095db8b3fa3ed52 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcba1b8448d0746a7 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h422e93a95558c25e + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h219931858029b6fb + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8f3460b8ad3f4921 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h67584e287b0550d5 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::hda6e3322d8052425 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<alloc::string::String,reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::update_if_necessary::{{closure}}>::{{closure}}>::h7b465a30abae6b99 + 533 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h59bb0079abf19355 + 432 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::hcb386916597f5b93 + 281 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::{{closure}}::h042a84e1bbb53edb + 140 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h41f28f06a5e92b07 + 599 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h5bef7cb00e32c603 + 416 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with_cleanup::{{closure}}::h571bfdf13fe340a9 + 546 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::hca6744acecbcf2cb + 287 ┊ 0.01% ┊ ⤷ reactive_graph::computed::inner::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::update_if_necessary::{{closure}}::h92f77a1a18f7116c + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h2e21f491aab40e17 + 139 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::hd569c181697b8fe0 + 79 ┊ 0.00% ┊ ⤷ core::mem::drop::he329178a74722b9e + 67 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::Deref>::deref::h9261a872bc00efd6 + 8252 ┊ 0.17% ┊ once_cell::imp::initialize_or_wait::h7b322b4d8e80c9eb + 2155 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<std::thread::Thread>::h7b0d50e23d69d7ed + 2102 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::sync::Arc<std::thread::Inner>>>::h833fefc5b9dd0981 + 2049 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::thread::Inner>>::h5dfdee98945c012f + 1996 ┊ 0.04% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hc1d3a165023a1d01 + 1756 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hc3ba6dbafe989a54 + 728 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::thread::Inner,&alloc::alloc::Global>>::h893edcecceaf289b + 675 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h2b275c0aaf9e12be + 87 ┊ 0.00% ┊ ⤷ <&A as core::alloc::Allocator>::deallocate::h57b8fa894a968b47 + 686 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::thread::Inner>::ha85ba8f3e0ad5b7b + 622 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::ffi::c_str::CString>>::hba52dc9050fd30d5 + 537 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::ffi::c_str::CString>::h1f9817426d2293e2 + 357 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<[u8]>>::h1b7e08805917eee0 + 304 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9e584e7ce6f8f6dd + 122 ┊ 0.00% ┊ ⤷ <alloc::ffi::c_str::CString as core::ops::drop::Drop>::drop::hdaad248d16ef5c78 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h85f999e35eaf0f68 + 2033 ┊ 0.04% ┊ ⤷ core::sync::atomic::AtomicPtr<T>::compare_exchange::h6b50afc010328a45 + 1907 ┊ 0.04% ┊ ⤷ core::sync::atomic::atomic_compare_exchange::h94bfcda43ba8c3bc + 1642 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::Guard>::hde2a30b3c5b1c458 + 1589 ┊ 0.03% ┊ ⤷ <once_cell::imp::Guard as core::ops::drop::Drop>::drop::h64d583a4b092a9fb + 215 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicPtr<T>::swap::h250290ae7bc172e7 + 139 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::take::h35609a7ac3945e83 + 42 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::h553a07debe8ea089 + 136 ┊ 0.00% ┊ ⤷ std::thread::Thread::unpark::h282ff8abbc6efa14 + 129 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::map_addr::hb82c3ee1f42b0612 + 42 ┊ 0.00% ┊ ⤷ <once_cell::imp::Guard as core::ops::drop::Drop>::drop::{{closure}}::hb658a79fafd97da3 + 116 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap::hb14fcc9c249115f2 + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::h0eff98ae8cfbe114 + 86 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::store::h93ba38b3df29c4e5 + 68 ┊ 0.00% ┊ ⤷ core::ptr::mut_ptr::<impl *mut T>::is_null::h7e7e4630a3b98164 + 1404 ┊ 0.03% ┊ ⤷ once_cell::imp::wait::hb4298f8c7f207426 + 244 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::Waiter>::h7909c8dd89d59d8d + 191 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::Cell<core::option::Option<std::thread::Thread>>>::h59f702825a42b429 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<std::thread::Thread>>>::heabf05101cb08c18 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::thread::Thread>>::hc4564089eba5fcbe + 155 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::map_addr::hb0691a094dfa4621 + 59 ┊ 0.00% ┊ ⤷ once_cell::imp::wait::{{closure}}::h111c7f802aa86f7e + 129 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::map_addr::ha8f4955236e94c84 + 42 ┊ 0.00% ┊ ⤷ once_cell::imp::wait::{{closure}}::hddf5ecc4544ee6f5 + 119 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::load::h0ee5db5982b60a91 + 74 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::new::h394067d49c655867 + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::hea93b0f66efee0d4 + 142 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::with_addr::hb966dfc1b997b516 + 140 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::map_addr::h777d30f479c90a6d + 53 ┊ 0.00% ┊ ⤷ once_cell::imp::initialize_or_wait::{{closure}}::h21889a4e85da95cb + 91 ┊ 0.00% ┊ ⤷ core::ops::function::impls::<impl core::ops::function::FnMut<A> for &mut F>::call_mut::h09b651b8ea1a752e + 31 ┊ 0.00% ┊ ⤷ once_cell::imp::strict::addr::hf8c6cbb6f0bf91f8 + 7697 ┊ 0.16% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>::h9632113f66b8372f + 7644 ┊ 0.16% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hc425e826a9752acf + 7404 ┊ 0.15% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::he90c489225255617 + 6644 ┊ 0.14% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>::h06d2ae3421175510 + 6580 ┊ 0.13% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::owner::OwnerInner>>::h91138fcdcd094601 + 6527 ┊ 0.13% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::OwnerInner>::h498ff435d6943b8f + 4546 ┊ 0.09% ┊ ⤷ core::ptr::drop_in_place<std::collections::hash::map::HashMap<core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>>::h1761476014b3107b + 4493 ┊ 0.09% ┊ ⤷ core::ptr::drop_in_place<hashbrown::map::HashMap<core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>,core::hash::BuildHasherDefault<rustc_hash::FxHasher>>>::hd693a905626d7118 + 4440 ┊ 0.09% ┊ ⤷ core::ptr::drop_in_place<hashbrown::raw::RawTable<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>>::h60a3e670813a11ef + 4387 ┊ 0.09% ┊ ⤷ <hashbrown::raw::RawTable<T,A> as core::ops::drop::Drop>::drop::hef6d04afa6a94171 + 4309 ┊ 0.09% ┊ ⤷ hashbrown::raw::RawTableInner::drop_inner_table::h916d9f01265c8048 + 2883 ┊ 0.06% ┊ ⤷ hashbrown::raw::RawTableInner::drop_elements::h9583bc1dcb381fee + 1452 ┊ 0.03% ┊ ⤷ <hashbrown::raw::RawIter<T> as core::iter::traits::iterator::Iterator>::next::h258d308e4fdde091 + 1318 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawIterRange<T>::next_impl::he6c3773f3b473e95 + 502 ┊ 0.01% ┊ ⤷ <hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next::h99872e8aa31c83f5 + 246 ┊ 0.01% ┊ ⤷ hashbrown::raw::Bucket<T>::next_n::h769c5dd6f2320788 + 809 ┊ 0.02% ┊ ⤷ hashbrown::raw::RawTableInner::iter::hc60ce4755a7aeef4 + 222 ┊ 0.00% ┊ ⤷ hashbrown::raw::Bucket<T>::from_base_index::h7133a9082ed32dbf + 274 ┊ 0.01% ┊ ⤷ hashbrown::raw::Bucket<T>::drop::hd4a6227afaa1346f + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::any::TypeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>)>::hd501b280ff8efa55 + 1322 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTableInner::free_buckets::h598e9b8896403063 + 1086 ┊ 0.02% ┊ ⤷ hashbrown::raw::TableLayout::calculate_layout_for::h037164d6487b8fa5 + 1272 ┊ 0.03% ┊ ⤷ <reactive_graph::owner::OwnerInner as core::ops::drop::Drop>::drop::h0bef34194c8e80f5 + 684 ┊ 0.01% ┊ ⤷ reactive_graph::owner::arena::Arena::with_mut::h2711477fe9b5f420 + 501 ┊ 0.01% ┊ ⤷ <reactive_graph::owner::OwnerInner as core::ops::drop::Drop>::drop::{{closure}}::h5e80d6ade813e35d + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>::h44d347c386b5e23c + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>::hff3dc83c9a812efd + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9b230840b13aac60 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>>>::hd4173f711fb00c31 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::he3834710f0ecf7c0 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>,&alloc::alloc::Global>>::h5df3b1026035ae49 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hdd19a9a410cb5713 + 5783 ┊ 0.12% ┊ <routing::location::history::BrowserUrl as routing::location::LocationProvider>::current::hcf8809b889561b80 + 431 ┊ 0.01% ┊ ⤷ web_sys::features::gen_UrlSearchParams::UrlSearchParams::new_with_str::h0eb025c01be4d8ba + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_newwithstr_2902c1dd2ea907e6 + 395 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Location::Location::pathname::hab4afb3307ef9bde + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_pathname_5449afe3829f96a1 + 393 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Location::Location::search::he9dfaf198d02b902 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_search_489f12953342ec1f + 162 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h9cb6be8169363b09 + 5651 ┊ 0.12% ┊ std::sync::once_lock::OnceLock<T>::get_or_init::h5e4253a5192bfdb1 + 5573 ┊ 0.11% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_try_init::h251d3c67944cae32 + 4933 ┊ 0.10% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::hf0bd7ff131e1a52b + 4815 ┊ 0.10% ┊ ⤷ std::sync::once::Once::call_once_force::h56b62ae40de02174 + 4515 ┊ 0.09% ┊ ⤷ std::sys::wasm::once::Once::call::h58a570937261b281 + 3228 ┊ 0.07% ┊ ⤷ std::sync::once::Once::call_once_force::{{closure}}::ha10bd321698cc77c + 2981 ┊ 0.06% ┊ ⤷ std::sync::once_lock::OnceLock<T>::initialize::{{closure}}::h04990091cb074387 + 2024 ┊ 0.04% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get_or_init::{{closure}}::hff1ed987aab14375 + 1861 ┊ 0.04% ┊ ⤷ core::ops::function::FnOnce::call_once::hc1898fcc206b0d4e + 1815 ┊ 0.04% ┊ ⤷ <std::sync::rwlock::RwLock<T> as core::default::Default>::default::h32f98a7ea9679a94 + 1411 ┊ 0.03% ┊ ⤷ <slotmap::basic::SlotMap<K,V> as core::default::Default>::default::h22a625c5ae4f89e1 + 1401 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<K,V>::with_key::h5ede5f80bcbe0148 + 1383 ┊ 0.03% ┊ ⤷ slotmap::basic::SlotMap<K,V>::with_capacity_and_key::he939c9aedf0decdb + 1026 ┊ 0.02% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::had62accb470cce57 + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hcf5c55b54b290a59 + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h1ddde4f1e03cbb37 + 299 ┊ 0.01% ┊ ⤷ std::sync::once_lock::OnceLock<T>::get::ha0e7009ddbfff690 + 5593 ┊ 0.11% ┊ alloc::raw_vec::RawVec<T,A>::grow_amortized::h59c8273f838f0603 + 3625 ┊ 0.07% ┊ ⤷ alloc::raw_vec::finish_grow::h82cbc29c4634d9ac + 1625 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h81d5d10309846f43 + 1490 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::h01e2247dd76ef594 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h7ad73b81d1a137b3 + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h84fcdc8568931784 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hf1cf039f8dcaf039 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h9cf806e0473ed2d3 + 565 ┊ 0.01% ┊ ⤷ core::cmp::max_by::hd0954d13ecade5a8 + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h2f6f3f66c37c3bf0 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h344ddd81a18a05f7 + 5438 ┊ 0.11% ┊ core::ptr::drop_in_place<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h6137797f1c8be00a + 5385 ┊ 0.11% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h1eb99c5fed6ecfaa + 5332 ┊ 0.11% ┊ ⤷ <std::sync::mpmc::Receiver<T> as core::ops::drop::Drop>::drop::hdf25eb8c8c31ba5d + 2663 ┊ 0.05% ┊ ⤷ std::sync::mpmc::counter::Receiver<C>::release::h79ff84e6e0719099 + 1986 ┊ 0.04% ┊ ⤷ <std::sync::mpmc::Receiver<T> as core::ops::drop::Drop>::drop::{{closure}}::hf83fb9225164f3f0 + 1918 ┊ 0.04% ┊ ⤷ std::sync::mpmc::list::Channel<T>::disconnect_receivers::h3ce7b9275892ac8e + 1633 ┊ 0.03% ┊ ⤷ std::sync::mpmc::list::Channel<T>::discard_all_messages::hbc479d7f3b173720 + 1749 ┊ 0.04% ┊ ⤷ std::sync::mpmc::counter::Receiver<C>::release::h49fe7bd1112e4ca8 + 1072 ┊ 0.02% ┊ ⤷ <std::sync::mpmc::Receiver<T> as core::ops::drop::Drop>::drop::{{closure}}::h682a16a652427a57 + 1004 ┊ 0.02% ┊ ⤷ std::sync::mpmc::array::Channel<T>::disconnect_receivers::heebaac3d8eb15efc + 707 ┊ 0.01% ┊ ⤷ std::sync::mpmc::array::Channel<T>::discard_all_messages::hf9ae5a32ea523af5 + 738 ┊ 0.02% ┊ ⤷ std::sync::mpmc::counter::Receiver<C>::release::hd350ec950e00902e + 68 ┊ 0.00% ┊ ⤷ <std::sync::mpmc::Receiver<T> as core::ops::drop::Drop>::drop::{{closure}}::ha43b656d57880ce1 + 4997 ┊ 0.10% ┊ parking_lot_core::parking_lot::ThreadData::new::hc7440ac9fcc78dc9 + 4224 ┊ 0.09% ┊ ⤷ parking_lot_core::parking_lot::grow_hashtable::h382836caff8e67cd + 1044 ┊ 0.02% ┊ ⤷ parking_lot_core::parking_lot::rehash_bucket_into::h8190019d13c4e640 + 259 ┊ 0.01% ┊ ⤷ parking_lot_core::parking_lot::hash::he9842148dee45abc + 681 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicPtr<T>::store::h3323f3c4b5549412 + 603 ┊ 0.01% ┊ ⤷ core::sync::atomic::atomic_store::hf11cd23cad97affe + 546 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h3075b2a04c6205ad + 188 ┊ 0.00% ┊ ⤷ parking_lot_core::word_lock::WordLock::lock::h20fbb4ab1e54c38c + 187 ┊ 0.00% ┊ ⤷ core::slice::iter::<impl core::iter::traits::collect::IntoIterator for &[T]>::into_iter::hd6393b4179b45f8e + 155 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::hf0259761638dfc3e + 50 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::slice::index::SliceIndex<[T]>>::index::h2f5b804e989de374 + 148 ┊ 0.00% ┊ ⤷ parking_lot_core::word_lock::WordLock::unlock::hf42f71a23af2866c + 141 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::get_hashtable::hd8d4da5938a125de + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_add::h65473a79579e17d7 + 67 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::h9903e2e8d9cf91e9 + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::h09fbcd4c9b3a00ba + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::h4c7b470ed98b251f + 4834 ┊ 0.10% ┊ <leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::h717f37cfab7087e6 + 4285 ┊ 0.09% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new::hf2b3740ddfd89a47 + 4170 ┊ 0.08% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::h7526a49528eee48b + 2547 ┊ 0.05% ┊ ⤷ reactive_graph::owner::Owner::with::h2047c8f648cfcd48 + 942 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h88b21f722e2ea6d7 + 693 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h4fbdd86b3f007eb8 + 278 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h0f1f2d2a17162abb + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h844528ce44e96ff2 + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h1ec9c81046198112 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::with::{{closure}}::h6bf95a58dfc7de82 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::owner::Owner::with<oco::Oco<str>,reactive_graph::effect::render_effect::RenderEffect<oco::Oco<str>>::new_with_value<<leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate<_>::{{closure}}>::{{closure}}>::{{closure}}>::h05d89c55d49f84dd + 516 ┊ 0.01% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::h12b20d37e74fa53c + 313 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::AnySubscriber::with_observer::h17310235ee13cc28 + 178 ┊ 0.00% ┊ ⤷ reactive_graph::effect::render_effect::RenderEffect<T>::new_with_value::{{closure}}::{{closure}}::hddaaecec25b80cd2 + 587 ┊ 0.01% ┊ ⤷ any_spawner::Executor::spawn_local::h646da26934424537 + 142 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlTitleElement::HtmlTitleElement as core::clone::Clone>::clone::hfba286351fc646cb + 71 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlElement::HtmlElement as core::clone::Clone>::clone::hdbd0828f7f001a7b + 4676 ┊ 0.10% ┊ leptos_meta::title::TitleContext::as_string::h11898c429533eb92 + 2934 ┊ 0.06% ┊ ⤷ core::option::Option<T>::map::hfe6c49ec5e1459f9 + 2551 ┊ 0.05% ┊ ⤷ leptos_meta::title::TitleContext::as_string::{{closure}}::hfbfaa80e42e9435d + 858 ┊ 0.02% ┊ ⤷ oco::Oco<T>::into_owned::h0d0824c0ed7ae03c + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h5461a7261b47f687 + 103 ┊ 0.00% ┊ ⤷ <alloc::sync::Arc<T,A> as core::convert::AsRef<T>>::as_ref::ha5aee2c0d9fa451d + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::hfce00ae72062ce35 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h326ee976a8df9d54 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h58d89e9e8f5c4371 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hdeb5802f896d01ce + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hd92d3e8a92a8b5db + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h2715dfe7c1e1c211 + 133 ┊ 0.00% ┊ ⤷ <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::h65da68c0e8631ca9 + 67 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h05993ff6a07c86a9 + 55 ┊ 0.00% ┊ ⤷ <oco::Oco<str> as core::convert::From<alloc::string::String>>::from::ha6aa510cf7fb1813 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hd0a5cda5d97d5375 + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h78cd9df2aff564dc + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::ha03721cf009bfc21 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h9184e4c356246de3 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h996f5db40586b2a5 + 367 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h44e59971cfd67c14 + 110 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h331276d936f4f4ee + 298 ┊ 0.01% ┊ ⤷ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h8dfbe371c9239a08 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h5bb0288294ad1eb0 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h28720c56fd758483 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h5cca1fbf5860189b + 4661 ┊ 0.09% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::malloc::hd53665cffe060528 + 59 ┊ 0.00% ┊ ⤷ <dlmalloc::sys::System as dlmalloc::Allocator>::alloc::h77c12e0261fba7ef + 4645 ┊ 0.09% ┊ std::sync::mpmc::waker::Waker::notify::h00540c6324b9bf1d + 2040 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::drain::Drain<std::sync::mpmc::waker::Entry>>::h91cc5aaac6d456ef + 1987 ┊ 0.04% ┊ ⤷ <alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::h2e42db3d54f24824 + 458 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::DropGuard<std::sync::mpmc::waker::Entry,alloc::alloc::Global>>::h2ec8705de0e7aa6d + 405 ┊ 0.01% ┊ ⤷ <<alloc::vec::drain::Drain<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::hf4b762157682363f + 268 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::truncate::h51d0fa40020470dc + 1552 ┊ 0.03% ┊ ⤷ alloc::vec::Vec<T,A>::drain::hb5e6f979f5f50090 + 1075 ┊ 0.02% ┊ ⤷ core::slice::index::range::ha14ce6e818bb23c1 + 68 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::ops::range::RangeBounds<T>>::start_bound::h83a12ab23d7d4a83 + 68 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::ops::range::RangeBounds<T>>::end_bound::hcf72d41ab9a9eb4c + 4188 ┊ 0.09% ┊ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h1893d8cd435193e8 + 4097 ┊ 0.08% ┊ ⤷ <routing::params::ParamsMap as core::cmp::PartialEq>::eq::hcd1306b04936d928 + 4020 ┊ 0.08% ┊ ⤷ alloc::vec::partial_eq::<impl core::cmp::PartialEq<alloc::vec::Vec<U,A2>> for alloc::vec::Vec<T,A1>>::eq::hef8a28a966088f63 + 3698 ┊ 0.08% ┊ ⤷ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::he810f7ab2343461e + 2208 ┊ 0.04% ┊ ⤷ core::iter::traits::iterator::Iterator::try_fold::h90b15802c16dac9b + 1263 ┊ 0.03% ┊ ⤷ core::iter::traits::iterator::Iterator::all::check::{{closure}}::h690aec9664eb83b1 + 1096 ┊ 0.02% ┊ ⤷ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::{{closure}}::h678d5325de233e26 + 939 ┊ 0.02% ┊ ⤷ core::tuple::<impl core::cmp::PartialEq for (U,T)>::eq::hf1462f278e5302c5 + 399 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::cmp::PartialEq>::eq::h33061e73fb6c2a63 + 322 ┊ 0.01% ┊ ⤷ alloc::vec::partial_eq::<impl core::cmp::PartialEq<alloc::vec::Vec<U,A2>> for alloc::vec::Vec<T,A1>>::eq::hd47af92c33652c92 + 372 ┊ 0.01% ┊ ⤷ <alloc::borrow::Cow<B> as core::cmp::PartialEq<alloc::borrow::Cow<C>>>::eq::hc38eb08900434598 + 226 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::cmp::PartialEq for str>::eq::h6d01b7574570bd3b + 574 ┊ 0.01% ┊ ⤷ <core::iter::adapters::zip::Zip<A,B> as core::iter::traits::iterator::Iterator>::next::h8d4cc02a1c31e4e2 + 491 ┊ 0.01% ┊ ⤷ <core::iter::adapters::zip::Zip<A,B> as core::iter::adapters::zip::ZipImpl<A,B>>::next::hc663b5d09d787660 + 77 ┊ 0.00% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::__iterator_get_unchecked::hf06c1119fb0afc01 + 932 ┊ 0.02% ┊ ⤷ <core::iter::adapters::zip::Zip<A,B> as core::iter::adapters::zip::ZipImpl<A,B>>::new::h5d51e50cfc0f883d + 411 ┊ 0.01% ┊ ⤷ core::iter::adapters::zip::TrustedRandomAccessNoCoerce::size::hdd7d9373c3a6d6d1 + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::size_hint::he77f3a49240571a0 + 296 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h25c6bedb35df4311 + 3918 ┊ 0.08% ┊ export "intounderlyingsource_pull" + 3889 ┊ 0.08% ┊ ⤷ intounderlyingsource_pull + 3452 ┊ 0.07% ┊ ⤷ wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::h441b938c54133d33 + 1308 ┊ 0.03% ┊ ⤷ futures_util::future::try_future::TryFutureExt::unwrap_or_else::h2935f27efc9cadf8 + 1037 ┊ 0.02% ┊ ⤷ futures_util::future::try_future::UnwrapOrElse<Fut,F>::new::hfcf7f00d6934d65b + 495 ┊ 0.01% ┊ ⤷ futures_util::future::future::Map<Fut,F>::new::h92236ceded01e2e3 + 198 ┊ 0.00% ┊ ⤷ futures_util::future::future::map::Map<Fut,F>::new::h56b82939cad56f18 + 184 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::into_future::IntoFuture<Fut>::new::h8ae29efd86a5e052 + 21 ┊ 0.00% ┊ ⤷ futures_util::fns::unwrap_or_else_fn::h7fa58f83e7d197b6 + 184 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h6ab1eeb400ad5fff + 784 ┊ 0.02% ┊ ⤷ futures_util::future::abortable::abortable::hef8fde43f81683d0 + 224 ┊ 0.00% ┊ ⤷ futures_util::abortable::Abortable<T>::new::hc1d8186913b77029 + 184 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h2a5fdbbc08f41e05 + 482 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::future_to_promise::hf412da1845ec659a + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>::hdb2ce98dc8e3ef04 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h9ad168ca77830ed7 + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h8796f2853d8f273b + 95 ┊ 0.00% ┊ ⤷ <wasm_streams::readable::into_underlying_source::IntoUnderlyingSource as wasm_bindgen::convert::traits::RefMutFromWasmAbi>::ref_mut_from_abi::h7ae221220167a6fe + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_ReadableStreamDefaultController::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_ReadableStreamDefaultController::ReadableStreamDefaultController>::from_abi::h823b4e54125f9d6a + 38 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h696209505983815b + 3848 ┊ 0.08% ┊ alloc::raw_vec::finish_grow::h60808f7cb14dd2c2 + 1848 ┊ 0.04% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h326d08fecbd01533 + 1713 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::h2f2a0ea48e9006df + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hd44020112037026d + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h3a3ed4e610fdbf97 + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::hf1cd9bd3577c21be + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hc18c88a9805d9e31 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h404911f007e166d2 + 3743 ┊ 0.08% ┊ alloc::raw_vec::finish_grow::ha495f3ed3f2c9e2d + 1625 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h984298167fcaaa80 + 1490 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::h5e7800bf1cf5e720 + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h788199ed4f86acac + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h4ad323c807721ce6 + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hb49a65351d32dc12 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h6b168ecbddc89eea + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::hc97f92968b12851f + 3691 ┊ 0.08% ┊ leptos_meta::MetaContext::new::h0719b43d833d5f7e + 3681 ┊ 0.07% ┊ ⤷ <leptos_meta::MetaContext as core::default::Default>::default::h29cbcbdfaeb32da0 + 2317 ┊ 0.05% ┊ ⤷ <leptos_meta::title::TitleContext as core::default::Default>::default::h628ea33c52d3ebd6 + 860 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T> as core::default::Default>::default::h7ccfce1cadfe7f9d + 300 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLock<T> as core::default::Default>::default::h15d560cb4cee978a + 63 ┊ 0.00% ┊ ⤷ <core::option::Option<T> as core::default::Default>::default::hca594936fc1db52f + 707 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T> as core::default::Default>::default::h984b0489fc406f9f + 233 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLock<T> as core::default::Default>::default::hc183b2e2b2cdeb12 + 707 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T> as core::default::Default>::default::h9d205baed4dd9d8c + 233 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLock<T> as core::default::Default>::default::h848946de3cb64cfd + 593 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h6424bab560976872 + 573 ┊ 0.01% ┊ ⤷ once_cell::sync::Lazy<T,F>::new::ha15436950bdb9964 + 348 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::new::h5cd4847009314e54 + 184 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::new::h2d654d549d6477ee + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::he4721fded34e8bd0 + 3625 ┊ 0.07% ┊ alloc::raw_vec::finish_grow::hc2b1d83f79016e4f + 1625 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::grow::h9548425ce2d371b4 + 1490 ┊ 0.03% ┊ ⤷ alloc::alloc::Global::grow_impl::he87d0f06783fcc8b + 377 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h4fb8b9e32766fc39 + 120 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h1e2da6352c9b270d + 298 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::heba72209ee088c78 + 61 ┊ 0.00% ┊ ⤷ alloc::raw_vec::finish_grow::{{closure}}::h312a13aad3829cfc + 3458 ┊ 0.07% ┊ reactive_graph::owner::context::use_context::h089ff3de87624bf6 + 3375 ┊ 0.07% ┊ ⤷ core::option::Option<T>::and_then::hc016f20b75afd0e4 + 3111 ┊ 0.06% ┊ ⤷ reactive_graph::owner::context::use_context::{{closure}}::hdc7ed65872f40d3c + 3058 ┊ 0.06% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::hb9bc31c90e9c3c35 + 479 ┊ 0.01% ┊ ⤷ <dyn core::any::Any+core::marker::Sync+core::marker::Send>::downcast_ref::h0f61bc01a4b1a8f4 + 413 ┊ 0.01% ┊ ⤷ <dyn core::any::Any>::downcast_ref::h84c886397bddd185 + 257 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h77762cfb775226c3 + 78 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::hda6c5d36803eaa3e + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h686669d47bbf3474 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::he9a629398cab7534 + 252 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::ha0cccc6f8c5568c7 + 57 ┊ 0.00% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::use_context::{{closure}}::h43a831a2ff67061a + 191 ┊ 0.00% ┊ ⤷ core::option::Option<&T>::cloned::hc724f7a7d6cb942f + 163 ┊ 0.00% ┊ ⤷ core::any::TypeId::of::h23425bc35826084f + 3332 ┊ 0.07% ┊ <percent_encoding::PercentEncode as core::iter::traits::iterator::Iterator>::next::h76b0c6e159facc63 + 618 ┊ 0.01% ┊ ⤷ percent_encoding::percent_encode_byte::h8da60ba67b7c06a5 + 244 ┊ 0.00% ┊ ⤷ core::array::<impl core::ops::index::Index<I> for [T; N]>::index::h1bc9b79d9ac098fe + 123 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::h34f4a22832f46285 + 582 ┊ 0.01% ┊ ⤷ percent_encoding::AsciiSet::should_percent_encode::hb7fa6d20bae4ec86 + 331 ┊ 0.01% ┊ ⤷ percent_encoding::AsciiSet::contains::h8bba7dc524a5922d + 85 ┊ 0.00% ┊ ⤷ core::num::<impl u8>::is_ascii::hf64813ed3869a103 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::he417ee1267fc831f + 315 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::split_at::h085e93b600019f60 + 224 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::split_first::hb6c793d12d276787 + 61 ┊ 0.00% ┊ ⤷ core::iter::traits::iterator::Iterator::enumerate::h5979f10fd2bd3354 + 55 ┊ 0.00% ┊ ⤷ <I as core::iter::traits::collect::IntoIterator>::into_iter::h70bb31d772a46aca + 50 ┊ 0.00% ┊ ⤷ core::str::converts::from_utf8_unchecked::hf51817103d8ad4f0 + 3257 ┊ 0.07% ┊ hashbrown::raw::RawTableInner::prepare_resize::hf8c80e4c9bb3e492 + 2389 ┊ 0.05% ┊ ⤷ hashbrown::raw::RawTableInner::fallible_with_capacity::h13a90e042694ac51 + 755 ┊ 0.02% ┊ ⤷ hashbrown::raw::capacity_to_buckets::hfa7c9e41a84e9b12 + 3209 ┊ 0.07% ┊ std::sync::mpmc::context::Context::try_select::hb69fd6882c112e46 + 2143 ┊ 0.04% ┊ ⤷ core::sync::atomic::atomic_compare_exchange::hcac730599788bf03 + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::hace5b5d4f55a988a + 402 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::h799f49c21cf03608 + 166 ┊ 0.00% ┊ ⤷ std::sync::mpmc::context::Context::try_select::{{closure}}::h601d3230a3210df0 + 256 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map::h69b0ee4eedcd5e28 + 29 ┊ 0.00% ┊ ⤷ std::sync::mpmc::context::Context::try_select::{{closure}}::h8bc1f6cf842adfff + 3189 ┊ 0.06% ┊ parking_lot_core::parking_lot::create_hashtable::h642fda908fd5facd + 2033 ┊ 0.04% ┊ ⤷ core::sync::atomic::AtomicPtr<T>::compare_exchange::h85c93534cf71b7ff + 1907 ┊ 0.04% ┊ ⤷ core::sync::atomic::atomic_compare_exchange::h9dcc0819de6e5eaf + 741 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<parking_lot_core::parking_lot::HashTable>>::hec7fac3a21b7d41c + 411 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<parking_lot_core::parking_lot::HashTable>::hf0fbecc6393d9cd3 + 358 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<[parking_lot_core::parking_lot::Bucket]>>::h2be2c39126d933a5 + 305 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::he8b5efa0562c66b3 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h9d48e8da2d14c5f9 + 73 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h0c4f1545cfbaa388 + 3157 ┊ 0.06% ┊ std::collections::hash::map::HashMap<K,V,S>::get::h2b3a3fd86085661e + 3091 ┊ 0.06% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::get::hbdb0ce1491ea119c + 2177 ┊ 0.04% ┊ ⤷ hashbrown::raw::RawTable<T,A>::get::h3660c6275dbafe1b + 1839 ┊ 0.04% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find::h94187da7845af389 + 502 ┊ 0.01% ┊ ⤷ <hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next::h566b666003113d8a + 654 ┊ 0.01% ┊ ⤷ core::hash::BuildHasher::hash_one::he81cef0a50a7493e + 472 ┊ 0.01% ┊ ⤷ core::hash::impls::<impl core::hash::Hash for &T>::hash::hbf73ba499a830c3f + 403 ┊ 0.01% ┊ ⤷ <core::any::TypeId as core::hash::Hash>::hash::he12d8a96db529e08 + 296 ┊ 0.01% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::write_u64::h3d21d4e65768f483 + 204 ┊ 0.00% ┊ ⤷ rustc_hash::FxHasher::add_to_hash::hf86d86c7bec1c9fd + 45 ┊ 0.00% ┊ ⤷ <usize as core::ops::bit::BitXor>::bitxor::he469f0cd1b889d71 + 49 ┊ 0.00% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::finish::h10b6840a65415d52 + 3103 ┊ 0.06% ┊ core::ptr::drop_in_place<std::sync::mpsc::Sender<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h7ae3e4480d5a89ce + 3050 ┊ 0.06% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::Sender<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h7d72de26afd3a605 + 2997 ┊ 0.06% ┊ ⤷ <std::sync::mpmc::Sender<T> as core::ops::drop::Drop>::drop::hfdd542a2498d7876 + 1042 ┊ 0.02% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::release::hf970f63c8a19b42b + 365 ┊ 0.01% ┊ ⤷ <std::sync::mpmc::Sender<T> as core::ops::drop::Drop>::drop::{{closure}}::ha9da4627e3fff825 + 297 ┊ 0.01% ┊ ⤷ std::sync::mpmc::list::Channel<T>::disconnect_senders::h1242894cdaee0c7b + 1035 ┊ 0.02% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::release::he59df2ae9e7ffcc6 + 358 ┊ 0.01% ┊ ⤷ <std::sync::mpmc::Sender<T> as core::ops::drop::Drop>::drop::{{closure}}::hd0421744c264fc0c + 290 ┊ 0.01% ┊ ⤷ std::sync::mpmc::array::Channel<T>::disconnect_senders::h70e5acc9037b6871 + 738 ┊ 0.02% ┊ ⤷ std::sync::mpmc::counter::Sender<C>::release::h8de166fca700a791 + 68 ┊ 0.00% ┊ ⤷ <std::sync::mpmc::Sender<T> as core::ops::drop::Drop>::drop::{{closure}}::h9bf7e41a9ca3c9d0 + 2996 ┊ 0.06% ┊ parking_lot_core::word_lock::WordLock::lock_slow::h07316de227c3b90d + 1847 ┊ 0.04% ┊ ⤷ parking_lot_core::word_lock::with_thread_data::he118ac1895911b37 + 734 ┊ 0.01% ┊ ⤷ parking_lot_core::word_lock::WordLock::lock_slow::{{closure}}::h308f06f7ef8553a1 + 56 ┊ 0.00% ┊ ⤷ <usize as parking_lot_core::word_lock::LockState>::with_queue_head::h29b70448f612be4c + 40 ┊ 0.00% ┊ ⤷ parking_lot_core::spinwait::SpinWait::reset::h51c4058586ddc6aa + 420 ┊ 0.01% ┊ ⤷ core::option::Option<T>::get_or_insert_with::h708b3b091fb1046d + 46 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h8b4ad3fa3b41d146 + 387 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hef75599348cd0d73 + 31 ┊ 0.00% ┊ ⤷ parking_lot_core::word_lock::with_thread_data::{{closure}}::h55ac95063c7c1cb8 + 574 ┊ 0.01% ┊ ⤷ parking_lot_core::spinwait::SpinWait::spin::hc11470579b78e7f7 + 194 ┊ 0.00% ┊ ⤷ parking_lot_core::spinwait::cpu_relax::h7c3b223d11730ed0 + 56 ┊ 0.00% ┊ ⤷ parking_lot_core::spinwait::SpinWait::new::h1351bc164e0b3437 + 42 ┊ 0.00% ┊ ⤷ <parking_lot_core::spinwait::SpinWait as core::default::Default>::default::h89c10704c9db7a9d + 2965 ┊ 0.06% ┊ alloc::sync::Arc<[T]>::copy_from_slice::h0224f8a4f3f02a33 + 2749 ┊ 0.06% ┊ ⤷ alloc::sync::Arc<[T]>::allocate_for_slice::he7c58bd79acb1bd2 + 2091 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T>::allocate_for_layout::hf42de0e6a685ca19 + 1297 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}}::h0dc8954e52228e7d + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h40c7f70dcb3c62d3 + 431 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::initialize_arcinner::hfbf107a225097e50 + 142 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<[T]>::allocate_for_slice::{{closure}}::h6508be2c16cc6196 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h571b22b17bb1529e + 2906 ┊ 0.06% ┊ <alloc::vec::Vec<T,A> as core::clone::Clone>::clone::h30dcc67f5a08f3f7 + 2704 ┊ 0.06% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h0930bcf447af6efc + 926 ┊ 0.02% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::allocate_in::hdf7e66a660e33507 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::h6b9812e8766917a9 + 262 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::spare_capacity_mut::hcf1263942f97127a + 2833 ┊ 0.06% ┊ alloc::vec::Vec<T,A>::into_boxed_slice::hed3e4564591ed3d5 + 1947 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::shrink_to_fit::hd3c967a4e983fa51 + 1736 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::he0b665e16ec40779 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hfb9fb2356c49403a + 92 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::shrink::{{closure}}::hf86873db8aa6d2f6 + 2710 ┊ 0.06% ┊ reactive_graph::graph::sets::SubscriberSet::subscribe::h67f242fa8acae2a1 + 1812 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::h32872fc345f758ca + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h21ef4266d33873f3 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::hc39faf612439be51 + 654 ┊ 0.01% ┊ ⤷ core::slice::<impl [T]>::contains::h8e4f1105c145bcf3 + 568 ┊ 0.01% ┊ ⤷ <T as core::slice::cmp::SliceContains>::slice_contains::he6112d2a28c7f7af + 343 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::any::he9bc816dd4ec4bb4 + 84 ┊ 0.00% ┊ ⤷ <T as core::slice::cmp::SliceContains>::slice_contains::{{closure}}::h55ca6b0adba30743 + 2674 ┊ 0.05% ┊ alloc::raw_vec::RawVec<T,A>::allocate_in::hf505447ff0771d04 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h7a4ff59950cf7329 + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::h6f9afbe6f02539f7 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h6c8fc6f788bfe141 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::hf631f061209ecc34 + 2511 ┊ 0.05% ┊ std::sync::mpmc::waker::Waker::try_select::h80e02077ac428a74 + 1404 ┊ 0.03% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::position::had6e096e8d677e5a + 794 ┊ 0.02% ┊ ⤷ std::sync::mpmc::waker::Waker::try_select::{{closure}}::hbc106b8b1e47c6ca + 214 ┊ 0.00% ┊ ⤷ std::sync::mpmc::context::Context::store_packet::he68cd25f128b9fc7 + 582 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::heb719d67666a78a3 + 387 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h200e0f544f5b9eec + 31 ┊ 0.00% ┊ ⤷ std::sync::mpmc::waker::current_thread_id::{{closure}}::h65e008021e835e29 + 2425 ┊ 0.05% ┊ core::ptr::drop_in_place<leptos_meta::title::TitleContext>::h2f71ff3f12d9eba5 + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<leptos::text_prop::TextProp>>>>::h57d21cebba8a9c4c + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h6cdfadaec8ca1f06 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h817203f3857b5e1b + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<leptos::text_prop::TextProp>>,&alloc::alloc::Global>>::h01de5b79b6bb9436 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h2d4b1b424fa19dbc + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<leptos::text_prop::TextProp>>>::h86e3164ef797ffc7 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<leptos::text_prop::TextProp>>>::hcf8aaa0967f25e5d + 1170 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<leptos_meta::title::Formatter>>>>::h65100b913e0a0653 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h148d2b8e29ee1d04 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h2ff09b4a5e46fc63 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<leptos_meta::title::Formatter>>,&alloc::alloc::Global>>::h2e92eb7520584e8e + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h0d1a8bf6f02b01e8 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<leptos_meta::title::Formatter>>>::h03c84849cc510084 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<leptos_meta::title::Formatter>>>::h1fdff4f6b1c90326 + 2223 ┊ 0.05% ┊ hashbrown::raw::RawTableInner::new_uninitialized::hc7bc3c7dfbd8374e + 1531 ┊ 0.03% ┊ ⤷ hashbrown::raw::alloc::inner::do_alloc::hd533ec5495b93388 + 1290 ┊ 0.03% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h9f4774da8da98889 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::hcd8f7da5e9dc505b + 34 ┊ 0.00% ┊ ⤷ hashbrown::raw::Fallibility::alloc_err::haf57bb146548fccf + 2200 ┊ 0.04% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<alloc::string::String>>>::h783a45377d53337b + 2147 ┊ 0.04% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hca74d8faaae69088 + 1907 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hf4bd45dd49521479 + 1147 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<alloc::string::String>>::he0cacbeb4d728f7a + 1083 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<alloc::string::String>>::hb1e27f2f6646cba4 + 1030 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::string::String>::h3d65a709dd74b230 + 977 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::hbe908f35d9d96a82 + 799 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::ha54e625f5410d4e9 + 746 ┊ 0.02% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hbee8f6017105a2aa + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h17d357ec9ac26283 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h9d0a30719c2622c7 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h90281989a6cb02d1 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<alloc::string::String>,&alloc::alloc::Global>>::h4ffdbe5442600246 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h860caf0f405bc2da + 2192 ┊ 0.04% ┊ reactive_graph::owner::Owner::new::he80b7ce8a7794903 + 1225 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::ha6ee1852bb2b194f + 953 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h2fa7dac3e654a9ce + 569 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::new::{{closure}}::hef4cdae75e146be8 + 409 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h19816a643e374cc9 + 134 ┊ 0.00% ┊ ⤷ reactive_graph::owner::Owner::new::{{closure}}::{{closure}}::h5d9e10652f9c3a1e + 334 ┊ 0.01% ┊ ⤷ core::option::Option<T>::unwrap_or::hf074c061928907c9 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<(core::option::Option<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>,core::option::Option<alloc::sync::Arc<dyn hydration_context::SharedContext+core::marker::Sync+core::marker::Send>>)>::hf25061eda5861f06 + 2169 ┊ 0.04% ┊ reactive_graph::signal::guards::Plain<T>::try_new::h8c32e492e08c0a33 + 1286 ┊ 0.03% ┊ ⤷ guardian::ArcRwLockReadGuardian<T>::take::he45548668990d81b + 679 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLock<T>::read::h5b1506faab8fa7d6 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h36c0458550d681e5 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hd346de500ff34ab9 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hef55f47f6dbac528 + 55 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::new::h471ba3ee570730c8 + 50 ┊ 0.00% ┊ ⤷ std::sync::poison::PoisonError<T>::into_inner::hcf0679b97e6562e2 + 427 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::h480cef16c61ef52b + 69 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::Plain<T>::try_new::{{closure}}::hc9abcb98eacf5bd5 + 349 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h5f2615de680581d5 + 152 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<guardian::ArcRwLockReadGuardian<routing::params::ParamsMap>,std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<routing::params::ParamsMap>>>>::h944756635ed2d543 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::poison::PoisonError<guardian::ArcRwLockReadGuardian<routing::params::ParamsMap>>>::ha4ea1db1de9abdbd + 2164 ┊ 0.04% ┊ slotmap::basic::SlotMap<K,V>::try_insert_with_key::h501ebc271ebc09cc + 223 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_mut::hdd79d832d585f0bc + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_mut::hab016cf4e9d36f06 + 170 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h98d95b8e898dfe69 + 78 ┊ 0.00% ┊ ⤷ <reactive_graph::owner::arena::NodeId as core::convert::From<slotmap::KeyData>>::from::hdf5100e3a567c7ac + 136 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h94eb4a8287c60b9f + 92 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::insert::{{closure}}::h36c2bfd09afa85e3 + 38 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T,A>::len::h58536b71234f112c + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::hdfb0a82f3a63bad2 + 2143 ┊ 0.04% ┊ core::sync::atomic::atomic_compare_exchange::hb15bfee0a12f209d + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h9d7eb196beedc865 + 2138 ┊ 0.04% ┊ alloc::vec::Vec<T,A>::push::hfbb60e8bc7de2a8d + 1824 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h6117feb662168d9f + 1733 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h3a8a533f1d2c7976 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h303e358a801cc31a + 2134 ┊ 0.04% ┊ export "intounderlyingbytesource_type" + 2101 ┊ 0.04% ┊ ⤷ intounderlyingbytesource_type + 1328 ┊ 0.03% ┊ ⤷ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::h09130803aa0f86ce + 1241 ┊ 0.03% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::hb22197c061a1ba4e + 973 ┊ 0.02% ┊ ⤷ core::option::Option<T>::unwrap_or_else::h90a53f1cf541aded + 620 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::{{closure}}::h6cd7140ec46b60e1 + 378 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::vec::Vec<T>>::into_abi::h8339c7649943a3ad + 268 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::boxed::Box<[T]>>::into_abi::h7541219eb55fc50d + 176 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::VectorIntoWasmAbi for u8>::vector_into_abi::hce0cdaf0b1f8b20e + 36 ┊ 0.00% ┊ ⤷ core::mem::forget::heb475f370ced83ef + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::into_bytes::h296b0cff31d93ea3 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for alloc::string::String>::into_abi::{{closure}}>::hee959143fbd90824 + 47 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::unsafe_get_cached_str::h9e7cb4319b67d26a + 526 ┊ 0.01% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::type_::h51c77f8742902e83 + 458 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::h9021de153dc76f2d + 394 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::convert::From<&str>>::from::hc61ada1ec1262734 + 2104 ┊ 0.04% ┊ export "intounderlyingbytesource_pull" + 2071 ┊ 0.04% ┊ ⤷ intounderlyingbytesource_pull + 1845 ┊ 0.04% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::h516d44238969f751 + 496 ┊ 0.01% ┊ ⤷ futures_util::future::abortable::abortable::h4ff714ac3611f472 + 288 ┊ 0.01% ┊ ⤷ futures_util::abortable::Abortable<T>::new::hfdc5e807febc7c7e + 22 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h09f3a9a52b49db4c + 433 ┊ 0.01% ┊ ⤷ futures_util::future::try_future::TryFutureExt::unwrap_or_else::h2c97b13d52d5daeb + 324 ┊ 0.01% ┊ ⤷ futures_util::future::try_future::UnwrapOrElse<Fut,F>::new::h1879922612843062 + 147 ┊ 0.00% ┊ ⤷ futures_util::future::future::Map<Fut,F>::new::h44ac2fb736c577be + 56 ┊ 0.00% ┊ ⤷ futures_util::future::future::map::Map<Fut,F>::new::h5fd0950e3aece2c1 + 22 ┊ 0.00% ┊ ⤷ futures_util::future::try_future::into_future::IntoFuture<Fut>::new::h94cbcfe70c75019b + 21 ┊ 0.00% ┊ ⤷ futures_util::fns::unwrap_or_else_fn::h915b5fa1d1ae3282 + 22 ┊ 0.00% ┊ ⤷ futures_util::future::assert_future::h4af375172aebc644 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h23dec9a49fd30010 + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h8b212a57d465428b + 278 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::future_to_promise::h4db5164ea65fa1a8 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>::he0d2a6d43e9d804e + 2001 ┊ 0.04% ┊ std::collections::hash::map::HashMap<K,V,S>::get::h1d18060ba8a27b3b + 1935 ┊ 0.04% ┊ ⤷ hashbrown::map::HashMap<K,V,S,A>::get::hc27ddc59fc1a459e + 1675 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::get::h410c006936711735 + 1337 ┊ 0.03% ┊ ⤷ hashbrown::raw::RawTable<T,A>::find::h8e52718c3cb1f0a2 + 1988 ┊ 0.04% ┊ reactive_graph::owner::Owner::register::h1b9c205bcec22c79 + 1792 ┊ 0.04% ┊ ⤷ alloc::vec::Vec<T,A>::push::h83091c6ea020213f + 1498 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::h29504b503ff3c30c + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h165504c4a36e3ca7 + 1980 ┊ 0.04% ┊ <alloc::vec::Vec<T,A> as core::clone::Clone>::clone::h9218f98369f905de + 1778 ┊ 0.04% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h1f57b66f9bf65ab8 + 359 ┊ 0.01% ┊ ⤷ <core::iter::adapters::enumerate::Enumerate<I> as core::iter::traits::iterator::Iterator>::next::h617c2f9038ed150a + 262 ┊ 0.01% ┊ ⤷ alloc::vec::Vec<T,A>::spare_capacity_mut::h1bca9ca104500f47 + 1927 ┊ 0.04% ┊ alloc::vec::Vec<T,A>::reserve::h74727348a096c3f3 + 1741 ┊ 0.04% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h2909cf4e577f2289 + 1407 ┊ 0.03% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::grow_amortized::h7cb507d0854d504f + 229 ┊ 0.00% ┊ ⤷ alloc::raw_vec::handle_reserve::h2a6fb856b11f4d48 + 1910 ┊ 0.04% ┊ tachys::view::PositionState::new::h47ff8e4b01e3a72a + 1802 ┊ 0.04% ┊ ⤷ alloc::sync::Arc<T>::new::haa2d0371734a17b5 + 1435 ┊ 0.03% ┊ ⤷ alloc::alloc::exchange_malloc::hb4107d3f834a4a86 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h2550b0156f75a9cc + 1907 ┊ 0.04% ┊ core::sync::atomic::atomic_compare_exchange_weak::hd3f1abc31d8c3a02 + 1907 ┊ 0.04% ┊ core::sync::atomic::atomic_compare_exchange_weak::hc12751c064ceb713 + 1845 ┊ 0.04% ┊ core::ptr::drop_in_place<std::thread::Thread>::hb2376d3bfb0c080d + 1792 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::sync::Arc<std::thread::Inner>>>::h5b35b7b6116d89c5 + 1739 ┊ 0.04% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::thread::Inner>>::hcbc338960c5942c8 + 1686 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hc04eae5aa891a6aa + 1446 ┊ 0.03% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h5146388777fa433b + 686 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::thread::Inner>::h246ff84ebda9f8a3 + 622 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::ffi::c_str::CString>>::h95015a802b020463 + 537 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::ffi::c_str::CString>::hf9d61611c78aede7 + 357 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<[u8]>>::hb9106414c1819a13 + 304 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::he23c57ce25e12dc0 + 122 ┊ 0.00% ┊ ⤷ <alloc::ffi::c_str::CString as core::ops::drop::Drop>::drop::h3b5b5b5f7f203e5a + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::thread::Inner,&alloc::alloc::Global>>::hb882cd7c4f1954a0 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h96554ea63220a7b9 + 1774 ┊ 0.04% ┊ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::insert_node::h3bf10931b0fcf0be + 689 ┊ 0.01% ┊ ⤷ <core::result::Result<T,wasm_bindgen::JsValue> as tachys::UnwrapOrDebug>::ok_or_debug::h238ad269d5aa9eff + 577 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Node::Node::insert_before::haeecf6c0c09e92ac + 147 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for core::option::Option<T>>::into_abi::h30eef9cc4f056b6e + 13 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl wasm_bindgen::convert::traits::OptionIntoWasmAbi for &web_sys::features::gen_Node::Node>::none::h483fd54451a3455b + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_insertBefore_d2a001abf538c1f8 + 181 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::ok::h00ae3f5f8bd2d128 + 1722 ┊ 0.04% ┊ js_sys::<impl core::convert::From<&js_sys::JsString> for alloc::string::String>::from::h9d367eee9acebfad + 1552 ┊ 0.03% ┊ ⤷ wasm_bindgen::UnwrapThrowExt::unwrap_throw::hb159954b91a70d1f + 285 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as wasm_bindgen::UnwrapThrowExt<T>>::expect_throw::h9e8285b714200768 + 250 ┊ 0.01% ┊ ⤷ alloc::fmt::format::ha69465c79a989bb2 + 171 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::ops::deref::Deref>::deref::h9797c2f8f6a84bce + 57 ┊ 0.00% ┊ ⤷ core::panic::location::Location::file::h875d7979ba944aed + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::line::h4941fe605892a603 + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::caller::hb2484f5796020b7b + 38 ┊ 0.00% ┊ ⤷ core::panic::location::Location::column::hcfd18059d3acbafe + 84 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::as_string::hf79d6e1737b69e3a + 1612 ┊ 0.03% ┊ core::char::methods::encode_utf8_raw::h20eebac2a2c03b09 + 1612 ┊ 0.03% ┊ core::char::methods::encode_utf8_raw::h9fbe134c5f4ab878 + 1596 ┊ 0.03% ┊ parking_lot_core::word_lock::WordLock::unlock_slow::h2bb0a976008011c5 + 358 ┊ 0.01% ┊ ⤷ parking_lot_core::word_lock::fence_acquire::he58465d19b551de8 + 234 ┊ 0.00% ┊ ⤷ core::sync::atomic::fence::h61262e165144dcc4 + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_and::hd8c7b87e3d4769f3 + 45 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::get::hb481a97c366bed68 + 1587 ┊ 0.03% ┊ <alloc::alloc::Global as core::alloc::Allocator>::shrink::ha1040fcad8ccd4e3 + 1581 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<reactive_graph::graph::subscriber::AnySubscriber>>::h3eca7d488442c091 + 1528 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::h622a1fd6e79ef237 + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h4b68131e24fc8c66 + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h6aece87d38fe94ca + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::hed5284ce6c3d65e3 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<reactive_graph::graph::subscriber::AnySubscriber,alloc::alloc::Global>>::h2c3eaaac3d4b48a5 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h77b13f9674837125 + 1581 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>>>::h5622ba8ae2c3e78e + 1528 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::habca62f04f64cb31 + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h1eaa09f808bc3f6a + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h0e75e49c51683ff4 + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h764132bef156cdfd + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>,alloc::alloc::Global>>::h770feb8a1a6bcca5 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::he0e552e43d1f1513 + 1575 ┊ 0.03% ┊ core::str::<impl str>::trim_start_matches::h6fe1f3cd0c007304 + 1227 ┊ 0.02% ┊ ⤷ core::str::pattern::Searcher::next_reject::h7c7049a16fe8d53a + 1025 ┊ 0.02% ┊ ⤷ <core::str::pattern::CharSearcher as core::str::pattern::Searcher>::next::h529df308c3e23282 + 1572 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::vec::into_iter::IntoIter<reactive_graph::owner::arena::NodeId>>::haada5d59155d6d37 + 1519 ┊ 0.03% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::hf27269d16232a508 + 1121 ┊ 0.02% ┊ ⤷ alloc::vec::into_iter::IntoIter<T,A>::as_raw_mut_slice::h916a175f3c6bbe75 + 935 ┊ 0.02% ┊ ⤷ core::iter::traits::exact_size::ExactSizeIterator::len::h1b5a9ed2eede1649 + 339 ┊ 0.01% ┊ ⤷ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::size_hint::h5ff3283210f3e010 + 297 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<reactive_graph::owner::arena::NodeId,alloc::alloc::Global>>::hba9dc0afb7808cd3 + 244 ┊ 0.00% ┊ ⤷ <<alloc::vec::into_iter::IntoIter<T,A> as core::ops::drop::Drop>::drop::DropGuard<T,A> as core::ops::drop::Drop>::drop::h8679f38ff83d268e + 1563 ┊ 0.03% ┊ tachys::view::strings::<impl tachys::view::RenderHtml<R> for &str>::hydrate::h58a9e17c905abf68 + 1045 ┊ 0.02% ┊ ⤷ tachys::renderer::dom::<impl tachys::renderer::CastFrom<web_sys::features::gen_Node::Node> for web_sys::features::gen_Text::Text>::cast_from::hb93d55aee516dbee + 602 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h7bcd34d567ff4695 + 288 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h0466ed48924eded5 + 213 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::hc7f86b308057c974 + 145 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Text::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Text::Text>::instanceof::h1bb7c0a8514c38fa + 45 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Text_fb020c64d2c40445 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h8e14e3bc0afc33cc + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Text::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Text::Text>::unchecked_from_js::h8796db12dc2b9d2c + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::h8485e9b950564825 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Text::Text,web_sys::features::gen_Node::Node>>::h4f6ede22c8612a6b + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h8c3df98e0c6e80a9 + 1538 ┊ 0.03% ┊ <once_cell::sync::Lazy<T,F> as core::ops::deref::Deref>::deref::h0c914455ebf298b1 + 1481 ┊ 0.03% ┊ ⤷ once_cell::sync::Lazy<T,F>::force::h7a2a37140623112e + 1408 ┊ 0.03% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_init::h3832ab27fd2d9c13 + 1283 ┊ 0.03% ┊ ⤷ once_cell::sync::OnceCell<T>::get_or_try_init::h20e9f0e741427dbc + 395 ┊ 0.01% ┊ ⤷ once_cell::sync::OnceCell<T>::get_unchecked::h5be72cc1b424566c + 338 ┊ 0.01% ┊ ⤷ once_cell::imp::OnceCell<T>::get_unchecked::hbb5d460fa8e841bf + 132 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h761ff55ef51c24c0 + 45 ┊ 0.00% ┊ ⤷ core::option::Option<T>::unwrap_unchecked::hc62694445f6f491b + 213 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::initialize::h0ce5ebffbeaddf2e + 118 ┊ 0.00% ┊ ⤷ once_cell::imp::OnceCell<T>::is_initialized::hd73f678309f9e5f6 + 112 ┊ 0.00% ┊ ⤷ once_cell::sync::OnceCell<T>::get::hab4987be58832abd + 49 ┊ 0.00% ┊ ⤷ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h9f28da24ffaf0149 + 21 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h0b1f12908f9531d0 + 1534 ┊ 0.03% ┊ core::mem::swap::hacf29e0a7661acb5 + 1208 ┊ 0.02% ┊ ⤷ core::ptr::swap_nonoverlapping::h5bc01e4a521eb961 + 1484 ┊ 0.03% ┊ core::ptr::drop_in_place<leptos::text_prop::TextProp>::h92a1c7d7bad69ecb + 1431 ┊ 0.03% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<()>+Output = oco::Oco<str>+core::marker::Sync+core::marker::Send>>::haad87ae24217229d + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hbf3b35726293d26b + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h99b7e7bf17813899 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<()>+Output = oco::Oco<str>+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::ha6b1549280636558 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h879a5a511ae84c87 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<()>+Output = oco::Oco<str>+core::marker::Sync+core::marker::Send>::hbd5ce936a5c53b20 + 1458 ┊ 0.03% ┊ reactive_graph::channel::channel::hcad436ed919db8aa + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::hc273f4400934b089 + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h8f530dd0f00c64be + 74 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::new::h8bd23eb5089f02ca + 1435 ┊ 0.03% ┊ alloc::alloc::exchange_malloc::h1e721464f3626326 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h4a1f1ac36e164e76 + 1435 ┊ 0.03% ┊ alloc::alloc::exchange_malloc::hede37a888f7ced88 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::h90011de444751cc7 + 1435 ┊ 0.03% ┊ alloc::alloc::exchange_malloc::h05d677602f0ccf52 + 1172 ┊ 0.02% ┊ ⤷ alloc::alloc::Global::alloc_impl::hf5f7a2fba82fec67 + 1431 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&alloc::string::String>,)>+Output = alloc::string::String+core::marker::Sync+core::marker::Send>>::hbf780cc8f8489576 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::ha8e321d0ccc97688 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h6b3145e32714bc0a + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&alloc::string::String>,)>+Output = alloc::string::String+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::h04dff7bd2181239c + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hddf298b27133b302 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&alloc::string::String>,)>+Output = alloc::string::String+core::marker::Sync+core::marker::Send>::h644bcc69960d4880 + 1431 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<dyn core::ops::function::Fn<(core::option::Option<&routing::params::ParamsMap>,)>+Output = routing::params::ParamsMap+core::marker::Sync+core::marker::Send>>::hdb615d8f5d3a41b1 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h391cf016af7aa5e8 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hc003caacc5deb102 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn core::ops::function::Fn<(core::option::Option<&routing::params::ParamsMap>,)>+Output = routing::params::ParamsMap+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::hda377433a8a60078 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h4a3f06d82f23f469 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn core::ops::function::Fn<(core::option::Option<&routing::params::ParamsMap>,)>+Output = routing::params::ParamsMap+core::marker::Sync+core::marker::Send>::hdfbe6f9352366a7d + 1431 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<dyn hydration_context::SharedContext+core::marker::Sync+core::marker::Send>>::h64ed20103f5ec6d1 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hf5fee5e5d84056c1 + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h1b014d20f0744652 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn hydration_context::SharedContext+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::h9b2ff13541735969 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h26ee1802e823d4bb + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn hydration_context::SharedContext+core::marker::Sync+core::marker::Send>::hc45390d88de41fdb + 1431 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<dyn reactive_graph::graph::source::Source+core::marker::Sync+core::marker::Send>>::h2ca315bde03ab0e6 + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h6b340150b75e5f8e + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hb7802b2856088e7b + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn reactive_graph::graph::source::Source+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::ha0b4bd51318513c7 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h027864c3b2689c2f + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn reactive_graph::graph::source::Source+core::marker::Sync+core::marker::Send>::h1d26e291d4e92a63 + 1431 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<dyn reactive_graph::graph::subscriber::Subscriber+core::marker::Sync+core::marker::Send>>::h100f4ebc9c92d3eb + 1378 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hf9951194d9e1696b + 1115 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hd6470ae9183827d2 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn reactive_graph::graph::subscriber::Subscriber+core::marker::Sync+core::marker::Send,&alloc::alloc::Global>>::hac8364c459ce135f + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hbf10ba7a4f989ec4 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<dyn reactive_graph::graph::subscriber::Subscriber+core::marker::Sync+core::marker::Send>::hfdcee522d7cb8ca1 + 1403 ┊ 0.03% ┊ alloc::raw_vec::RawVec<T,A>::grow_amortized::haac801c7a137d4a6 + 1397 ┊ 0.03% ┊ tachys::hydration::Cursor<R>::next_placeholder::h495692dba33761cc + 1048 ┊ 0.02% ┊ ⤷ tachys::renderer::dom::<impl tachys::renderer::CastFrom<web_sys::features::gen_Node::Node> for web_sys::features::gen_Comment::Comment>::cast_from::h1dcafdcb28ccef52 + 605 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::h09cd346a3d0016e1 + 291 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::h83641ee9fc5b1310 + 216 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::haaace599f47a2771 + 148 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Comment::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Comment::Comment>::instanceof::he81f03475bf6d5b5 + 48 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Comment_97550c61a98faf76 + 135 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_into::h191e575cd43e4666 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Comment::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Comment::Comment>::unchecked_from_js::h6f702bc1090f5e34 + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::hadca9a22afb31364 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Comment::Comment,web_sys::features::gen_Node::Node>>::h2690d9b3bb39b951 + 109 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::hdef9de088bf4e7e0 + 1394 ┊ 0.03% ┊ reactive_graph::graph::subscriber::Observer::is::he9b5c05da66b407c + 1303 ┊ 0.03% ┊ ⤷ std::thread::local::LocalKey<T>::with::h8008fd39f37057c2 + 1035 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h27e599a9eaf860e1 + 691 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::Observer::is::{{closure}}::hda79d964155207fe + 370 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::ha173f4e99b78846e + 293 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h834f931482a35b39 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::hdcb29435cb18a6b6 + 1384 ┊ 0.03% ┊ alloc::raw_vec::RawVec<T,A>::allocate_in::he235f5fb0597e4eb + 344 ┊ 0.01% ┊ ⤷ core::alloc::layout::Layout::array::inner::hdbf4bc2e92ddc219 + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h2f018d9247450342 + 1378 ┊ 0.03% ┊ core::str::validations::next_code_point::h1bdb4db8a1b058e9 + 545 ┊ 0.01% ┊ ⤷ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h4575beef926843f0 + 1331 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::boxed::Box<std::sync::mpmc::counter::Counter<std::sync::mpmc::list::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::haef8e50cc3f429ea + 999 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::counter::Counter<std::sync::mpmc::list::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h62cb9dbcf5440b6f + 946 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::list::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h9f6acbeeab2a64d9 + 876 ┊ 0.02% ┊ ⤷ <std::sync::mpmc::list::Channel<T> as core::ops::drop::Drop>::drop::h373f05aac7aed317 + 267 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hc8e69e9a569c88c7 + 1320 ┊ 0.03% ┊ export "intounderlyingsink_write" + 1292 ┊ 0.03% ┊ ⤷ intounderlyingsink_write + 933 ┊ 0.02% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::h3953fac40128df07 + 482 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::future_to_promise::hd0bfbd8fead22b2c + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}>>::hfc8cfbe75336b051 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::hb0aa94c2cd612786 + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::h699101cd6fea9fc1 + 95 ┊ 0.00% ┊ ⤷ <wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink as wasm_bindgen::convert::traits::RefMutFromWasmAbi>::ref_mut_from_abi::h6319630f5f03a0d2 + 38 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::ha71232211b5de933 + 1320 ┊ 0.03% ┊ slotmap::basic::SlotMap<K,V>::remove::h09fb2d30b9d25874 + 634 ┊ 0.01% ┊ ⤷ slotmap::basic::SlotMap<K,V>::contains_key::h04d2888159a27e00 + 396 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map_or::h226bcb7e0d92a15c + 111 ┊ 0.00% ┊ ⤷ slotmap::basic::SlotMap<K,V>::contains_key::{{closure}}::ha35f6e0a47d38c0c + 145 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::get_unchecked_mut::h9e0d1f61e6d8a8d6 + 70 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::h5609d06574bfaa7c + 64 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::take::he938ab16b0f9ba37 + 1316 ┊ 0.03% ┊ parking_lot_core::parking_lot::FairTimeout::should_timeout::h31abf6b7d63ce15a + 563 ┊ 0.01% ┊ ⤷ core::time::Duration::new::h779a8c72965015f4 + 346 ┊ 0.01% ┊ ⤷ core::cmp::PartialOrd::gt::h0d9f9dc6e5645e88 + 70 ┊ 0.00% ┊ ⤷ <parking_lot_core::parking_lot::TimeoutInstant as core::cmp::PartialOrd>::partial_cmp::h4970262edf1cc20c + 156 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::FairTimeout::gen_u32::h4c17d34f6878b510 + 36 ┊ 0.00% ┊ ⤷ <parking_lot_core::parking_lot::TimeoutInstant as core::ops::arith::Add<core::time::Duration>>::add::h4a2b097fbed61368 + 1299 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<futures_util::abortable::AbortInner>>::h6d442aae1a369f5d + 1246 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h8b39085197aa58c0 + 1006 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h7d183a90d2415d24 + 728 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<futures_util::abortable::AbortInner,&alloc::alloc::Global>>::hc2aee0a26ec44ddc + 675 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hb4784e31c0443944 + 87 ┊ 0.00% ┊ ⤷ <&A as core::alloc::Allocator>::deallocate::h0e986e1cb910c6f2 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::abortable::AbortInner>::h65e6216577762259 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_core::task::__internal::atomic_waker::AtomicWaker>::hce21a4874832d1a1 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<core::task::wake::Waker>>>::h56046aa263b485ff + 1298 ┊ 0.03% ┊ reactive_graph::graph::subscriber::Observer::replace::hfa8f8bf6020fb303 + 1189 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h52e8e605d55161c9 + 947 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h228bcaa410fcef70 + 409 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::Observer::replace::{{closure}}::hc3f4ba6a889571b0 + 123 ┊ 0.00% ┊ ⤷ core::mem::replace::h8db47fb965c873b9 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::graph::subscriber::Observer::replace::{{closure}}>::h1a03a2ab971d21b1 + 1295 ┊ 0.03% ┊ core::str::slice_error_fail::h37edf3bde95d9b91 + 1277 ┊ 0.03% ┊ ⤷ core::str::slice_error_fail_rt::h91bee75a4bf13f5a + 1285 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::mutex::Mutex<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>>::h7b1d61f7eea00064 + 1232 ┊ 0.03% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h2af25705d0589dc6 + 992 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h8595b8281a2788d5 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::mutex::Mutex<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>,&alloc::alloc::Global>>::h6af86796782fa4ef + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hff84328bae0b5b0f + 232 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mutex::Mutex<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::h49d638545cfb9b6f + 168 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::haef5ebad2c9653aa + 115 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h79c874c4e9699b73 + 1265 ┊ 0.03% ┊ core::ptr::drop_in_place<alloc::sync::Arc<once_cell::sync::Lazy<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>>::haff50d3a5c048c16 + 1212 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hb1d04c64eebe5681 + 972 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hdff069cc0796223a + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<once_cell::sync::Lazy<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>,&alloc::alloc::Global>>::ha5e8108b22983ea4 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hebec25194185a6c6 + 212 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::sync::Lazy<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>::hd70d9371dd22f095 + 159 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::sync::OnceCell<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>::hb9a4dd8d54207d82 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<once_cell::imp::OnceCell<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>::h71167f36edc6264a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>>::hdc847f1089ac18e6 + 1245 ┊ 0.03% ┊ futures_core::task::__internal::atomic_waker::AtomicWaker::wake::hdb1350b1168f3094 + 915 ┊ 0.02% ┊ ⤷ futures_core::task::__internal::atomic_waker::AtomicWaker::take::hb3a10b9c42c220fa + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_or::ha656a9063162cdde + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_and::he9641e33f2071c86 + 1237 ┊ 0.03% ┊ core::mem::swap::h90043ec16fbb9ba3 + 1057 ┊ 0.02% ┊ ⤷ core::ptr::swap_nonoverlapping::he6c64a662eeaf8e7 + 1217 ┊ 0.02% ┊ core::sync::atomic::AtomicUsize::fetch_update::h2b34d50b7c793e81 + 792 ┊ 0.02% ┊ ⤷ core::ops::function::FnMut::call_mut::h70472df9274b64d3 + 695 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::checked_increment::h92632ec0735d00d2 + 503 ┊ 0.01% ┊ ⤷ alloc::sync::Weak<T,A>::upgrade::checked_increment::panic_cold_display::he9a64930b4144c5f + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hfc27eb1c38e1e73d + 1202 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<str>>::h44e095621cae683e + 1149 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h719a40c4f77f7613 + 886 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h175048dc10fdc43e + 743 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<str,&alloc::alloc::Global>>::h37a081c5623de1df + 690 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h43efc88943532ba0 + 1182 ┊ 0.02% ┊ reactive_graph::owner::Owner::current_shared_context::h73489c1dd1c9c56b + 1088 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h3aff96d0bb1a677a + 869 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h09935933a635983a + 509 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::current_shared_context::{{closure}}::hb60794522a4cd0ff + 329 ┊ 0.01% ┊ ⤷ core::option::Option<T>::and_then::h9c1690a8a733173b + 94 ┊ 0.00% ┊ ⤷ reactive_graph::owner::Owner::current_shared_context::{{closure}}::{{closure}}::h1e3985a5abbd1211 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h7c3197c9d3b8792c + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::ha89964f163ac6211 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h85f1aed96fa83444 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::hbda0acc778f0b847 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h3beb31248dfb032e + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h554f66808a0594b4 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h5a47dfcbe2ca6269 + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h82c9f5ec622af55b + 1172 ┊ 0.02% ┊ alloc::alloc::Global::alloc_impl::h778cea1a04669faf + 1171 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<routing::location::Url>>>::h30d9fad633746225 + 1118 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hea3c3a3e3437befc + 878 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::ha0ef28b7333c02c3 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<routing::location::Url>,&alloc::alloc::Global>>::h22ec4b1f4396c26f + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::ha089afb3cefda900 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<routing::location::Url>>::h5c0b575e22a3660a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<routing::location::Url>>::haeefaf23daa4e5e3 + 1170 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<routing::location::State>>>::h4a1bdd9c01b8b7f9 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hefcd5dd7d0d69c65 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h7f5fcbcdac1a6cdc + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<routing::location::State>,&alloc::alloc::Global>>::hc6a2ab940b3ebee8 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h4918d27e82b4c519 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<routing::location::State>>::h5916c0b7041d97b6 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<routing::location::State>>::h2ab7b52eb2bafcf7 + 1170 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<routing::params::ParamsMap>>>::h82a3522321739d8f + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h6b095eff4ca71f2d + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h58dbec387d20002d + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<routing::params::ParamsMap>,&alloc::alloc::Global>>::hd519b5248594177f + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h9f16e11977f07040 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<routing::params::ParamsMap>>::h81a493039dbce069 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<routing::params::ParamsMap>>::h239bf788bb0e285c + 1170 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>>>::hb31c04769ba330f5 + 1117 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h540ef1d27a5f5230 + 877 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hba2e4a5c8bf1b82e + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>,&alloc::alloc::Global>>::h48b18e74e790bdec + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hc91d62748c44516a + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLock<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>>::h0263c44d5063f92d + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>>::he5f43f292ee0466a + 1162 ┊ 0.02% ┊ alloc::raw_vec::RawVec<T,A>::allocate_in::hf808761981d0f1bc + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h060d8602c3872cff + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h7b2f22ff4d05d89f + 1159 ┊ 0.02% ┊ core::ptr::drop_in_place<std::sync::mpmc::context::Context>::h4ebe3694ba63a79d + 1106 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::mpmc::context::Inner>>::hdc5cd28caef2d422 + 1053 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hee6bd88f712eb5d0 + 813 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h7f91feb91561196c + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::mpmc::context::Inner,&alloc::alloc::Global>>::h93bb60747a23c01b + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hebac9bf637999a66 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::context::Inner>::h832627c670543571 + 1119 ┊ 0.02% ┊ futures_util::abortable::AbortHandle::new_pair::h9865e93d8775a6aa + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::h717f72484efb8193 + 307 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hd10cda351688f8f7 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::hcb5c25b39661de12 + 74 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicBool::new::h5df38aa94883f99c + 1118 ┊ 0.02% ┊ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<routing::params::ParamsMap>>::h46bd2e2301832013 + 1054 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>>::hed5fe4d9caeaaa1d + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hd583bd657bdef159 + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::had40e2071eb02445 + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>,&alloc::alloc::Global>>::h33467eac1a984733 + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h6d7c9053f5a5b4d8 + 1112 ┊ 0.02% ┊ reactive_graph::owner::Owner::current::h3d03c0af36a5e67b + 1091 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::h7b8ec79ac0f49d5c + 851 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h32c79da6a78dc393 + 445 ┊ 0.01% ┊ ⤷ reactive_graph::owner::Owner::current::{{closure}}::heb85060d58c1ff34 + 292 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::clone::Clone>::clone::h21142d5a1bab7414 + 108 ┊ 0.00% ┊ ⤷ <reactive_graph::owner::Owner as core::clone::Clone>::clone::hb29b22ce9555a524 + 1101 ┊ 0.02% ┊ reactive_graph::graph::subscriber::Observer::get::h969bbcba54d34a51 + 1080 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hcebe3ea2cd2b4268 + 840 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h239d917dcb1593ec + 434 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::Observer::get::{{closure}}::hf187f8730e5da41b + 281 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::clone::Clone>::clone::hefc013454e81fe1c + 97 ┊ 0.00% ┊ ⤷ <reactive_graph::graph::subscriber::AnySubscriber as core::clone::Clone>::clone::h2aa6e5ec6226bfcb + 1096 ┊ 0.02% ┊ std::sync::mutex::Mutex<T>::lock::h75d86c695c090d0d + 558 ┊ 0.01% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::hb097750f645df2f2 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h028f9d0acba215df + 96 ┊ 0.00% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::{{closure}}::hd15389e41799a577 + 1096 ┊ 0.02% ┊ std::sync::mutex::Mutex<T>::lock::hea522654dc45ee9b + 558 ┊ 0.01% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::h6933a149567d4111 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hc410497ebd523b6a + 96 ┊ 0.00% ┊ ⤷ std::sync::mutex::MutexGuard<T>::new::{{closure}}::hb2676dc1ba3a2fb9 + 1094 ┊ 0.02% ┊ core::ptr::drop_in_place<core::result::Result<(),std::io::error::Error>>::h1b374cda7a7e26ee + 962 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Error>::hc0694b69c66098fc + 909 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::repr_unpacked::Repr>::h209035e56dbb65e7 + 856 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<std::io::error::ErrorData<alloc::boxed::Box<std::io::error::Custom>>>::h8b35fb02382e12b0 + 767 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<std::io::error::Custom>>::h685806ec2a8c668e + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::io::error::Custom>::h8663c60b8c5d2f5b + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::error::Error+core::marker::Sync+core::marker::Send>>::h5f23bdcf4f1ac066 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hce25dd14cdf20fa9 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hea7e113dc5cf2b16 + 1090 ┊ 0.02% ┊ core::ptr::drop_in_place<tachys::view::PositionState>::h8bec5732bbef3203 + 1037 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Arc<lock_api::rwlock::RwLock<parking_lot::raw_rwlock::RawRwLock,tachys::view::Position>>>::h34f0055563383216 + 984 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::hf90a8f8a9da1e719 + 744 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::hf33635fa8f364033 + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<lock_api::rwlock::RwLock<parking_lot::raw_rwlock::RawRwLock,tachys::view::Position>,&alloc::alloc::Global>>::ha8b5cb31fc2b0d35 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hd68e88914aeaae9b + 1086 ┊ 0.02% ┊ hashbrown::raw::TableLayout::calculate_layout_for::hfe1aa86a0e4e45d9 + 1054 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>>::hecdc76744c4fc078 + 1001 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h7f89a3c0a890d1b7 + 761 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h902b516543c440ad + 642 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<alloc::string::String>>,&alloc::alloc::Global>>::hddc6b33f328c09ad + 589 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::hf803577f67d6c287 + 1053 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>>::h9152c2320089a480 + 1000 ┊ 0.02% ┊ ⤷ <alloc::sync::Arc<T,A> as core::ops::drop::Drop>::drop::h7f269b416a16f550 + 760 ┊ 0.02% ┊ ⤷ alloc::sync::Arc<T,A>::drop_slow::h16509f3247c24b2a + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>,&alloc::alloc::Global>>::h03b1977b4cfc01a0 + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h39d4776693b136c4 + 1040 ┊ 0.02% ┊ alloc::raw_vec::RawVec<T,A>::allocate_in::h4c5a7ab7464dfccd + 118 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h263385515709408a + 1032 ┊ 0.02% ┊ core::str::traits::<impl core::ops::index::Index<I> for str>::index::he87d83d8e77be7af + 909 ┊ 0.02% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::index::h931d8c6eab3d7619 + 697 ┊ 0.01% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::Range<usize>>::get::h2034d462effc8829 + 341 ┊ 0.01% ┊ ⤷ core::str::<impl str>::is_char_boundary::hc0c5ad8a344672ed + 1026 ┊ 0.02% ┊ std::sync::mpmc::utils::Backoff::spin_light::h5f30b70bb835b7f5 + 565 ┊ 0.01% ┊ ⤷ core::cmp::min_by::h2842ca99cc552aea + 269 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h170e04d022de73c0 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for u32>::cmp::h15a0f8924b1b6ea2 + 1018 ┊ 0.02% ┊ reactive_graph::graph::subscriber::Observer::set::h0e5137b6b1cf583e + 911 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hbab374ff1f141cae + 729 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hcaef4939ba22af50 + 256 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::Observer::set::{{closure}}::hd952a31986a79a5b + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::graph::subscriber::Observer::set::{{closure}}>::had6634f0ea34aab2 + 1015 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::vec::Vec<tachys::html::attribute::any_attribute::AnyAttribute<tachys::renderer::dom::Dom>>>::he868e73c5d3de8af + 576 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<tachys::html::attribute::any_attribute::AnyAttribute<tachys::renderer::dom::Dom>>>::h46dc9600db73ab29 + 523 ┊ 0.01% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h7af2da652de0d878 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h62573e38c3cff1d0 + 381 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h381185abe7cc0965 + 220 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[tachys::html::attribute::any_attribute::AnyAttribute<tachys::renderer::dom::Dom>]>::he6ee990ed6249d7c + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::html::attribute::any_attribute::AnyAttribute<tachys::renderer::dom::Dom>>::h1fac5dcecf497e18 + 990 ┊ 0.02% ┊ core::ptr::swap_nonoverlapping::h02c464238776c9ba + 982 ┊ 0.02% ┊ std::sync::mpmc::waker::SyncWaker::notify::h6b0e5bceefabcc84 + 979 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<wasm_streams::readable::into_underlying_byte_source::Inner>>>::hef650e1275f29dbe + 926 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h4b550a8149eed8cb + 186 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<wasm_streams::readable::into_underlying_byte_source::Inner>>::h392fab1cb04911b3 + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<wasm_streams::readable::into_underlying_byte_source::Inner>>::h245c533da7f27a8a + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_byte_source::Inner>::hb022a3835f5533b1 + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::h177ba0d5361f3d52 + 963 ┊ 0.02% ┊ core::ptr::drop_in_place<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>::hcfe6e17ca42f92a7 + 910 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<web_sys::features::gen_Node::Node>>>::h3242b659a66cf476 + 857 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h5d7c35fd5d68dab4 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<web_sys::features::gen_Node::Node>>::hcf31c36e9de4b580 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<web_sys::features::gen_Node::Node>>::h3f335e98e9fb63d0 + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::he27644b38dec4b2c + 963 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<wasm_streams::writable::into_underlying_sink::Inner>>>::h71973f93a445181e + 910 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::h48fe70e89d4fc59d + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<wasm_streams::writable::into_underlying_sink::Inner>>::h89c2d5cf356bd967 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<wasm_streams::writable::into_underlying_sink::Inner>>::h39731b7bfd62c6d5 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::Inner>::h097c2e36adc4ee4a + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::h2f28d0d20e934296 + 963 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::rc::Rc<core::cell::RefCell<wasm_streams::readable::into_underlying_source::Inner>>>::h9b727e1d29800f7f + 910 ┊ 0.02% ┊ ⤷ <alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop::hbc1f8f5d816b5085 + 170 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::RefCell<wasm_streams::readable::into_underlying_source::Inner>>::h04207e171a0f36e4 + 106 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<wasm_streams::readable::into_underlying_source::Inner>>::h012ea94707d9d24a + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_source::Inner>::h0ac66d776cb57a36 + 70 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::weak::h9883c1d9dd87fd17 + 955 ┊ 0.02% ┊ reactive_graph::graph::subscriber::Observer::take::h1c432a9da0850b75 + 934 ┊ 0.02% ┊ ⤷ std::thread::local::LocalKey<T>::with::hac96c17a51c43739 + 694 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h71e6a9881ce23b53 + 288 ┊ 0.01% ┊ ⤷ reactive_graph::graph::subscriber::Observer::take::{{closure}}::hea02d6c2f117a18f + 135 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h37ab3f11bfda3f58 + 954 ┊ 0.02% ┊ reactive_graph::traits::panic_getting_disposed_signal::h9abdfdf318345a57 + 250 ┊ 0.01% ┊ ⤷ alloc::fmt::format::h673c0be474eee254 + 948 ┊ 0.02% ┊ reactive_graph::owner::context::provide_context::h3471401ac6795de9 + 425 ┊ 0.01% ┊ ⤷ reactive_graph::owner::context::<impl reactive_graph::owner::Owner>::provide_context::hd5aa38a896f5b48a + 945 ┊ 0.02% ┊ <wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource as wasm_bindgen::convert::traits::FromWasmAbi>::from_abi::h51d88eea28aff04d + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hab488f591d7abd8d + 236 ┊ 0.00% ┊ ⤷ wasm_bindgen::__rt::WasmRefCell<T>::into_inner::h0450cd09b8e9ab03 + 73 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::hb505d62fbf433f44 + 926 ┊ 0.02% ┊ alloc::raw_vec::RawVec<T,A>::allocate_in::hf927bf8474370157 + 919 ┊ 0.02% ┊ core::option::Option<T>::map_or_else::hdc385ebeb32904b2 + 472 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h4d852f0cbfde72fb + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::hd87ad8cd62593754 + 180 ┊ 0.00% ┊ ⤷ alloc::fmt::format::{{closure}}::habb36a3991224a69 + 919 ┊ 0.02% ┊ core::option::Option<T>::map_or_else::hea8ab3b8301fb8d4 + 472 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::h9d1bc8851bbee632 + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::hc15e045927660820 + 180 ┊ 0.00% ┊ ⤷ alloc::fmt::format::{{closure}}::h19a3bd519197cd76 + 913 ┊ 0.02% ┊ tachys::renderer::dom::<impl tachys::renderer::CastFrom<web_sys::features::gen_Node::Node> for web_sys::features::gen_Element::Element>::cast_from::hf2c77a3f14a62576 + 470 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::dyn_into::hcd189802b71018d7 + 291 ┊ 0.01% ┊ ⤷ wasm_bindgen::cast::JsCast::has_type::hcf7a85a642322f5e + 216 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::is_type_of::hb33df6d62a240ebf + 148 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Element::Element>::instanceof::hfba5135fafba28df + 48 ┊ 0.00% ┊ ⤷ import wbg::__wbg_instanceof_Element_6945fc210db80ea9 + 280 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::ok::he825e9a30764d631 + 99 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Element::Element,web_sys::features::gen_Node::Node>>::h4160b4fceaf3fd51 + 902 ┊ 0.02% ┊ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::h381f5d6d125e1175 + 902 ┊ 0.02% ┊ core::ptr::drop_in_place<reactive_graph::graph::subscriber::AnySubscriber>::hd1f4d4631c3931e6 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn reactive_graph::graph::subscriber::Subscriber+core::marker::Sync+core::marker::Send>>::h421338361e882d2b + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h8b44db150206c563 + 902 ┊ 0.02% ┊ core::ptr::drop_in_place<reactive_graph::graph::source::AnySource>::hdfe1216a66645b23 + 849 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<dyn reactive_graph::graph::source::Source+core::marker::Sync+core::marker::Send>>::h7d718614aad353c2 + 796 ┊ 0.02% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h00dfc5bce8fa2ebc + 876 ┊ 0.02% ┊ <T as core::convert::Into<U>>::into::hc96bbbb39d9ed771 + 784 ┊ 0.02% ┊ ⤷ <leptos::text_prop::TextProp as core::convert::From<&str>>::from::hae4fbbffd14798cb + 442 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T>::new::heca5ba237ffb2f9b + 129 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::hc394e460fd5d560d + 65 ┊ 0.00% ┊ ⤷ <oco::Oco<T> as core::convert::From<&T>>::from::h3524babce7714ad8 + 870 ┊ 0.02% ┊ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::FromWasmAbi for alloc::vec::Vec<T>>::from_abi::he476f876e28e4911 + 504 ┊ 0.01% ┊ ⤷ <T as core::convert::Into<U>>::into::h778f29be733f5b9d + 440 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::convert::From<alloc::boxed::Box<[T],A>>>::from::hfebbb3a802886b9e + 376 ┊ 0.01% ┊ ⤷ alloc::slice::hack::into_vec::h7d0152dcd68dc2ad + 279 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::FromWasmAbi for alloc::boxed::Box<[T]>>::from_abi::h0f1945c164a5873f + 187 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::VectorFromWasmAbi for u8>::vector_from_abi::h33b110d94d9b9549 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for *mut T>::from_abi::h3ed225ad06a296b8 + 866 ┊ 0.02% ┊ <alloc::borrow::Cow<B> as core::clone::Clone>::clone::h453e80c35e0c3acb + 394 ┊ 0.01% ┊ ⤷ alloc::str::<impl alloc::borrow::ToOwned for str>::to_owned::h553e7a109b546283 + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::hfc6f1282e4826fc6 + 865 ┊ 0.02% ┊ tachys::hydration::Cursor<R>::current::hbb72b4c4cabc4b79 + 541 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::borrow::h9bd084a625894321 + 378 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow::h8a16a7445068dc61 + 64 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::Ref<web_sys::features::gen_Node::Node>>::h3158dbd24311ee45 + 59 ┊ 0.00% ┊ ⤷ <core::cell::Ref<T> as core::ops::deref::Deref>::deref::hd2dc938296cf0e21 + 862 ┊ 0.02% ┊ core::sync::atomic::atomic_load::ha5dfb2eca58720ee + 236 ┊ 0.00% ┊ ⤷ core::fmt::Arguments::new_const::h1d7ae6b12beae148 + 841 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::boxed::Box<std::sync::mpmc::counter::Counter<std::sync::mpmc::array::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::hf895124ce48e9f5e + 509 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::counter::Counter<std::sync::mpmc::array::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h20826306d5290da6 + 456 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::array::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h51e579dffda3bd15 + 357 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<[std::sync::mpmc::array::Slot<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>]>>::h524701291be4e322 + 304 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h53e29aef3f2bb812 + 267 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h16b794ae0df48b1d + 833 ┊ 0.02% ┊ core::str::validations::next_code_point::h322a49f975a82378 + 819 ┊ 0.02% ┊ <core::result::Result<T,wasm_bindgen::JsValue> as tachys::UnwrapOrDebug>::or_debug::h068cfc0f6d1264fa + 818 ┊ 0.02% ┊ alloc::sync::Arc<T>::new::hdec715e1fad6af60 + 813 ┊ 0.02% ┊ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::set_attribute::ha0fad6ffd6f96721 + 566 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Element::Element::set_attribute::he0de2b0514e20963 + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_setAttribute_3c9f6c303b696daa + 809 ┊ 0.02% ┊ futures_util::abortable::AbortHandle::abort::h5096dbf531b1856e + 689 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicBool::store::hfe842bf3396fc67f + 603 ┊ 0.01% ┊ ⤷ core::sync::atomic::atomic_store::hc8d8b4f36af16bba + 807 ┊ 0.02% ┊ core::ptr::drop_in_place<alloc::string::String>::he35c99a07f46f9cd + 754 ┊ 0.02% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::hca3544a03484b601 + 576 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::h241e5da938c2dee3 + 523 ┊ 0.01% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hef2553eaef1076b7 + 326 ┊ 0.01% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::current_memory::h79e22efc946825ce + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h0c14990db7cb9515 + 800 ┊ 0.02% ┊ alloc::raw_vec::handle_reserve::h37a199ad1cabf0ff + 571 ┊ 0.01% ┊ ⤷ core::result::Result<T,E>::map_err::hbfadfbb1620db1b5 + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::h7c5f57b08dd1abc9 + 792 ┊ 0.02% ┊ reactive_graph::effect::inner::<impl reactive_graph::graph::subscriber::ToAnySubscriber for alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::effect::inner::EffectInner>>>::to_any_subscriber::hb74068673997ebae + 639 ┊ 0.01% ┊ ⤷ alloc::sync::Arc<T,A>::downgrade::h91ee1b086cac66a3 + 63 ┊ 0.00% ┊ ⤷ alloc::sync::Arc<T,A>::as_ptr::h2de93da8914a6801 + 772 ┊ 0.02% ┊ <wasm_streams::readable::into_underlying_source::IntoUnderlyingSource as wasm_bindgen::convert::traits::FromWasmAbi>::from_abi::h75e0e8d7b73bb72d + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::ha05d61b2d2b063f0 + 75 ┊ 0.00% ┊ ⤷ wasm_bindgen::__rt::WasmRefCell<T>::into_inner::h98198235f75eedf4 + 73 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h8344d0840a72c2bb + 767 ┊ 0.02% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::free::h44cc7ea745237ace + 766 ┊ 0.02% ┊ core::option::Option<T>::map::h55d1cc822a4641bb + 472 ┊ 0.01% ┊ ⤷ core::ops::function::FnOnce::call_once::ha6ff4808150f35cc + 394 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::convert::From<&str>>::from::heca1a0fd4724002c + 746 ┊ 0.02% ┊ __rust_realloc + 724 ┊ 0.01% ┊ ⤷ __rdl_realloc + 730 ┊ 0.01% ┊ std::sync::mpmc::waker::Waker::disconnect::ha2213787fb2fa96c + 726 ┊ 0.01% ┊ core::ptr::drop_in_place<core::option::Option<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>>::haac7be407b4e5d3b + 641 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::sync::Weak<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>::h223ebd916ba22bae + 588 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::ops::drop::Drop>::drop::h480727458ad0a3eb + 709 ┊ 0.01% ┊ tachys::dom::window::h5a9fb28746a45a74 + 686 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::h91e374524e964017 + 491 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::h8144025065d2f2f7 + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h756e4929ce536bf9 + 71 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Window::Window as core::clone::Clone>::clone::hf6addb8e6ee9bc55 + 709 ┊ 0.01% ┊ tachys::dom::document::hb43b5eb892d901a3 + 686 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::with::hed47b53ebad883f4 + 491 ┊ 0.01% ┊ ⤷ std::thread::local::LocalKey<T>::try_with::hc177aeb286f53c19 + 135 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h1aac294debd546ca + 71 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Document::Document as core::clone::Clone>::clone::h669235186a1d6bdc + 704 ┊ 0.01% ┊ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h0cf62d1eaedcef67 + 704 ┊ 0.01% ┊ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::h2a4d1f2d34d9f577 + 704 ┊ 0.01% ┊ <alloc::vec::Vec<T,A> as core::iter::traits::collect::IntoIterator>::into_iter::hadaddcd55c715065 + 702 ┊ 0.01% ┊ core::fmt::write::ha50ab7591d59af2d + 700 ┊ 0.01% ┊ memmove + 687 ┊ 0.01% ┊ ⤷ compiler_builtins::mem::memmove::hf2fd8a1905dd7887 + 699 ┊ 0.01% ┊ core::sync::atomic::AtomicPtr<T>::load::h704239761a1a1cba + 626 ┊ 0.01% ┊ ⤷ core::sync::atomic::atomic_load::h1d5e876becc64ec1 + 699 ┊ 0.01% ┊ core::sync::atomic::AtomicPtr<T>::load::h1f87bcbd2001e5bb + 626 ┊ 0.01% ┊ ⤷ core::sync::atomic::atomic_load::ha230f7de93c5f456 + 689 ┊ 0.01% ┊ core::ptr::drop_in_place<routing::params::ParamsMap>::h4c781c9b0b488580 + 636 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<(alloc::borrow::Cow<str>,alloc::string::String)>>::h9ae0a8566137a9c7 + 328 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hf47906a884725494 + 167 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<[(alloc::borrow::Cow<str>,alloc::string::String)]>::h8b3533d04a32b602 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<(alloc::borrow::Cow<str>,alloc::string::String)>>::hf59af034d3e58d43 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h8f0bbbe676b1f293 + 679 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::read::h14ed841e1c4b4611 + 679 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::read::h7408e4d73382e32b + 679 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::read::hff2b58e39ac838b0 + 679 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::read::hcc8a516711b6f1f7 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::h4f7655e48fe07a39 + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h74b5e87cc24bd92c + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hd95b820a5bc3bb37 + 679 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::read::h1bb01f9cbdcd0472 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::ha3ed9b38fc0d275e + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hbe6d2f5506ea474b + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::hd352e273a04705a4 + 679 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::read::he738a4caa1c3cf84 + 619 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::he905292df76d94da + 359 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hc88e79f719f72426 + 124 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockReadGuard<T>::new::{{closure}}::h3079bceb264047c1 + 677 ┊ 0.01% ┊ export "intounderlyingsink_abort" + 649 ┊ 0.01% ┊ ⤷ intounderlyingsink_abort + 498 ┊ 0.01% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::h82bec5d0a392752d + 394 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::future_to_promise::hb3c03dade7759622 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}>>::ha362726f4144ad58 + 668 ┊ 0.01% ┊ <leptos_meta::title::TitleContext as core::clone::Clone>::clone::h9a11c74ac68219a0 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h52aeb5e1a7c5cb0b + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hd290acf26de45d03 + 667 ┊ 0.01% ┊ <reactive_graph::graph::source::AnySource as core::clone::Clone>::clone::h86d433260470d878 + 570 ┊ 0.01% ┊ ⤷ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::haed592b5c8c3a25d + 654 ┊ 0.01% ┊ core::hash::BuildHasher::hash_one::h240dd62a32709cac + 472 ┊ 0.01% ┊ ⤷ core::hash::impls::<impl core::hash::Hash for &T>::hash::hde785736c7f3c57a + 403 ┊ 0.01% ┊ ⤷ <core::any::TypeId as core::hash::Hash>::hash::h04c782ad4c0f6206 + 296 ┊ 0.01% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::write_u64::h4753813a792eb126 + 204 ┊ 0.00% ┊ ⤷ rustc_hash::FxHasher::add_to_hash::he1a3955edcb75f8e + 45 ┊ 0.00% ┊ ⤷ <usize as core::ops::bit::BitXor>::bitxor::h3245982a8dc90010 + 49 ┊ 0.00% ┊ ⤷ <rustc_hash::FxHasher as core::hash::Hasher>::finish::hb5666792fb9a0812 + 642 ┊ 0.01% ┊ <wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink as wasm_bindgen::convert::traits::FromWasmAbi>::from_abi::h656b81e8f50c9ac7 + 265 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h95ca92fd424cf048 + 73 ┊ 0.00% ┊ ⤷ alloc::boxed::Box<T>::from_raw::h0858a85ec48ebe8f + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::__rt::WasmRefCell<T>::into_inner::h4c35e3917d101f04 + 639 ┊ 0.01% ┊ alloc::sync::Arc<T,A>::downgrade::h9326c1d97641cf3a + 639 ┊ 0.01% ┊ alloc::sync::Arc<T,A>::downgrade::h89bcceb961c30add + 639 ┊ 0.01% ┊ core::str::<impl str>::strip_prefix::ha423f1619cb4e206 + 527 ┊ 0.01% ┊ ⤷ <char as core::str::pattern::Pattern>::strip_prefix_of::h7e335bdc2cb7afb5 + 322 ┊ 0.01% ┊ ⤷ <&str as core::str::pattern::Pattern>::strip_prefix_of::h715c8578a97f4179 + 636 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::write::h26ffac2311fe2b4f + 636 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::write::h79502fe0c9be1707 + 636 ┊ 0.01% ┊ std::sys::wasm::locks::rwlock::RwLock::write::h7806fa277b03513c + 632 ┊ 0.01% ┊ export "intounderlyingsink_close" + 604 ┊ 0.01% ┊ ⤷ intounderlyingsink_close + 484 ┊ 0.01% ┊ ⤷ wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::hc157a2dd465066bb + 394 ┊ 0.01% ┊ ⤷ wasm_bindgen_futures::future_to_promise::hd3df087a5d430af1 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}>>::h173a9ad1ea1dc306 + 626 ┊ 0.01% ┊ core::sync::atomic::atomic_load::h887d643fa5b5cc8c + 626 ┊ 0.01% ┊ core::sync::atomic::atomic_load::h835cb42d4ad9cb15 + 626 ┊ 0.01% ┊ core::sync::atomic::atomic_load::h04dbc74dba7b437a + 626 ┊ 0.01% ┊ core::sync::atomic::atomic_load::hc3a50c5f74a35e10 + 626 ┊ 0.01% ┊ core::sync::atomic::atomic_load::h1b46fce18147cffb + 623 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::boxed::Box<std::sync::mpmc::counter::Counter<std::sync::mpmc::zero::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::h12ccc4f2ca2c039d + 292 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::counter::Counter<std::sync::mpmc::zero::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h9280191e53ee7f24 + 239 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::zero::Channel<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h39c52931d90cba50 + 186 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mutex::Mutex<std::sync::mpmc::zero::Inner>>::h0a98a905c494e56d + 122 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<std::sync::mpmc::zero::Inner>>::h9957eab5a28f94d6 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mpmc::zero::Inner>::h03c104d8e836847d + 266 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h89d4396261b415a2 + 622 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::mpmc::waker::Waker>::h0e4678a6f97d88c9 + 469 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<std::sync::mpmc::waker::Entry>>::hccde44b0847f53ce + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<std::sync::mpmc::waker::Entry>>::h57a07a0f16ea979b + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h6e454f9da82863e1 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hb54861fa0b8a0d1e + 79 ┊ 0.00% ┊ ⤷ <std::sync::mpmc::waker::Waker as core::ops::drop::Drop>::drop::h6e3ac04411ae9dc7 + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::h72aeec76dec6d005 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hd915da8af8621226 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hbb147e8e6e5af513 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h4f3e28473e06b4fc + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::hc8429f1a34d61655 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hdfb7cd8339c45f58 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::ha8771876647a3fb8 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hff2f3d546e34d95b + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::h6a8910458a0d942d + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::he865a3c4dd888e5e + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::heabb986719bda577 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h001a293ed5e16c94 + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::hc5bd865b3a300544 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h0cd6f1c21d6bb1d9 + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h94be603b5108d9a5 + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h742b596f2113d8e1 + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::h22205b7f638c680b + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::h9c3a0de7a9f7485b + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h460686612ae9211b + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hc62c64028a5d25f5 + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::h58e64f1033953394 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::ha4a30acd5087ee3c + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::hae62d45ca516f0ff + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::hb2ddcc279e0b3d9e + 618 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::write::hed56a0adc2187cb5 + 558 ┊ 0.01% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::hbec4290103cb000a + 442 ┊ 0.01% ┊ ⤷ std::sync::poison::map_result::h34f4edb13ac9e64b + 96 ┊ 0.00% ┊ ⤷ std::sync::rwlock::RwLockWriteGuard<T>::new::{{closure}}::h8c5467a762f68e01 + 616 ┊ 0.01% ┊ core::num::<impl u32>::pow::hfc231195ccff6e79 + 616 ┊ 0.01% ┊ js_sys::Iterator::looks_like_iterator::h83afb03f062a32be + 203 ┊ 0.00% ┊ ⤷ js_sys::Iterator::looks_like_iterator::MaybeIterator::next::h585d3f149857251a + 57 ┊ 0.00% ┊ ⤷ js_sys::Iterator::looks_like_iterator::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Iterator::looks_like_iterator::MaybeIterator>::into_abi::h3b6e4b95b26de6a8 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_next_40fc327bfc8770e6 + 120 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::is_object::heec914eaba8b4e41 + 27 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_is_object + 95 ┊ 0.00% ┊ ⤷ wasm_bindgen::cast::JsCast::unchecked_ref::h924e63e30ce53c96 + 31 ┊ 0.00% ┊ ⤷ js_sys::Iterator::looks_like_iterator::_::<impl wasm_bindgen::cast::JsCast for js_sys::Iterator::looks_like_iterator::MaybeIterator>::unchecked_from_js_ref::h45872c652a123800 + 612 ┊ 0.01% ┊ std::sync::mpmc::waker::SyncWaker::disconnect::h52ecdb7be6784d7d + 612 ┊ 0.01% ┊ tachys::hydration::Cursor<R>::new::haff2edccd52feb12 + 301 ┊ 0.01% ┊ ⤷ alloc::rc::Rc<T>::new::h8ba0d3952603f5d3 + 103 ┊ 0.00% ┊ ⤷ core::cell::RefCell<T>::new::hb66fed076ae3f148 + 64 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Element::Element as core::convert::AsRef<web_sys::features::gen_Node::Node>>::as_ref::h2497785443541a09 + 607 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::any::Any>>::hda461ad67f66a8c0 + 526 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hf6b0e6351e780056 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h13310f7dd9c2baf1 + 603 ┊ 0.01% ┊ core::sync::atomic::atomic_store::h3a3f7ebf31fbe668 + 603 ┊ 0.01% ┊ core::sync::atomic::atomic_store::ha706dd1b4d4ab1cd + 603 ┊ 0.01% ┊ core::sync::atomic::atomic_store::h14d8e98bd8d35dfa + 603 ┊ 0.01% ┊ core::sync::atomic::atomic_store::heb84eadbcb514423 + 603 ┊ 0.01% ┊ core::sync::atomic::atomic_store::h6929fb1890bff70f + 601 ┊ 0.01% ┊ export "__wbindgen_malloc" + 580 ┊ 0.01% ┊ ⤷ __wbindgen_malloc + 236 ┊ 0.00% ┊ ⤷ alloc::alloc::alloc::hed69d88a92ff978b + 38 ┊ 0.00% ┊ ⤷ core::alloc::layout::Layout::size::h9cba01d62f502c45 + 600 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::new::h2bffb6ee7a20f612 + 598 ┊ 0.01% ┊ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::h4b5204d4bb600ed8 + 598 ┊ 0.01% ┊ <alloc::vec::into_iter::IntoIter<T,A> as core::iter::traits::iterator::Iterator>::next::hf23e0cf69d0e9ad7 + 597 ┊ 0.01% ┊ alloc::sync::Weak<T,A>::upgrade::h3470d2a04f104b56 + 597 ┊ 0.01% ┊ alloc::sync::Weak<T,A>::upgrade::h50f817ddcea74da5 + 585 ┊ 0.01% ┊ alloc::vec::Vec<T,A>::extend_from_slice::h0e1c5427e31d4021 + 388 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::hf84ff26647a617d4 + 585 ┊ 0.01% ┊ alloc::vec::Vec<T,A>::extend_from_slice::hcb46d6fa5daa8c92 + 388 ┊ 0.01% ┊ ⤷ <alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter<T>>>::spec_extend::hdf788a448e19acc0 + 584 ┊ 0.01% ┊ <leptos_meta::title::TitleView as tachys::view::RenderHtml<tachys::renderer::dom::Dom>>::hydrate::{{closure}}::he83a0a2ab592151c + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::is_some::h30e11298cd6f0073 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_Element::Element as core::ops::deref::Deref>::deref::h6baf1f0f9a164611 + 31 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlTitleElement::HtmlTitleElement as core::ops::deref::Deref>::deref::hfc9afcd0477ac332 + 571 ┊ 0.01% ┊ core::result::Result<T,E>::map_err::hd4d4784e3b15d59a + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::h18040f4fab1207bd + 571 ┊ 0.01% ┊ core::result::Result<T,E>::map_err::h55cb82b4170ad5e1 + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::hd895b0efe0f52b19 + 571 ┊ 0.01% ┊ core::result::Result<T,E>::map_err::hf3a51590c79e1a2b + 261 ┊ 0.01% ┊ ⤷ alloc::raw_vec::handle_reserve::{{closure}}::h6bc502e382026f27 + 571 ┊ 0.01% ┊ core::ptr::drop_in_place<guardian::ArcRwLockReadGuardian<routing::params::ParamsMap>>::h553ec46be5488383 + 262 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<std::sync::rwlock::RwLockReadGuard<routing::params::ParamsMap>>>::hef87d6301466d1e2 + 177 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<routing::params::ParamsMap>>::hbdca3d94089abb0f + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h9332a186b0fa9ddf + 235 ┊ 0.00% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::drop::Drop>::drop::h39cca09bdcd61933 + 110 ┊ 0.00% ┊ ⤷ core::option::Option<T>::take::h90254e9758013b4f + 570 ┊ 0.01% ┊ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::h3cdfba832c081496 + 567 ┊ 0.01% ┊ web_sys::features::gen_Document::Document::create_element::hbead9f6002408113 + 96 ┊ 0.00% ┊ ⤷ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h9c7fa83e31f471f6 + 43 ┊ 0.00% ┊ ⤷ import wbg::__wbg_createElement_8bae7856a4bb7411 + 558 ┊ 0.01% ┊ std::sync::mpmc::zero::Channel<T>::disconnect::he1f80fb8b12ec29c + 552 ┊ 0.01% ┊ export "__wbindgen_realloc" + 530 ┊ 0.01% ┊ ⤷ __wbindgen_realloc + 142 ┊ 0.00% ┊ ⤷ alloc::alloc::realloc::h0582bb4f9d18a918 + 549 ┊ 0.01% ┊ <reactive_graph::graph::subscriber::AnySubscriber as reactive_graph::graph::subscriber::Subscriber>::add_source::h3d3dde95a4111b71 + 549 ┊ 0.01% ┊ core::cmp::PartialEq::ne::h4e273fa20a457a90 + 461 ┊ 0.01% ┊ ⤷ <core::option::Option<T> as core::cmp::PartialEq>::eq::hd0b571abb729c736 + 384 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::h20333d152fa11647 + 91 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h2eacfab6ed87667d + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h36ef553780a12f47 + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::ha990d4d5a8cb36d0 + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h0326a891ca5fbbe2 + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h7b217426dab2b5ed + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::hf88701207013090d + 545 ┊ 0.01% ┊ <core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::next::h3e2c02a454334c93 + 544 ┊ 0.01% ┊ tachys::hydration::Cursor<R>::sibling::h2dc9deb34a7d54da + 83 ┊ 0.00% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::next_sibling::h8e1e9d89d684057b + 544 ┊ 0.01% ┊ tachys::hydration::Cursor<R>::child::h28692611b0bd7246 + 83 ┊ 0.00% ┊ ⤷ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::first_child::h0e2e14bb2227995f + 541 ┊ 0.01% ┊ core::cell::RefCell<T>::borrow::h12164c5d6c0234ee + 378 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow::h69590fd56f869ec5 + 541 ┊ 0.01% ┊ core::cell::RefCell<T>::borrow::h21ea04a80baf99d4 + 378 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow::h36de0edca2c36afc + 532 ┊ 0.01% ┊ tachys::view::strings::<impl tachys::view::Render<R> for &str>::rebuild::h403db446ee744b47 + 306 ┊ 0.01% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&mut B> for &A>::ne::h0ac09d496c1db4a7 + 215 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::ne::he84bee3f95fc7295 + 106 ┊ 0.00% ┊ ⤷ core::cmp::PartialEq::ne::h6b0b6dfaa0edc917 + 532 ┊ 0.01% ┊ web_sys::features::gen_Document::Document::head::hd5e67bdb91c9fc9a + 359 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::h5d3644043d60a490 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlHeadElement::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_HtmlHeadElement::HtmlHeadElement>::from_abi::h18b713158342f07a + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlHeadElement::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_HtmlHeadElement::HtmlHeadElement>::is_none::h167262df8ec17906 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_head_d7a99d3f407e2291 + 528 ┊ 0.01% ┊ <oco::Oco<T> as core::clone::Clone>::clone::hceec216d5a4060f2 + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::hcf6696227f167f02 + 526 ┊ 0.01% ┊ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hd37feb12ede6f4c9 + 223 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hc212c22afaf26ff1 + 523 ┊ 0.01% ┊ core::cell::RefCell<T>::borrow_mut::h9a3370c829e8126e + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h3a13acc04f2fc22f + 523 ┊ 0.01% ┊ core::cell::RefCell<T>::borrow_mut::h3d9c1781b58219c7 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h1c67190ac5a851c4 + 523 ┊ 0.01% ┊ core::cell::RefCell<T>::borrow_mut::h1e77fb64444ae482 + 360 ┊ 0.01% ┊ ⤷ core::cell::RefCell<T>::try_borrow_mut::h8b6717d387b2a7ac + 522 ┊ 0.01% ┊ core::ptr::drop_in_place<core::option::Option<core::pin::Pin<alloc::boxed::Box<dyn futures_io::if_std::AsyncRead>>>>::hf156701e019a3223 + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn futures_io::if_std::AsyncRead>>>::h2a1ae4c0068c2b48 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn futures_io::if_std::AsyncRead>>::h22a66aa13cc52382 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h65ea61866b98dfcf + 522 ┊ 0.01% ┊ core::ptr::drop_in_place<core::option::Option<core::pin::Pin<alloc::boxed::Box<dyn futures_sink::Sink<wasm_bindgen::JsValue>+Error = wasm_bindgen::JsValue>>>>::he4fb12240e35c46f + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn futures_sink::Sink<wasm_bindgen::JsValue>+Error = wasm_bindgen::JsValue>>>::hd735ce9c47cfb1ed + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn futures_sink::Sink<wasm_bindgen::JsValue>+Error = wasm_bindgen::JsValue>>::h0c3fa1bd0f8cf040 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h8d1f35cdd32df447 + 522 ┊ 0.01% ┊ core::ptr::drop_in_place<core::option::Option<core::pin::Pin<alloc::boxed::Box<dyn futures_core::stream::Stream+Item = core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>>>>::h1c73dcf3f6cb423c + 437 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::pin::Pin<alloc::boxed::Box<dyn futures_core::stream::Stream+Item = core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>>>::he16d193572c2eb55 + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn futures_core::stream::Stream+Item = core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>>::h144b9be69dba5a43 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h4b3b779ad82fb0a6 + 521 ┊ 0.01% ┊ <core::option::Option<T> as core::cmp::PartialEq>::eq::hb5ea1b2c2b6424ba + 444 ┊ 0.01% ┊ ⤷ <T as core::option::SpecOptionPartialEq>::eq::hb6111228cb1e1b20 + 78 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for char>::eq::h0587edfe5cbf6b2b + 519 ┊ 0.01% ┊ <core::result::Result<T,E> as slotmap::util::UnwrapUnchecked<T>>::unwrap_unchecked_::h5847db3a96f1a1b7 + 168 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::unwrap::hd5a52665c522231b + 5 ┊ 0.00% ┊ ⤷ core::hint::unreachable_unchecked::h947f97a6af5fa153 + 518 ┊ 0.01% ┊ alloc::sync::Arc<T>::new::hb10fb5f48f3d2aa3 + 518 ┊ 0.01% ┊ alloc::sync::Arc<T>::new::hb7e1b3d6b9477b83 + 518 ┊ 0.01% ┊ alloc::sync::Arc<T>::new::hed29ab079646b783 + 516 ┊ 0.01% ┊ <core::option::Option<T> as core::clone::Clone>::clone::h9c2fc5df486549c9 + 339 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h4dbb3b2a3ed4e8d7 + 515 ┊ 0.01% ┊ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::mark_subscribers_check::h208c1ac9acb6a485 + 513 ┊ 0.01% ┊ core::option::Option<T>::map::h963d3c426372a910 + 155 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h131af2f818c78a4d + 55 ┊ 0.00% ┊ ⤷ reactive_graph::signal::guards::ReadGuard<T,Inner>::new::h7a261ff94495fa51 + 512 ┊ 0.01% ┊ parking_lot_core::word_lock::WordLock::unlock::haa18ff829485da84 + 250 ┊ 0.01% ┊ ⤷ core::sync::atomic::AtomicUsize::fetch_sub::h90318edba864a759 + 72 ┊ 0.00% ┊ ⤷ <usize as parking_lot_core::word_lock::LockState>::is_queue_locked::he255c0aaca24f160 + 42 ┊ 0.00% ┊ ⤷ <usize as parking_lot_core::word_lock::LockState>::queue_head::h903847129f65637d + 511 ┊ 0.01% ┊ alloc::sync::Weak<T,A>::upgrade::h5874bcc334c66570 + 511 ┊ 0.01% ┊ alloc::sync::Weak<T,A>::upgrade::h1a8392fe2ccbbe72 + 511 ┊ 0.01% ┊ core::option::Option<T>::get_or_insert_with::he30118fd0193f4c8 + 46 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hc6d62f8f73822557 + 506 ┊ 0.01% ┊ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::size_hint::h5ef020ba22f7b3b7 + 167 ┊ 0.00% ┊ ⤷ <usize as core::iter::range::Step>::steps_between::h8a2c236a5859a179 + 503 ┊ 0.01% ┊ core::panicking::panic_display::hbdca422b4c2676d2 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hc8612427d9dcf5a4 + 503 ┊ 0.01% ┊ alloc::sync::Arc<T,A>::downgrade::panic_cold_display::h4a8e5f0d4e65d52a + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h12b52d36bcb58d34 + 503 ┊ 0.01% ┊ alloc::sync::Arc<T,A>::downgrade::panic_cold_display::h41f6fbd07b993562 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::hfa0cb1e66ea42d8d + 502 ┊ 0.01% ┊ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::he340c898f8b27c3f + 502 ┊ 0.01% ┊ <alloc::sync::Weak<T,A> as core::clone::Clone>::clone::hc93e5bb007b1c325 + 502 ┊ 0.01% ┊ <hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next::hbaecfca951ccd123 + 502 ┊ 0.01% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::dispose_chunk::h220aa72febfe28ff + 501 ┊ 0.01% ┊ core::panicking::panic_display::h847a152d0ee17f64 + 356 ┊ 0.01% ┊ ⤷ core::fmt::Arguments::new_v1::h4edfd7d528602826 + 499 ┊ 0.01% ┊ std::io::Write::write_fmt::h1f6b30bf9697d2c5 + 497 ┊ 0.01% ┊ <reactive_graph::signal::guards::ReadGuard<T,Inner> as core::ops::deref::Deref>::deref::hb0693c3128253740 + 440 ┊ 0.01% ┊ ⤷ <reactive_graph::signal::guards::Plain<T> as core::ops::deref::Deref>::deref::hd79d795cbad107b9 + 383 ┊ 0.01% ┊ ⤷ <guardian::ArcRwLockReadGuardian<T> as core::ops::deref::Deref>::deref::h7aac6b0eca77b109 + 119 ┊ 0.00% ┊ ⤷ core::option::Option<T>::expect::h675ea1627e351a75 + 99 ┊ 0.00% ┊ ⤷ core::option::Option<T>::as_ref::h128ddedde43bfb51 + 59 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hd0487b93d07993c9 + 495 ┊ 0.01% ┊ reactive_graph::computed::inner::MemoInner<T>::new::h022a5d8a596df0a5 + 495 ┊ 0.01% ┊ reactive_graph::computed::inner::MemoInner<T>::new::h303a147d7be113fe + 488 ┊ 0.01% ┊ std::sync::mpmc::utils::Backoff::spin_heavy::h7e9d630e3a476849 + 488 ┊ 0.01% ┊ <alloc::sync::Arc<str> as core::convert::From<&str>>::from::h0f75740b2f68f35a + 477 ┊ 0.01% ┊ <oco::Oco<T> as core::ops::deref::Deref>::deref::h1c7b38fdc795fcbd + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::hf49c9feb99ebfba1 + 477 ┊ 0.01% ┊ routing::location::State::new::h90700705c2da8e5a + 343 ┊ 0.01% ┊ ⤷ core::option::Option<T>::map::hfd6696901cf4f75a + 103 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::hf96a6e2c3df31bd2 + 471 ┊ 0.01% ┊ core::option::Option<T>::unwrap_or_else::hda0f7115336b5e35 + 250 ┊ 0.01% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &str>::into_abi::{{closure}}::hd69ff9c0c757b0f0 + 118 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &[u8]>::into_abi::hfd57d24c321a39f7 + 467 ┊ 0.01% ┊ leptos_meta::title::TitlePropsBuilder<(__formatter,__text)>::build::hf31e4a346172296c + 148 ┊ 0.00% ┊ ⤷ <() as typed_builder::Optional<T>>::into_value::hb969cbae81a6c162 + 74 ┊ 0.00% ┊ ⤷ leptos_meta::title::TitlePropsBuilder<(__formatter,__text)>::build::{{closure}}::hbe7ef3596c32de01 + 55 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h3abdfd1aeef17394 + 50 ┊ 0.00% ┊ ⤷ <(T,) as typed_builder::Optional<T>>::into_value::h728d33de3681901b + 464 ┊ 0.01% ┊ <&reactive_graph::graph::sets::SourceSet as core::iter::traits::collect::IntoIterator>::into_iter::hb663e46918d070eb + 187 ┊ 0.00% ┊ ⤷ core::slice::<impl [T]>::iter::h6af08fee6544338b + 149 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::he0a10deb480336a5 + 459 ┊ 0.01% ┊ core::str::traits::<impl core::cmp::PartialEq for str>::eq::hcd6d055958672adc + 233 ┊ 0.00% ┊ ⤷ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::hfca7c948b4f49684 + 458 ┊ 0.01% ┊ <T as core::convert::Into<U>>::into::h9d1cc02d24fbfcbf + 394 ┊ 0.01% ┊ ⤷ <alloc::string::String as core::convert::From<&str>>::from::h88ab7422eee983dd + 458 ┊ 0.01% ┊ core::ptr::drop_in_place<routing::location::State>::hddcc78755e80f2db + 405 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<send_wrapper::SendWrapper<wasm_bindgen::JsValue>>>::hd886a3ce73b9b65b + 288 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<wasm_bindgen::JsValue>>::h0ecb3ea0c1e194a3 + 226 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::h33f6d8260daa45f3 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h1b1ceb7b75ffb9ab + 53 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::hbc37a45183873559 + 456 ┊ 0.01% ┊ <reactive_graph::graph::source::AnySource as reactive_graph::graph::node::ReactiveNode>::update_if_necessary::he76a3d3baf60aab6 + 455 ┊ 0.01% ┊ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::create_text_node::h3a626b6d2d370e0c + 340 ┊ 0.01% ┊ ⤷ web_sys::features::gen_Document::Document::create_text_node::hde56a6cb73022325 + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Text::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Text::Text>::from_abi::hb0fa14341000cde9 + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_createTextNode_0c38fd80a5b2284d + 453 ┊ 0.01% ┊ alloc::string::String::push::h7f8c3887180324ef + 449 ┊ 0.01% ┊ hashbrown::raw::RawTable<T,A>::reserve_rehash::{{closure}}::h781639c23ee0b348 + 89 ┊ 0.00% ┊ ⤷ hashbrown::map::make_hasher::{{closure}}::h49c75fa4594ac41d + 445 ┊ 0.01% ┊ core::option::Option<T>::unwrap_or_default::h4f393fa4763f6ee5 + 234 ┊ 0.00% ┊ ⤷ <oco::Oco<T> as core::default::Default>::default::h1505678c777a3ef6 + 114 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::default::Default>::default::h091c7091679b6642 + 443 ┊ 0.01% ┊ core::str::<impl str>::strip_prefix::h1e05548c91a561fc + 322 ┊ 0.01% ┊ ⤷ <&str as core::str::pattern::Pattern>::strip_prefix_of::h8bf2a05702a0a2bd + 441 ┊ 0.01% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::hfedafa4f6f63fb86 + 101 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::FromWasmAbi for alloc::string::String>::from_abi::hb271cddd1b76badd + 68 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for alloc::string::String>::is_none::h5547ad54f4c75115 + 437 ┊ 0.01% ┊ <core::ops::control_flow::ControlFlow<B,C> as core::cmp::PartialEq>::eq::h585a06ea29141746 + 53 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::PartialEq for ()>::eq::h188ce2943fd82bff + 437 ┊ 0.01% ┊ core::ptr::drop_in_place<leptos_meta::title::Formatter>::hd85f74e7e0c3dacd + 384 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::Fn<(alloc::string::String,)>+Output = alloc::string::String+core::marker::Sync+core::marker::Send>>::h8b91f623a600c184 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hfd91e912fe4c1c40 + 436 ┊ 0.01% ┊ core::panicking::assert_failed_inner::h161125ff96c9e54a + 428 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::hac156493c852e3a3 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::h05fc5ecf1be4636a + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hb93984a247eb8606 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h4a9144b6cdc63f01 + 428 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::h93063eaa95bf4b5d + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::ha86f8bc092ad8f88 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hd332235a2effed14 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hcc272e8eae1b88f5 + 428 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::he79e822b677970e1 + 250 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::hf86b57461139ae8d + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h24931d8452dea2c8 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h43fed62158cb5293 + 425 ┊ 0.01% ┊ core::ptr::drop_in_place<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>::hb780466bcb7a392b + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>>>::h94c24de6831877ee + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hccc564818a8f68c7 + 69 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<tachys::view::either::EitherState<tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>,tachys::renderer::dom::Dom>>::h739355798aed17f9 + 418 ┊ 0.01% ┊ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource>::h97378981997879f9 + 328 ┊ 0.01% ┊ ⤷ <wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource as core::ops::drop::Drop>::drop::hf2c99a8aef96110a + 411 ┊ 0.01% ┊ <reactive_graph::graph::subscriber::AnySubscriber as reactive_graph::graph::node::ReactiveNode>::mark_dirty::h1611a31196cb1d20 + 411 ┊ 0.01% ┊ <reactive_graph::graph::subscriber::AnySubscriber as reactive_graph::graph::node::ReactiveNode>::mark_check::hc2c21a8b93ee7dff + 411 ┊ 0.01% ┊ <leptos_meta::MetaContext as core::clone::Clone>::clone::hf35736ba0d47410d + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h8e7cd9e6f491620c + 409 ┊ 0.01% ┊ <reactive_graph::graph::subscriber::AnySubscriber as reactive_graph::graph::subscriber::Subscriber>::clear_sources::h79f4a8f989d99ad5 + 405 ┊ 0.01% ┊ core::ptr::drop_in_place<core::option::Option<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>>::h8f00b078e4f90148 + 288 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<tachys::hydration::Cursor<tachys::renderer::dom::Dom>>>::h4e0844010294c136 + 226 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::hcd52b640d2c06ef2 + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::h5c7bd8d9476205de + 53 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::h7024839045afc891 + 404 ┊ 0.01% ┊ core::ptr::drop_in_place<wasm_bindgen::JsValue>::hb3c099949c9e70f7 + 351 ┊ 0.01% ┊ ⤷ <wasm_bindgen::JsValue as core::ops::drop::Drop>::drop::h48f2203ebf050b37 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_object_drop_ref + 402 ┊ 0.01% ┊ alloc::fmt::format::format_inner::hc8b33988183e73f8 + 402 ┊ 0.01% ┊ <alloc::borrow::Cow<B> as core::ops::deref::Deref>::deref::hedfa8f150731e133 + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::h43f495d519687ce1 + 402 ┊ 0.01% ┊ <alloc::borrow::Cow<B> as core::ops::deref::Deref>::deref::h468cf81929a09c9a + 171 ┊ 0.00% ┊ ⤷ alloc::str::<impl core::borrow::Borrow<str> for alloc::string::String>::borrow::h288bf8fd9f362701 + 402 ┊ 0.01% ┊ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource>::h3aa103ae061747a7 + 328 ┊ 0.01% ┊ ⤷ <wasm_streams::readable::into_underlying_source::IntoUnderlyingSource as core::ops::drop::Drop>::drop::h7a5cdedbd427c5e2 + 402 ┊ 0.01% ┊ <tachys::hydration::Cursor<R> as core::clone::Clone>::clone::hafe941f338ddf190 + 331 ┊ 0.01% ┊ ⤷ <alloc::rc::Rc<T,A> as core::clone::Clone>::clone::h3781744a7eb791ff + 204 ┊ 0.00% ┊ ⤷ alloc::rc::RcInnerPtr::inc_strong::hfc92826430b3ba68 + 399 ┊ 0.01% ┊ <tachys::html::attribute::Attr<K,V,R> as tachys::html::attribute::Attribute<R>>::hydrate::h2a6d72e5f5e3b5c2 + 275 ┊ 0.01% ┊ ⤷ <alloc::string::String as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h48b01cb6b1f297ab + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::h9f4164060be0d36d + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h298104cc019b2906 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>>::h3025ab28bf7799cf + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h664b1ffb62a3b3e7 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<oco::Oco<str>>>>::hbfc4fd7562935aff + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::he5c73bf59ec38e60 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos::text_prop::TextProp>>>::h0c9125e9f2efa9b2 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h5bfb48a8cc43e389 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<leptos_meta::title::Formatter>>>::h0a3a221dec504da6 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::haed95ba58d7cbd77 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>>::hdfa330ec97490ad9 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h6dfdad64ccf9a2c7 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::graph::sets::SubscriberSet>>::h7310ec9ddb615190 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h590d48c699bbee21 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<reactive_graph::owner::OwnerInner>>::h68839c1d1ef3e505 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::hc588085940b6a547 + 398 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockWriteGuard<slotmap::basic::SlotMap<reactive_graph::owner::arena::NodeId,alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>>::h80a56380624e6227 + 345 ┊ 0.01% ┊ ⤷ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::drop::Drop>::drop::h75bc7e05a9e86f7c + 396 ┊ 0.01% ┊ <char as core::str::pattern::Pattern>::into_searcher::h77027abc90bac0ea + 395 ┊ 0.01% ┊ parking_lot_core::parking_lot::lock_bucket_checked::h6f83bf665900c60a + 394 ┊ 0.01% ┊ <str as alloc::string::ToString>::to_string::h31570e68fa4fd182 + 394 ┊ 0.01% ┊ <str as alloc::string::ToString>::to_string::h9e9977e54332f27f + 393 ┊ 0.01% ┊ web_sys::features::gen_Location::Location::origin::h16604c3871b9269d + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_origin_ee93e29ace71f568 + 393 ┊ 0.01% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for core::option::Option<T>>::into_abi::he542195375e02060 + 153 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::OptionIntoWasmAbi for &str>::none::h3f5fe9424ad0cdb6 + 68 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::null_slice::hf4079db11d0ca64c + 392 ┊ 0.01% ┊ export "__wbindgen_exn_store" + 368 ┊ 0.01% ┊ ⤷ __wbindgen_exn_store + 101 ┊ 0.00% ┊ ⤷ core::panicking::assert_failed::hfc0e704d51b1fbc3 + 392 ┊ 0.01% ┊ web_sys::features::gen_Node::Node::append_child::h4873f8ef89ceae5c + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_appendChild_580ccb11a660db68 + 391 ┊ 0.01% ┊ web_sys::features::gen_Location::Location::hash::h9419dc86c43791fa + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_hash_553098e838e06c1d + 390 ┊ 0.01% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::unlink_chunk::h60d3fb17c4a254a8 + 388 ┊ 0.01% ┊ hashbrown::map::equivalent_key::{{closure}}::h9338110016c1fd8f + 304 ┊ 0.01% ┊ ⤷ <Q as hashbrown::Equivalent<K>>::equivalent::hf72c522ca271a4c4 + 123 ┊ 0.00% ┊ ⤷ <core::any::TypeId as core::cmp::PartialEq>::eq::hbfe0c364fe8c0896 + 31 ┊ 0.00% ┊ ⤷ <T as core::borrow::Borrow<T>>::borrow::he572e96cb4cb747a + 387 ┊ 0.01% ┊ alloc::slice::<impl alloc::borrow::ToOwned for [T]>::to_owned::h85a46c31c4caf4eb + 323 ┊ 0.01% ┊ ⤷ <T as alloc::slice::hack::ConvertVec>::to_vec::h1d116741425f919f + 385 ┊ 0.01% ┊ js_sys::Function::call0::h6558cfbe5e8e8422 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_call_27c0f87801dedf93 + 385 ┊ 0.01% ┊ js_sys::Reflect::get::he1580c3e2a7177b0 + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_get_e3c254076557e348 + 384 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>::h10da12bbb6ff61c3 + 303 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::hc8a2d6a6bc8d381b + 380 ┊ 0.01% ┊ parking_lot_core::spinwait::SpinWait::spin::h64276afeae54cb30 + 379 ┊ 0.01% ┊ core::slice::<impl [T]>::starts_with::h2dfd8d6345115f96 + 377 ┊ 0.01% ┊ parking_lot_core::word_lock::ThreadData::new::h184b0daa0aa5a8ab + 59 ┊ 0.00% ┊ ⤷ core::cell::Cell<T>::new::hadbaf85457972c52 + 376 ┊ 0.01% ┊ hashbrown::raw::RawTable<T,A>::find::{{closure}}::ha4ad4ada391fa749 + 376 ┊ 0.01% ┊ hashbrown::raw::RawTable<T,A>::find::{{closure}}::ha479f760ceac993e + 373 ┊ 0.01% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::memalign::h95a0dc8e51b400b1 + 373 ┊ 0.01% ┊ core::ptr::drop_in_place<leptos_meta::title::TitleView::el::{{closure}}>::haa3f854fdab269d2 + 288 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<send_wrapper::SendWrapper<web_sys::features::gen_HtmlHeadElement::HtmlHeadElement>>::h0a4bc9c15ff177e2 + 226 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::hb2a2f3abd53544bf + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::hd3bdfe7b978d5564 + 53 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::h2655fbd0e929979a + 372 ┊ 0.01% ┊ <oco::Oco<A> as core::cmp::PartialEq<oco::Oco<B>>>::eq::h9c059d9dcfb08555 + 226 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::cmp::PartialEq for str>::eq::h9c5a3d4a8e501484 + 370 ┊ 0.01% ┊ export "intounderlyingbytesource_autoAllocateChunkSize" + 320 ┊ 0.01% ┊ ⤷ intounderlyingbytesource_autoAllocateChunkSize + 88 ┊ 0.00% ┊ ⤷ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::h9c0027aa26151c19 + 31 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for usize>::into_abi::h0a520cc48d8d2fa2 + 38 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::auto_allocate_chunk_size::h61e7d85afb63013f + 368 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hc7c25572b500f118 + 29 ┊ 0.00% ┊ ⤷ <alloc::alloc::Global as core::clone::Clone>::clone::h6526da3517f36c7a + 364 ┊ 0.01% ┊ export "__wbindgen_free" + 345 ┊ 0.01% ┊ ⤷ __wbindgen_free + 151 ┊ 0.00% ┊ ⤷ alloc::alloc::dealloc::h2cf6a90309d9aeda + 78 ┊ 0.00% ┊ ⤷ core::alloc::layout::Layout::from_size_align_unchecked::hc1dd5be1b051beba + 360 ┊ 0.01% ┊ alloc::vec::Vec<T,A>::push::h6c0121e46f6307ce + 91 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve_for_push::hb1a70fa4a773a3cb + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h7388e772896aa582 + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h20d26626e1d531b2 + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h3ce93ccdd973bacf + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::hd48c89248187ad84 + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h9a924daa2ae82067 + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h3bed07a367a518d0 + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::hb53aedccd2a5c8ac + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::hf5871858784c9ded + 356 ┊ 0.01% ┊ core::fmt::Arguments::new_v1::h2e55816f52bef510 + 352 ┊ 0.01% ┊ core::iter::range::<impl core::iter::traits::iterator::Iterator for core::ops::range::Range<A>>::next::ha9e443dff6dafdd2 + 269 ┊ 0.01% ┊ ⤷ <core::ops::range::Range<T> as core::iter::range::RangeIteratorImpl>::spec_next::h56f3fe04b0838002 + 52 ┊ 0.00% ┊ ⤷ <u32 as core::iter::range::Step>::forward_unchecked::h0a30b309fcf7223a + 349 ┊ 0.01% ┊ <tachys::view::PositionState as core::clone::Clone>::clone::hfdff8bdd5db4d484 + 278 ┊ 0.01% ┊ ⤷ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h772246e3773d6795 + 344 ┊ 0.01% ┊ core::alloc::layout::Layout::array::inner::h74cbe6188d6273cb + 344 ┊ 0.01% ┊ core::alloc::layout::Layout::array::inner::h713b5c76204f0f49 + 344 ┊ 0.01% ┊ core::alloc::layout::Layout::array::inner::h8e3fd4134548af24 + 344 ┊ 0.01% ┊ core::alloc::layout::Layout::array::inner::ha76fbe5bfac38dfe + 344 ┊ 0.01% ┊ core::alloc::layout::Layout::array::inner::ha46af56be4c1e82b + 341 ┊ 0.01% ┊ core::str::<impl str>::is_char_boundary::hd1214338950d8c66 + 341 ┊ 0.01% ┊ core::str::<impl str>::is_char_boundary::h3b5bde48c4f6d60c + 341 ┊ 0.01% ┊ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::set_text::h3d80325d8cc1ed9f + 228 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::Node::set_node_value::h6acd0aa674e7220f + 42 ┊ 0.00% ┊ ⤷ import wbg::__wbg_setnodeValue_94b86af0cda24b90 + 337 ┊ 0.01% ┊ memcpy + 324 ┊ 0.01% ┊ ⤷ compiler_builtins::mem::memcpy::h07584e13d26e228b + 335 ┊ 0.01% ┊ <web_sys::features::gen_Node::Node as core::clone::Clone>::clone::h17de9261c41053b1 + 264 ┊ 0.01% ┊ ⤷ <web_sys::features::gen_EventTarget::EventTarget as core::clone::Clone>::clone::h05ef9c5f6e80e205 + 193 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::clone::Clone>::clone::hcd143c79a946b7f7 + 122 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::h0bebdafea4f48208 + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h946eae737fe1f162 + 333 ┊ 0.01% ┊ <wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource as wasm_bindgen::convert::traits::RefFromWasmAbi>::ref_from_abi::hfcef2b2e7bd49299 + 238 ┊ 0.00% ┊ ⤷ wasm_bindgen::__rt::WasmRefCell<T>::borrow::h36a6aaf7a183967f + 328 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h5a1208f713f1629b + 326 ┊ 0.01% ┊ alloc::sync::data_offset::h835ba56b19b6e60f + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h60432ca6fd31ce18 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h174ebb79c3eea596 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::ha0493ee280361913 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h6757de68320193ec + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h684b2a778db7e436 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h29880f1299397703 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h4a3f803aad43e532 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::hb4c3bce63f3c1f00 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::he2779eab33526b88 + 326 ┊ 0.01% ┊ alloc::raw_vec::RawVec<T,A>::current_memory::h763aa5601ec97734 + 326 ┊ 0.01% ┊ core::option::Option<T>::and_then::heccab0c1e87a7626 + 90 ┊ 0.00% ┊ ⤷ core::ops::function::FnOnce::call_once::h32960f33120d3a09 + 325 ┊ 0.01% ┊ core::option::Option<T>::unwrap_or_default::heaf9715306dcec19 + 114 ┊ 0.00% ┊ ⤷ <alloc::string::String as core::default::Default>::default::hed6e861a8d46627e + 321 ┊ 0.01% ┊ alloc::vec::Vec<T,A>::remove::h152d09f50f767034 + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h3bc090164215eb6b + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h82da8d9b3d4cf269 + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::haf72c3024102771f + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hdd5155fdfc4fd4e4 + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h296346b5323f10b3 + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h4088ebdc9e997aa4 + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hfcdd8f45a707ef0e + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::had5005be099a5018 + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hc0f9bf091d44057a + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h9ea8ef656da756ad + 320 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockWriteGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockWriteGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hf4178c2b1a07576a + 198 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h07c6aaa24c7e9980 + 319 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::boxed::Box<std::sync::mpmc::list::Block<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::h8698776687d2dbdb + 266 ┊ 0.01% ┊ ⤷ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h5a6f2b845e9727ef + 318 ┊ 0.01% ┊ dlmalloc::dlmalloc::Dlmalloc<A>::insert_large_chunk::h37edb9edd104b6bf + 317 ┊ 0.01% ┊ core::str::traits::<impl core::ops::index::Index<I> for str>::index::h282924f11b227ebd + 203 ┊ 0.00% ┊ ⤷ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::index::hf9e1a1bd9ab0b1f9 + 314 ┊ 0.01% ┊ export "intounderlyingbytesource_start" + 280 ┊ 0.01% ┊ ⤷ intounderlyingbytesource_start + 106 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::start::h2696f68e741eb419 + 313 ┊ 0.01% ┊ core::str::traits::<impl core::slice::index::SliceIndex<str> for core::ops::range::RangeFrom<usize>>::get::h53017c24101b3497 + 308 ┊ 0.01% ┊ std::panicking::begin_panic::h63928b74733cdced + 206 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::h1b1d22a7e73982dd + 175 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic::{{closure}}::hff47a458ad2c21cf + 305 ┊ 0.01% ┊ std::sync::poison::Flag::guard::h880c478638cad285 + 305 ┊ 0.01% ┊ std::sync::poison::Flag::guard::h358752b9136f3c4b + 305 ┊ 0.01% ┊ std::sync::poison::Flag::guard::h1f8c7b644d49c463 + 304 ┊ 0.01% ┊ js_sys::Promise::new::h2b88d427bd61c98b + 92 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::closures::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &mut dyn core::ops::function::FnMut<(A,B)>+Output = R>::into_abi::h37cbe4961a81637f + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_new_81740750da40724f + 303 ┊ 0.01% ┊ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index_mut::h69044a3afac47fc9 + 303 ┊ 0.01% ┊ <alloc::boxed::Box<T,A> as core::ops::drop::Drop>::drop::h1cf22ed30952e21b + 302 ┊ 0.01% ┊ core::str::<impl str>::starts_with::h4da792fd9487dabc + 216 ┊ 0.00% ┊ ⤷ <char as core::str::pattern::Pattern>::is_prefix_of::h663550d4d906abec + 301 ┊ 0.01% ┊ core::ptr::drop_in_place<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>::h3064a1049ced16a5 + 248 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>::hca145adfc0efdde7 + 179 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>::h955ec339a8b5ca20 + 300 ┊ 0.01% ┊ core::ptr::drop_in_place<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>::hb8802b7ad2f5368a + 247 ┊ 0.01% ┊ ⤷ core::ptr::drop_in_place<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>::h80cb004a4824a2ee + 178 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>::hca75d9473f0a9267 + 299 ┊ 0.01% ┊ std::sync::once_lock::OnceLock<T>::get::hc43ca98a83b82ca8 + 299 ┊ 0.01% ┊ std::sync::once_lock::OnceLock<T>::get::h9fca5b3382338279 + 298 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h0dfa6e7795815283 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::hc58efaf45f003fe0 + 298 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::hfa8aa7efb16fe40c + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h653692ab2d6ef604 + 298 ┊ 0.01% ┊ <core::result::Result<std::sync::rwlock::RwLockReadGuard<T>,std::sync::poison::PoisonError<std::sync::rwlock::RwLockReadGuard<T>>> as or_poisoned::OrPoisoned>::or_poisoned::h699fb9de57b76301 + 187 ┊ 0.00% ┊ ⤷ core::result::Result<T,E>::expect::h07d1c6a9b80a714f + 296 ┊ 0.01% ┊ core::cmp::max_by::h675c91e4f6be273e + 296 ┊ 0.01% ┊ core::cmp::max_by::hff0f480936706bb1 + 296 ┊ 0.01% ┊ core::cmp::max_by::hfc04c6041315a556 + 295 ┊ 0.01% ┊ core::slice::memchr::memchr_aligned::h0fc402833aaf246b + 291 ┊ 0.01% ┊ alloc::vec::Vec<T,A>::reserve::h9e7d140d6bc62d23 + 105 ┊ 0.00% ┊ ⤷ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h35d31f4188870a8c + 290 ┊ 0.01% ┊ <web_sys::features::gen_Node::Node as core::clone::Clone>::clone::hdfccdaf0a4010834 + 219 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_EventTarget::EventTarget as core::clone::Clone>::clone::hcd5773412c72e56f + 148 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::clone::Clone>::clone::h88fb7966d3720bf6 + 77 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::h2857a87e95f843d3 + 289 ┊ 0.01% ┊ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::hc23c9a8d63b80559 + 289 ┊ 0.01% ┊ <core::ops::range::Range<usize> as core::slice::index::SliceIndex<[T]>>::index::hf6bb45b12f715fcf + 288 ┊ 0.01% ┊ core::ptr::drop_in_place<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>::h92123e522609264d + 226 ┊ 0.00% ┊ ⤷ <send_wrapper::SendWrapper<T> as core::ops::drop::Drop>::drop::h39985e0b7cfa092a + 53 ┊ 0.00% ┊ ⤷ core::mem::needs_drop::hb1cc8e725b86ca66 + 53 ┊ 0.00% ┊ ⤷ core::mem::manually_drop::ManuallyDrop<T>::drop::hd39594ca141d5121 + 283 ┊ 0.01% ┊ rust_begin_unwind + 207 ┊ 0.00% ┊ ⤷ std::sys_common::backtrace::__rust_end_short_backtrace::h19f35d272c126e7c + 197 ┊ 0.00% ┊ ⤷ std::panicking::begin_panic_handler::{{closure}}::h24b0f4622f2766a5 + 282 ┊ 0.01% ┊ std::panicking::rust_panic_with_hook::h1e6ac5d404b8e31b + 18 ┊ 0.00% ┊ ⤷ rust_panic + 5 ┊ 0.00% ┊ ⤷ __rust_start_panic + 281 ┊ 0.01% ┊ core::alloc::layout::Layout::from_size_align::h31fe6795ab12906a + 281 ┊ 0.01% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::h47acd3c5fe0eeb75 + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_Element::Element>::is_none::h431d0109092e1931 + 281 ┊ 0.01% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for core::option::Option<T>>::from_abi::h7103848871d9af5b + 68 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl wasm_bindgen::convert::traits::OptionFromWasmAbi for web_sys::features::gen_Node::Node>::is_none::h8a1f12f597424b7e + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hcd985de8487923e7 + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hdd47720dcc20f2bd + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::hf6ecaac815b2d2bf + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h001ce6ec99cf1020 + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h37462e868cd5980a + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::h050a19e72e1f1dc7 + 278 ┊ 0.01% ┊ <alloc::sync::Arc<T,A> as core::clone::Clone>::clone::ha0494c33d6e44449 + 275 ┊ 0.01% ┊ export "intounderlyingsource_cancel" + 244 ┊ 0.00% ┊ ⤷ intounderlyingsource_cancel + 137 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::cancel::h26bdadbdcd844f89 + 75 ┊ 0.00% ┊ ⤷ core::mem::drop::h60eeaa2745adf013 + 272 ┊ 0.01% ┊ core::ptr::drop_in_place<reactive_graph::graph::sets::SourceSet>::h11f9f44f7bc0ba45 + 219 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::vec::Vec<reactive_graph::graph::source::AnySource>>::h9ded0fe756ec70cb + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::he161fe8b5940d80c + 269 ┊ 0.01% ┊ core::ops::function::FnOnce::call_once::h4a4582836d9359ad + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::hb3959105b5d9f260 + 269 ┊ 0.01% ┊ core::ops::function::FnOnce::call_once::ha7dea469991770f8 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h120dc4f31004a588 + 269 ┊ 0.01% ┊ core::ops::function::FnOnce::call_once::heb7ebe1209084688 + 189 ┊ 0.00% ┊ ⤷ core::cmp::impls::<impl core::cmp::Ord for usize>::cmp::h734f92b7b950887f + 263 ┊ 0.01% ┊ parking_lot_core::parking_lot::lock_bucket::heda632b7479f18be + 263 ┊ 0.01% ┊ alloc::alloc::exchange_malloc::h18b4bd7377a0743a + 263 ┊ 0.01% ┊ alloc::alloc::exchange_malloc::h95de1956643fab30 + 263 ┊ 0.01% ┊ alloc::alloc::exchange_malloc::hb9b1e377f1fc98e8 + 263 ┊ 0.01% ┊ alloc::alloc::exchange_malloc::h1ed72ca8c3a422b1 + 263 ┊ 0.01% ┊ send_wrapper::invalid_drop::h9f1c016483efc188 + 218 ┊ 0.00% ┊ ⤷ std::thread::panicking::hc3670ef883f14c50 + 182 ┊ 0.00% ┊ ⤷ std::panicking::panic_count::count_is_zero::h746700a49991a523 + 262 ┊ 0.01% ┊ <tachys::renderer::dom::Dom as tachys::renderer::Renderer>::get_parent::ha47c9f1ff85f2493 + 179 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::Node::parent_node::h9f295da500d344b6 + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_parentNode_6be3abff20e1a5fb + 259 ┊ 0.01% ┊ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h6c16d94324464fc9 + 259 ┊ 0.01% ┊ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::ha6bd47150280bfd4 + 259 ┊ 0.01% ┊ parking_lot_core::parking_lot::hash::hef049ab5a1f3ce98 + 259 ┊ 0.01% ┊ core::cell::once::OnceCell<T>::get_or_try_init::outlined_call::hdad00ebc9223661f + 66 ┊ 0.00% ┊ ⤷ std::thread::ThreadId::new::exhausted::h792d9ac6082d0b56 + 259 ┊ 0.01% ┊ web_sys::features::gen_Element::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Element::Element>::as_ref::h7548626b965199a9 + 202 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Node::Node>::as_ref::had70465cfdd97645 + 145 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_EventTarget::EventTarget>::as_ref::h535688809a620ec7 + 88 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for js_sys::Object>::as_ref::h31d149bd78f03a2c + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::h21df98d048d37370 + 255 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::new::hfc68a59159982c3d + 255 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::new::h7ab980b02559a428 + 255 ┊ 0.01% ┊ std::sync::rwlock::RwLock<T>::new::h4f4a12e1b7cd7135 + 253 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::mutex::MutexGuard<std::sync::mpmc::zero::Inner>>::he92e70490aee2d5a + 200 ┊ 0.00% ┊ ⤷ <std::sync::mutex::MutexGuard<T> as core::ops::drop::Drop>::drop::hb22469d28e4f2d42 + 253 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::mutex::MutexGuard<std::sync::mpmc::waker::Waker>>::h4461c41dbcaa52a8 + 200 ┊ 0.00% ┊ ⤷ <std::sync::mutex::MutexGuard<T> as core::ops::drop::Drop>::drop::h62319314aafa5695 + 253 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::mutex::MutexGuard<core::option::Option<std::sync::mpsc::Receiver<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>>::h2b9a9fa4c33c96d1 + 200 ┊ 0.00% ┊ ⤷ <std::sync::mutex::MutexGuard<T> as core::ops::drop::Drop>::drop::h38802f92a0981c3e + 251 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::hc005a766fd11a73e + 187 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::h60add44742746fa9 + 134 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<alloc::string::String>>::h7d7e692b48adc401 + 251 ┊ 0.01% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>::hbd3d8b3414caf7f1 + 187 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>>::hd0e1237910ebdc32 + 134 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::computed::inner::MemoInner<routing::params::ParamsMap>>::h6d882e6960d01a9a + 250 ┊ 0.01% ┊ alloc::fmt::format::h71d476d7bd3f91de + 250 ┊ 0.01% ┊ alloc::fmt::format::h375a36ea75450300 + 250 ┊ 0.01% ┊ core::sync::atomic::AtomicUsize::fetch_and::hf764f20f953ea505 + 250 ┊ 0.01% ┊ core::sync::atomic::AtomicUsize::fetch_sub::ha0b724182c878ddd + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>>>::h5966fdebc233b9dc + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::he7f0359305cde17d + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<u8>>::h8856a96798a1af4e + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h7ba535e4dc9c35a5 + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<reactive_graph::graph::subscriber::AnySubscriber>>::h35f84d8ef86bd071 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h70ffa0a1e4d113fc + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<reactive_graph::owner::arena::NodeId>>::hc62551a29e48b95e + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h8401af5bc989c9c5 + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<reactive_graph::graph::source::AnySource>>::hba646952b6894794 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::hdbb5295a38803263 + 250 ┊ 0.01% ┊ core::ptr::drop_in_place<alloc::raw_vec::RawVec<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>>>::h6361073595d0aa86 + 197 ┊ 0.00% ┊ ⤷ <alloc::raw_vec::RawVec<T,A> as core::ops::drop::Drop>::drop::h67c9bda40158d834 + 249 ┊ 0.01% ┊ core::ptr::drop_in_place<core::cell::RefMut<core::option::Option<reactive_graph::graph::subscriber::AnySubscriber>>>::hc508d1ee53d0c108 + 185 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::BorrowRefMut>::hab451a07a5f185f7 + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRefMut as core::ops::drop::Drop>::drop::h681269d26088091e + 248 ┊ 0.01% ┊ core::ptr::drop_in_place<[alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>]>::h786a140ec30fb79a + 81 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = ()+core::marker::Sync+core::marker::Send>>::h3404ccc814477167 + 246 ┊ 0.01% ┊ slotmap::KeyData::new::h28def790d0589b01 + 45 ┊ 0.00% ┊ ⤷ core::num::nonzero::NonZeroU32::new_unchecked::h7f9c1381013478a9 + 246 ┊ 0.01% ┊ core::array::<impl core::ops::index::Index<I> for [T; N]>::index::h4bc3709edea80ba5 + 155 ┊ 0.00% ┊ ⤷ core::slice::index::<impl core::ops::index::Index<I> for [T]>::index::hffb3d2d2efb72744 + 50 ┊ 0.00% ┊ ⤷ <core::ops::range::RangeFull as core::slice::index::SliceIndex<[T]>>::index::hd36c8b95037edffd + 245 ┊ 0.00% ┊ core::option::Option<T>::unwrap_or::hc518806406b6104f + 243 ┊ 0.00% ┊ std::sync::mpmc::zero::Packet<T>::wait_ready::h812a775330864ac7 + 239 ┊ 0.00% ┊ core::ptr::drop_in_place<hashbrown::scopeguard::ScopeGuard<hashbrown::raw::RawTableInner,hashbrown::raw::RawTableInner::prepare_resize<alloc::alloc::Global>::{{closure}}>>::h2167b0ad8af4f09b + 186 ┊ 0.00% ┊ ⤷ <hashbrown::scopeguard::ScopeGuard<T,F> as core::ops::drop::Drop>::drop::h545036a26a52d986 + 106 ┊ 0.00% ┊ ⤷ hashbrown::raw::RawTableInner::prepare_resize::{{closure}}::h059302db08249029 + 238 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hc735e2cf8fb1c333 + 146 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::traits::WasmRet<T> as core::convert::From<T>>::from::h1f6eb896e9fa84c9 + 237 ┊ 0.00% ┊ core::ptr::drop_in_place<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>::h730522fbf277b827 + 184 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::future::future::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>::h7b408a67d264b166 + 131 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::future::future::map::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource::pull::{{closure}}>>>::h93bbecb575d2619c + 237 ┊ 0.00% ┊ core::ptr::drop_in_place<futures_util::future::try_future::UnwrapOrElse<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>,wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>::hf16da94a317db5fa + 184 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::future::future::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>::hea302f3664e1db0e + 131 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::future::future::map::Map<futures_util::future::try_future::into_future::IntoFuture<futures_util::abortable::Abortable<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>,futures_util::fns::UnwrapOrElseFn<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::pull::{{closure}}>>>::h5fb57d414e6ae682 + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::h0cc610900850eaf1 + 236 ┊ 0.00% ┊ hashbrown::raw::RawTableInner::free_buckets::h2575729e9ac55d44 + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::hfd1ad5dad2ca3c77 + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::h77684e8ff546299c + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::h7911760501ca7db8 + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::h85931a1704a3dd71 + 236 ┊ 0.00% ┊ core::fmt::Arguments::new_const::hf79d0490e3b95764 + 235 ┊ 0.00% ┊ futures_core::task::__internal::atomic_waker::AtomicWaker::new::h7bf93b334bff0a85 + 59 ┊ 0.00% ┊ ⤷ core::sync::atomic::AtomicUsize::new::hebeb4c7e433a8393 + 234 ┊ 0.00% ┊ wasm_bindgen::convert::closures::invoke2_mut::h2f98b87e90a12a95 + 233 ┊ 0.00% ┊ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::h1783528081b68c4d + 233 ┊ 0.00% ┊ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::h6439a64efd8deab1 + 233 ┊ 0.00% ┊ <[A] as core::slice::cmp::SlicePartialEq<B>>::equal::h2827bd82ec0bea61 + 233 ┊ 0.00% ┊ core::panicking::panic_misaligned_pointer_dereference::hd4984591aebfc365 + 233 ┊ 0.00% ┊ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::h62c4d77db319c82b + 176 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for js_sys::Promise>::into_abi::h0c11c947dcbab911 + 119 ┊ 0.00% ┊ ⤷ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for js_sys::Object>::into_abi::hb87ae87cfa22d1bb + 62 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for wasm_bindgen::JsValue>::into_abi::hf2dd7034c33fa329 + 232 ┊ 0.00% ┊ alloc::raw_vec::finish_grow::h782bde3ec596d344 + 232 ┊ 0.00% ┊ <dyn core::ops::function::FnMut<(A,)>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::invoke::hc7f92d3bf5d9b9c0 + 232 ┊ 0.00% ┊ <dyn core::ops::function::FnMut<(A,)>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::invoke::h5913527d6bce4a80 + 232 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::valid::h52413fd9715bb743 + 94 ┊ 0.00% ┊ ⤷ <std::thread::ThreadId as core::cmp::PartialEq>::eq::h984655330178f844 + 230 ┊ 0.00% ┊ std::sync::mpmc::context::Context::new::hdf806b766c908274 + 230 ┊ 0.00% ┊ web_sys::features::gen_Node::Node::set_text_content::h7bcda4b16e768862 + 44 ┊ 0.00% ┊ ⤷ import wbg::__wbg_settextContent_d271bab459cbb1ba + 229 ┊ 0.00% ┊ alloc::raw_vec::handle_reserve::h6903d469b9cc6a4f + 229 ┊ 0.00% ┊ alloc::raw_vec::handle_reserve::h4f0aaca7e1c56643 + 229 ┊ 0.00% ┊ alloc::raw_vec::handle_reserve::h68825120e83659fc + 229 ┊ 0.00% ┊ alloc::raw_vec::handle_reserve::h9d97b05582d52f67 + 228 ┊ 0.00% ┊ web_sys::features::gen_Window::Window::location::h44870cc513d9f9db + 78 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Location::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Location::Location>::from_abi::h93d01e5ec055f122 + 38 ┊ 0.00% ┊ ⤷ import wbg::__wbg_location_2951b5ee34f19221 + 228 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h68372dfe128ac21d + 171 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl core::convert::From<web_sys::features::gen_Node::Node> for wasm_bindgen::JsValue>::from::h80f7109b30642e11 + 114 ┊ 0.00% ┊ ⤷ <T as core::convert::Into<U>>::into::h439b7b91e92e167c + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::From<web_sys::features::gen_EventTarget::EventTarget> for wasm_bindgen::JsValue>::from::h2255107b53216aa8 + 227 ┊ 0.00% ┊ core::option::Option<T>::unwrap_or_default::h204f031b1be2348a + 32 ┊ 0.00% ┊ ⤷ core::str::<impl core::default::Default for &str>::default::h10d3581e63121e31 + 226 ┊ 0.00% ┊ reactive_graph::graph::sets::SubscriberSet::new::h56af885d6bd21eb7 + 100 ┊ 0.00% ┊ ⤷ alloc::vec::Vec<T>::with_capacity::hd84ee35204cc0d17 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h9ec38d71f2faf6f4 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hf2240b8bade78339 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h72df2f5318365b9b + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hf8778fa19d8dd2a9 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h94b2efced705c66d + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::he0d5ebc2ec80fd4c + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h8bbd5fe592c84ff9 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h71e8c31e1abb6f39 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h53c63afa9670d675 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::h2249137a1ffdb5d2 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::ha12a4127d43c062d + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hf78a6611f26d691e + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::haafb8121233f5f44 + 223 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::deallocate::hec9d5bf93bbd1fa1 + 223 ┊ 0.00% ┊ core::slice::<impl [T]>::get::h3ac1c51df209afdc + 148 ┊ 0.00% ┊ ⤷ <usize as core::slice::index::SliceIndex<[T]>>::get::hf3436ca2133e417b + 222 ┊ 0.00% ┊ <core::option::Option<T> as core::clone::Clone>::clone::h98ff3d977a136f6a + 222 ┊ 0.00% ┊ hashbrown::raw::Bucket<T>::from_base_index::h75e0749ddd6fef0c + 219 ┊ 0.00% ┊ <std::collections::hash::map::HashMap<K,V,S> as core::default::Default>::default::haf19d71e18f40f6f + 219 ┊ 0.00% ┊ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &str>::into_abi::h74d5ee796cd1dbef + 47 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::unsafe_get_cached_str::h959d050044e5c8fa + 219 ┊ 0.00% ┊ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &str>::into_abi::h864337cf49a2be16 + 47 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::slices::unsafe_get_cached_str::h362b3b2cb47cb8c1 + 219 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<parking_lot_core::parking_lot::ThreadData>>::h8837d652e13914b2 + 140 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<parking_lot_core::parking_lot::ThreadData>::h43b513e72fab218d + 87 ┊ 0.00% ┊ ⤷ <parking_lot_core::parking_lot::ThreadData as core::ops::drop::Drop>::drop::h2632b9e047548e30 + 219 ┊ 0.00% ┊ <web_sys::features::gen_EventTarget::EventTarget as core::clone::Clone>::clone::h78aebdf354a9f46f + 148 ┊ 0.00% ┊ ⤷ <js_sys::Object as core::clone::Clone>::clone::h10c276bbee005672 + 77 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::clone::Clone>::clone::he31a1fef6b0042d9 + 219 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::vec::Vec<reactive_graph::graph::subscriber::AnySubscriber>>::h68fab0b1ce633815 + 161 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h89d9bd374e7cfd59 + 215 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::mpmc::waker::SyncWaker>::h3051352a582b65b0 + 117 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<std::sync::mutex::Mutex<std::sync::mpmc::waker::Waker>>::h331cb7e0b190f17f + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<std::sync::mpmc::waker::Waker>>::h338a49e4a8f3c7be + 40 ┊ 0.00% ┊ ⤷ <std::sync::mpmc::waker::SyncWaker as core::ops::drop::Drop>::drop::ha17b6e701cac049a + 212 ┊ 0.00% ┊ std::sync::rwlock::RwLock<T>::new::h519feeb80a18a589 + 212 ┊ 0.00% ┊ std::sync::rwlock::RwLock<T>::new::h96ffa8a1dcc1066f + 211 ┊ 0.00% ┊ tachys::hydration::Cursor<R>::set::h7f388df41381b1b6 + 208 ┊ 0.00% ┊ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h88525aad0d39db78 + 207 ┊ 0.00% ┊ std::sync::mpmc::list::Slot<T>::wait_write::h39a630538a5caded + 207 ┊ 0.00% ┊ reactive_graph::graph::sets::SubscriberSet::take::h2eae4283914387cd + 152 ┊ 0.00% ┊ ⤷ core::mem::take::hda31343bf94eb4b7 + 206 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_bindgen::__rt::Ref<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource>>::hedf041393e991a80 + 153 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::Ref<T> as core::ops::drop::Drop>::drop::h9701ae9125435b08 + 202 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Node::Node>::as_ref::h576aab86049b6e37 + 145 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_EventTarget::EventTarget>::as_ref::h9b6f71151531a0dc + 88 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for js_sys::Object>::as_ref::h2607c8759c113986 + 31 ┊ 0.00% ┊ ⤷ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::h7aa3374c8067814c + 197 ┊ 0.00% ┊ wasm_bindgen::__rt::take_last_exception::h151ae8dff8bfbab5 + 197 ┊ 0.00% ┊ memset + 184 ┊ 0.00% ┊ ⤷ compiler_builtins::mem::memset::hd49c44cbd0862c04 + 194 ┊ 0.00% ┊ parking_lot_core::spinwait::cpu_relax::h0b3df56558f2e91e + 191 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::mpmc::zero::Packet<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::he52cbfc4db6bdd92 + 138 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<core::option::Option<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>>::ha3b1426257e30e98 + 85 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>>::h0405ed1fe7597e53 + 189 ┊ 0.00% ┊ web_sys::features::gen_console::console::warn_3::h9a2313a343206302 + 34 ┊ 0.00% ┊ ⤷ import wbg::__wbg_warn_e0db9e9efb5d8cd4 + 188 ┊ 0.00% ┊ parking_lot_core::word_lock::WordLock::lock::h840ad35ccb4d15f6 + 188 ┊ 0.00% ┊ core::num::<impl usize>::checked_add::h3b259b1af1c58b25 + 186 ┊ 0.00% ┊ alloc::vec::Vec<T,A>::reserve::h31f46c348243e8d0 + 185 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::BorrowRefMut>::h08108b1089ba9108 + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRefMut as core::ops::drop::Drop>::drop::h943a11b6e4080444 + 185 ┊ 0.00% ┊ core::ptr::drop_in_place<futures_util::sink::send::Send<core::pin::Pin<alloc::boxed::Box<dyn futures_sink::Sink<wasm_bindgen::JsValue>+Error = wasm_bindgen::JsValue>>,wasm_bindgen::JsValue>>::h3d6a21fd059a1663 + 132 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<futures_util::sink::feed::Feed<core::pin::Pin<alloc::boxed::Box<dyn futures_sink::Sink<wasm_bindgen::JsValue>+Error = wasm_bindgen::JsValue>>,wasm_bindgen::JsValue>>::h069845dcee8d15b0 + 79 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::option::Option<wasm_bindgen::JsValue>>::hd3ffa8555e47f702 + 185 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::BorrowRefMut>::hee2ca56c27be85c0 + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRefMut as core::ops::drop::Drop>::drop::h3dc4dd3d4270897d + 185 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::BorrowRef>::hfc04f0c22142e535 + 132 ┊ 0.00% ┊ ⤷ <core::cell::BorrowRef as core::ops::drop::Drop>::drop::h6e605c99a00fef80 + 184 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_byte_source::Inner::pull::{{closure}}>::h303b6d944cca8e76 + 184 ┊ 0.00% ┊ core::result::Result<T,E>::unwrap::hacce1ecca6e00c2f + 183 ┊ 0.00% ┊ <T as core::any::Any>::type_id::h900b7aba44415d88 + 183 ┊ 0.00% ┊ <T as core::any::Any>::type_id::h37168ea5a095efab + 183 ┊ 0.00% ┊ js_sys::Array::get::hdf9060a0cb4317cf + 33 ┊ 0.00% ┊ ⤷ import wbg::__wbg_get_bd8e338fbd5f5cc8 + 182 ┊ 0.00% ┊ std::panicking::panic_count::count_is_zero::hb63494a004e553d4 + 182 ┊ 0.00% ┊ std::panicking::panic_count::count_is_zero::hc9c85a1555c63dfb + 182 ┊ 0.00% ┊ std::panicking::panic_count::count_is_zero::h76c44cdcc82d9b75 + 182 ┊ 0.00% ┊ <T as core::any::Any>::type_id::h843aceb2f7b6638e + 181 ┊ 0.00% ┊ std::thread::park::hcd2b13d32d9d7353 + 181 ┊ 0.00% ┊ <T as core::any::Any>::type_id::ha827a159d038bcfd + 180 ┊ 0.00% ┊ web_sys::features::gen_Node::Node::next_sibling::hcc34cae0dd20b6c0 + 41 ┊ 0.00% ┊ ⤷ import wbg::__wbg_nextSibling_709614fdb0fb7a66 + 179 ┊ 0.00% ┊ core::option::Option<T>::expect::h7ffc055fbb8ee526 + 179 ┊ 0.00% ┊ std::sync::mpmc::list::Block<T>::wait_next::h2f38c13aa95cca3d + 179 ┊ 0.00% ┊ web_sys::features::gen_Node::Node::first_child::hf0c46a81db3fa98e + 40 ┊ 0.00% ┊ ⤷ import wbg::__wbg_firstChild_a10db88beca6812e + 178 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::write::{{closure}}>::h26a7476fb68a9649 + 178 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::vec::Vec<u8>>::h7764ee2389f16df7 + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::h1e9332725ee0c924 + 178 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::vec::Vec<reactive_graph::owner::arena::NodeId>>::hd021484026479fbb + 120 ┊ 0.00% ┊ ⤷ <alloc::vec::Vec<T,A> as core::ops::drop::Drop>::drop::hd67fe59d562d40db + 177 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::computed::inner::MemoInner<alloc::string::String>>>::h9f2b483b64464404 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::ha76533b66be57946 + 177 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::owner::OwnerInner>>::h01cebc4b085b1097 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::hae17b72a7e8b45de + 177 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<core::option::Option<leptos::text_prop::TextProp>>>::h3461b9675457ada5 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h78b2ffcbce98fc08 + 177 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<core::option::Option<leptos_meta::title::Formatter>>>::haeff92a7b524d947 + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h2894be3d0470230f + 177 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLockReadGuard<reactive_graph::owner::OwnerInner>>::h49b5a9ad8018004c + 124 ┊ 0.00% ┊ ⤷ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::drop::Drop>::drop::h78d60fcb71fab349 + 176 ┊ 0.00% ┊ core::slice::<impl [T]>::iter::h350164420a4f8b68 + 175 ┊ 0.00% ┊ <core::option::Option<T> as core::ops::try_trait::Try>::branch::h036a3a00f210aa3b + 174 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::abort::{{closure}}>::hca9aa97620c805b0 + 173 ┊ 0.00% ┊ reactive_graph::computed::inner::<impl reactive_graph::graph::source::Source for std::sync::rwlock::RwLock<reactive_graph::computed::inner::MemoInner<T>>>::add_subscriber::h054d9f50dc8121df + 173 ┊ 0.00% ┊ alloc::vec::Vec<T>::from_raw_parts::h1c46135c87acf068 + 173 ┊ 0.00% ┊ web_sys::features::gen_CharacterData::CharacterData::remove::hc327e9886eb8ff12 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_CharacterData::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_CharacterData::CharacterData>::into_abi::h0fb7fdad1c5b7851 + 36 ┊ 0.00% ┊ ⤷ import wbg::__wbg_remove_272176cc6b9583a0 + 172 ┊ 0.00% ┊ <dyn core::ops::function::Fn<()>+Output = R as wasm_bindgen::closure::WasmClosure>::describe::invoke::hdebe3d39d36fd2bb + 171 ┊ 0.00% ┊ alloc::string::String::as_str::hd9e8d945ad20de21 + 171 ┊ 0.00% ┊ <alloc::string::String as core::ops::deref::Deref>::deref::h1bdea69e2cfdd674 + 171 ┊ 0.00% ┊ <alloc::string::String as core::ops::deref::Deref>::deref::hc1df5c0cf1d9e594 + 171 ┊ 0.00% ┊ <alloc::string::String as core::ops::deref::Deref>::deref::h267600111e3b0bb9 + 171 ┊ 0.00% ┊ <alloc::string::String as core::ops::deref::Deref>::deref::ha949c814ba5bc3d4 + 171 ┊ 0.00% ┊ <alloc::string::String as core::convert::AsRef<str>>::as_ref::ha1ea19c67e1ab0c6 + 171 ┊ 0.00% ┊ <alloc::string::String as core::ops::deref::Deref>::deref::hfb5bba7bf6131553 + 170 ┊ 0.00% ┊ wasm_bindgen::convert::traits::WasmRet<T>::join::he654818d52ebe543 + 78 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::slices::WasmSlice as wasm_bindgen::convert::traits::WasmAbi>::join::h6483176d68c3601b + 168 ┊ 0.00% ┊ export "__wbg_intounderlyingsink_free" + 135 ┊ 0.00% ┊ ⤷ __wbg_intounderlyingsink_free + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink>::h8b440c6fc2ac8255 + 168 ┊ 0.00% ┊ core::ptr::drop_in_place<[routing::nested_router::RouteContext<tachys::renderer::dom::Dom>]>::h50e669abb0110d21 + 167 ┊ 0.00% ┊ core::ptr::drop_in_place<[std::sync::mpmc::waker::Entry]>::hbd49800b5e25e838 + 167 ┊ 0.00% ┊ core::ptr::drop_in_place<[reactive_graph::graph::source::AnySource]>::hdb28e421dfb32890 + 167 ┊ 0.00% ┊ core::ptr::drop_in_place<[reactive_graph::graph::subscriber::AnySubscriber]>::hd503748f54ae332f + 166 ┊ 0.00% ┊ std::sync::poison::Flag::done::h4893a0b89ff5245b + 166 ┊ 0.00% ┊ std::sync::poison::Flag::done::h50eaa2bf58bdc73b + 166 ┊ 0.00% ┊ std::sync::poison::Flag::done::h5348df56fd1c4cf5 + 164 ┊ 0.00% ┊ alloc::boxed::Box<T,A>::into_raw::h4f6ef360fd12fb94 + 163 ┊ 0.00% ┊ core::any::TypeId::of::hd6160ae826e5605b + 163 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h196e68601c0a4a10 + 78 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::traits::WasmRet<T> as core::convert::From<T>>::from::h1211d7118319a95a + 162 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink::close::{{closure}}>::h89ac431d56bfa02e + 160 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::new::h0492028d0e5858a0 + 160 ┊ 0.00% ┊ js_sys::Array::is_array::h218a40cb482cdba3 + 37 ┊ 0.00% ┊ ⤷ import wbg::__wbg_isArray_2ab64d95e09ea0ae + 157 ┊ 0.00% ┊ <tachys::view::any_view::AnyView<R> as tachys::view::RenderHtml<R>>::hydrate::h261e67579f03886d + 156 ┊ 0.00% ┊ wasm_bindgen::convert::slices::<impl wasm_bindgen::convert::traits::FromWasmAbi for alloc::string::String>::from_abi::h8200ae3303ae64c2 + 55 ┊ 0.00% ┊ ⤷ alloc::string::String::from_utf8_unchecked::h9e9275cf8bfb893e + 154 ┊ 0.00% ┊ <send_wrapper::SendWrapper<T> as core::ops::deref::Deref>::deref::h82da0f0c34bbdccf + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h4c143080f6f19f2d + 154 ┊ 0.00% ┊ <send_wrapper::SendWrapper<T> as core::ops::deref::Deref>::deref::h24b0d4d1e5e2017a + 79 ┊ 0.00% ┊ ⤷ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h0ce0c445954bd83b + 152 ┊ 0.00% ┊ core::mem::take::h15d0b1a691ce7cf1 + 152 ┊ 0.00% ┊ core::mem::take::hb7e8f2cec9cbcc31 + 151 ┊ 0.00% ┊ export "intounderlyingbytesource_cancel" + 116 ┊ 0.00% ┊ ⤷ intounderlyingbytesource_cancel + 20 ┊ 0.00% ┊ ⤷ wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource::cancel::h9cd03ef4fd73a4dc + 10 ┊ 0.00% ┊ ⤷ core::mem::drop::h9b9a5937d66a2d55 + 151 ┊ 0.00% ┊ core::ptr::drop_in_place<routing::nested_router::RouteContext<tachys::renderer::dom::Dom>>::hb42b059b9be94b60 + 149 ┊ 0.00% ┊ export "__wbg_intounderlyingsource_free" + 114 ┊ 0.00% ┊ ⤷ __wbg_intounderlyingsource_free + 149 ┊ 0.00% ┊ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::h02ff07342307104b + 149 ┊ 0.00% ┊ <alloc::vec::Vec<T,A> as core::ops::deref::Deref>::deref::hc830a1887dd09a11 + 149 ┊ 0.00% ┊ <alloc::vec::Vec<T,A> as core::ops::deref::DerefMut>::deref_mut::hc006e046c30a5772 + 149 ┊ 0.00% ┊ parking_lot::raw_rwlock::RawRwLock::deadlock_acquire::haac55ff97d52595e + 29 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::deadlock::acquire_resource::h5c1acde63312b70a + 149 ┊ 0.00% ┊ parking_lot::raw_rwlock::RawRwLock::deadlock_release::ha5084faa8f98450d + 29 ┊ 0.00% ┊ ⤷ parking_lot_core::parking_lot::deadlock::release_resource::h76a26338f012ae37 + 149 ┊ 0.00% ┊ core::fmt::Write::write_fmt::h7a05d712e6ef791d + 79 ┊ 0.00% ┊ ⤷ <&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hde6ee19f0cd6eceb + 148 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::Inner::write::{{closure}}>::h8f42d3433f069c7f + 148 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::readable::into_underlying_source::Inner::pull::{{closure}}>::h96f10a904a27aea9 + 145 ┊ 0.00% ┊ core::option::Option<T>::expect::h4b9bdbb25578be30 + 145 ┊ 0.00% ┊ wasm_bindgen::__rt::assert_not_null::h78b5935619ec50ff + 68 ┊ 0.00% ┊ ⤷ core::ptr::mut_ptr::<impl *mut T>::is_null::h60952ef8b5b58378 + 145 ┊ 0.00% ┊ wasm_bindgen::__rt::assert_not_null::h927b702d1618b4b5 + 68 ┊ 0.00% ┊ ⤷ core::ptr::mut_ptr::<impl *mut T>::is_null::h3ce14bd4f776e371 + 145 ┊ 0.00% ┊ wasm_bindgen::__rt::assert_not_null::hd2b42930fde368f0 + 68 ┊ 0.00% ┊ ⤷ core::ptr::mut_ptr::<impl *mut T>::is_null::h7f9b3968d8e26890 + 145 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sys::wasm::once::CompletionGuard>::heb2d1ccc423fb06a + 92 ┊ 0.00% ┊ ⤷ <std::sys::wasm::once::CompletionGuard as core::ops::drop::Drop>::drop::h107f9a30df9920e5 + 143 ┊ 0.00% ┊ std::thread::current::h37de2be4ed99a1eb + 142 ┊ 0.00% ┊ <web_sys::features::gen_HtmlTitleElement::HtmlTitleElement as core::clone::Clone>::clone::h7b30a06a7be553ed + 71 ┊ 0.00% ┊ ⤷ <web_sys::features::gen_HtmlElement::HtmlElement as core::clone::Clone>::clone::hfa2cb53863a1055a + 141 ┊ 0.00% ┊ parking_lot_core::parking_lot::get_hashtable::h252fd7f37c1e513b + 141 ┊ 0.00% ┊ <core::result::Result<T,E> as core::ops::try_trait::Try>::branch::h88311d79bebe5108 + 140 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h9b5be01d893e5685 + 140 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h6b8d2a35a9bb7217 + 140 ┊ 0.00% ┊ core::ptr::drop_in_place<oco::Oco<str>>::h9f08f0e1e674aa41 + 140 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h10e4824dfa3537e4 + 140 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h3f1c3066582e33fe + 140 ┊ 0.00% ┊ <&str as tachys::html::attribute::value::AttributeValue<R>>::hydrate::h318d674629cdbf0f + 138 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::valid::h622df21f52d37e04 + 138 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::valid::h43babde6ff53e0ec + 138 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::valid::h06a783ccd7644ed7 + 138 ┊ 0.00% ┊ wasm_bindgen::__rt::WasmRefCell<T>::borrow_mut::h4155249dec30b035 + 138 ┊ 0.00% ┊ wasm_bindgen::__rt::WasmRefCell<T>::borrow_mut::h6532f17751d5c2ac + 138 ┊ 0.00% ┊ wasm_bindgen::__rt::WasmRefCell<T>::borrow_mut::hf14d2dfa464dd380 + 138 ┊ 0.00% ┊ core::result::unwrap_failed::hd86007cff22dcd83 + 136 ┊ 0.00% ┊ alloc::sync::arcinner_layout_for_value_layout::hfa4717d9f33eddcc + 135 ┊ 0.00% ┊ web_sys::features::gen_Event::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Event::Event>::from_abi::hd949f92201584740 + 57 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::hac4bd9f3e29d9b67 + 135 ┊ 0.00% ┊ wasm_bindgen::cast::JsCast::unchecked_into::hd3a12550d9df6f3e + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Element::Element>::unchecked_from_js::h2b3604f88bbc2707 + 134 ┊ 0.00% ┊ alloc::sync::Weak<T,A>::as_ptr::hed43a4eec0b4c8ac + 134 ┊ 0.00% ┊ alloc::sync::Weak<T,A>::as_ptr::hd5fc66c73b25dba3 + 134 ┊ 0.00% ┊ core::option::Option<T>::as_ref::ha1fc0368b0b53d2a + 134 ┊ 0.00% ┊ core::option::Option<T>::as_ref::h70993defea51ea7b + 134 ┊ 0.00% ┊ core::result::Result<T,E>::expect::heaf0b2d1bdfb870f + 133 ┊ 0.00% ┊ wasm_bindgen::JsValue::from_str::h515d2bf7de10bb4f + 38 ┊ 0.00% ┊ ⤷ core::str::<impl str>::len::h37ec725a01234718 + 129 ┊ 0.00% ┊ export "__wbg_intounderlyingbytesource_free" + 90 ┊ 0.00% ┊ ⤷ __wbg_intounderlyingbytesource_free + 129 ┊ 0.00% ┊ core::option::Option<T>::is_none::h2b5b1c1433fe0791 + 129 ┊ 0.00% ┊ core::ptr::drop_in_place<core::task::wake::Waker>::h1e6bfcad0d124f83 + 76 ┊ 0.00% ┊ ⤷ <core::task::wake::Waker as core::ops::drop::Drop>::drop::hacd8d3435e86eca5 + 129 ┊ 0.00% ┊ core::ptr::drop_in_place<core::task::wake::Waker>::h0ff61ede93ec9160 + 76 ┊ 0.00% ┊ ⤷ <core::task::wake::Waker as core::ops::drop::Drop>::drop::h486b50717f3ca726 + 128 ┊ 0.00% ┊ export "_dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc7f92d3bf5d9b9c0" + 128 ┊ 0.00% ┊ export "_dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h5913527d6bce4a80" + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h15a7bca75ff80e18 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_HtmlElement::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_HtmlElement::HtmlElement>::from::h54ee0e396456240a + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h32e51cb3b2efd961 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_EventTarget::EventTarget>::from::hcf99352c2d037e25 + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h441eb44a9ef561b2 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Node::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_Node::Node>::from::h342197998570e1b1 + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::he0a12eb94b365138 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_CharacterData::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_CharacterData::CharacterData>::from::hacbc3e24672d5ab8 + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hf63c1bb70e139127 + 71 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl core::convert::From<wasm_bindgen::JsValue> for web_sys::features::gen_Element::Element>::from::he97f12ec00db9a97 + 128 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hce3f20620390e848 + 71 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<wasm_bindgen::JsValue> for js_sys::Object>::from::h6f60b84f17749da1 + 126 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::compare_exchange_weak::h7115420247389b5c + 126 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::compare_exchange_weak::h3e1695db5de73c0e + 126 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::compare_exchange_weak::h673a0f2f30e950b1 + 125 ┊ 0.00% ┊ <core::option::Option<T> as core::clone::Clone>::clone::h66775b818976bcec + 125 ┊ 0.00% ┊ <core::option::Option<T> as core::clone::Clone>::clone::h306a3795d594d3a1 + 123 ┊ 0.00% ┊ export "_dyn_core__ops__function__Fn_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hdebe3d39d36fd2bb" + 123 ┊ 0.00% ┊ core::mem::replace::h9af1685005f098b5 + 121 ┊ 0.00% ┊ wasm_bindgen::JsValue::is_string::hfc59d015d49bfb8a + 27 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_is_string + 121 ┊ 0.00% ┊ <web_sys::features::gen_Element::Element as core::convert::AsRef<web_sys::features::gen_Node::Node>>::as_ref::hf4c528705e856342 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Element::Element>::as_ref::h10096127c6c40066 + 121 ┊ 0.00% ┊ <web_sys::features::gen_Comment::Comment as core::convert::AsRef<web_sys::features::gen_Node::Node>>::as_ref::h46314d610d6a4b3c + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Comment::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Comment::Comment>::as_ref::h269ac73c7a2ce018 + 121 ┊ 0.00% ┊ <web_sys::features::gen_Text::Text as core::convert::AsRef<web_sys::features::gen_Node::Node>>::as_ref::h2929e72a4f67c84f + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Text::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Text::Text>::as_ref::hf42c079b983f3cf7 + 120 ┊ 0.00% ┊ __multi3 + 8 ┊ 0.00% ┊ ⤷ type[48]: (i32, i64, i64, i64, i64) -> nil + 120 ┊ 0.00% ┊ <reactive_graph::graph::sets::SourceSet as core::default::Default>::default::hf0ca5d6ef1101958 + 120 ┊ 0.00% ┊ <reactive_graph::graph::sets::SourceSet as core::default::Default>::default::h70bf278798e5841d + 120 ┊ 0.00% ┊ reactive_graph::graph::sets::SourceSet::new::hbcdb3ffff678fa50 + 119 ┊ 0.00% ┊ core::option::Option<T>::is_some::h2c7a7c6f4b483657 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<routing::nested_router::NestedRouteViewState<leptos::into_view::View<&str>,tachys::renderer::dom::Dom>>>::h1fb41e52d471c0aa + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<(alloc::borrow::Cow<str>,alloc::string::String)>>::hb6ebb9546b32b0ac + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<oco::Oco<str>>>::hcdc5f0fe5d6acc02 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<routing::params::ParamsMap>>::h2cfadd8dc0a85c86 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::borrow::Cow<str>>::h094ff6d4e38d2b13 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::string::String>>::haf4c4e63f61548d4 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::borrow::Cow<str>>>::h42398d36b5475e0c + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_bindgen::__rt::RefMut<wasm_streams::writable::into_underlying_sink::IntoUnderlyingSink>>::h396110af6f59c243 + 66 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::RefMut<T> as core::ops::drop::Drop>::drop::h7398723ccd2650cc + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_bindgen::__rt::RefMut<wasm_streams::readable::into_underlying_source::IntoUnderlyingSource>>::hcde0c7c4b7c55bfe + 66 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::RefMut<T> as core::ops::drop::Drop>::drop::ha92fca2449fd8bf1 + 119 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_bindgen::__rt::RefMut<wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource>>::h506dc384cc0eca37 + 66 ┊ 0.00% ┊ ⤷ <wasm_bindgen::__rt::RefMut<T> as core::ops::drop::Drop>::drop::hb651f179c886f288 + 118 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h952f8bd0921d505b + 118 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::allocate::hc615eb1cb21f1ea2 + 118 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h1243977a96a66c2b + 118 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::allocate_zeroed::h482ed95306315467 + 118 ┊ 0.00% ┊ <alloc::alloc::Global as core::alloc::Allocator>::allocate::h8589d5cde2957343 + 117 ┊ 0.00% ┊ core::ptr::drop_in_place<routing::location::Url>::ha731b1f671943733 + 117 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<send_wrapper::SendWrapper<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>>>::hd1199789a27c251d + 117 ┊ 0.00% ┊ <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h1850c9a66bfecc2d + 117 ┊ 0.00% ┊ alloc::vec::Vec<T,A>::remove::assert_failed::hc52e09440d0922d5 + 117 ┊ 0.00% ┊ core::slice::index::slice_start_index_len_fail::hcf0397736729de60 + 117 ┊ 0.00% ┊ core::panicking::panic_bounds_check::h29a91b9711c376af + 117 ┊ 0.00% ┊ core::slice::index::slice_end_index_len_fail::h9a753e8fe2fb89b9 + 117 ┊ 0.00% ┊ core::slice::index::slice_index_order_fail::hc9e96c77993e8a69 + 117 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::h783ffec0bfd3ebce + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<core::cell::UnsafeCell<reactive_graph::graph::sets::SubscriberSet>>::hbcbaefa162c257da + 116 ┊ 0.00% ┊ <reactive_graph::graph::node::ReactiveNodeState as core::cmp::PartialEq>::eq::hf80c0f255488c009 + 116 ┊ 0.00% ┊ <tachys::view::Position as core::cmp::PartialEq>::eq::h2ed1f79660cb5f45 + 115 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>>::h11457e2d33ed6427 + 114 ┊ 0.00% ┊ std::thread::Thread::id::ha3e7603174030aa7 + 114 ┊ 0.00% ┊ std::thread::Thread::id::h1c7486ee342f6464 + 114 ┊ 0.00% ┊ core::panicking::panic_nounwind_fmt::hb0f3e7b21274dca1 + 114 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_Node::Node>::as_ref::had4ab2dbdf840f99 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_EventTarget::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_EventTarget::EventTarget>::as_ref::haf2e083fa655d652 + 114 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h8f32acf97fa5d852 + 57 ┊ 0.00% ┊ ⤷ web_sys::features::gen_Element::_::<impl core::convert::From<web_sys::features::gen_Element::Element> for wasm_bindgen::JsValue>::from::h9e84b68b62b3a277 + 114 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h5974866ade19eed9 + 57 ┊ 0.00% ┊ ⤷ js_sys::_::<impl core::convert::From<js_sys::Object> for wasm_bindgen::JsValue>::from::hb226e2dbbee8eeb2 + 112 ┊ 0.00% ┊ <reactive_graph::signal::arc_rw::ArcRwSignal<T> as core::clone::Clone>::clone::hfea89b547e59a37c + 112 ┊ 0.00% ┊ <alloc::string::String as core::clone::Clone>::clone::h00c89c4aab9d0d1a + 111 ┊ 0.00% ┊ <tachys::view::any_view::AnyView<R> as tachys::view::Render<R>>::rebuild::hb8473d265901f18e + 110 ┊ 0.00% ┊ core::option::Option<T>::take::h25ac01769e3ea051 + 109 ┊ 0.00% ┊ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::h59a8a35996b03105 + 109 ┊ 0.00% ┊ core::option::Option<T>::expect::hbeae481503907278 + 109 ┊ 0.00% ┊ core::option::Option<T>::expect::h9b14fb8bf544da84 + 109 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hda35f761ea3da437 + 65 ┊ 0.00% ┊ ⤷ <wasm_bindgen::convert::traits::WasmRet<T> as core::convert::From<T>>::from::ha3b44ec76f618f86 + 21 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::split::h97af98e62d3bf326 + 108 ┊ 0.00% ┊ <reactive_graph::owner::Owner as core::clone::Clone>::clone::h4853e724745ccf4c + 107 ┊ 0.00% ┊ <reactive_graph::graph::sets::SourceSet as core::clone::Clone>::clone::h2639cbccc064918f + 107 ┊ 0.00% ┊ <reactive_graph::graph::sets::SubscriberSet as core::clone::Clone>::clone::h884cd52734c57453 + 106 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::Inner::abort::{{closure}}>::hd48afca5fdad3768 + 106 ┊ 0.00% ┊ core::option::Option<T>::unwrap::hb00544dfb99f4d52 + 106 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::guards::ReadGuard<routing::params::ParamsMap,reactive_graph::signal::guards::Plain<routing::params::ParamsMap>>>::he7e98173c5126d81 + 53 ┊ 0.00% ┊ ⤷ core::ptr::drop_in_place<reactive_graph::signal::guards::Plain<routing::params::ParamsMap>>::h3ad194d6b1cf0918 + 105 ┊ 0.00% ┊ core::ptr::drop_in_place<either_of::Either<tachys::view::strings::StrState<tachys::renderer::dom::Dom>,tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>>::hd0f3baed94eac075 + 105 ┊ 0.00% ┊ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::branch::hddefbe4121e47d5a + 105 ┊ 0.00% ┊ alloc::raw_vec::RawVec<T,A>::reserve::do_reserve_and_handle::h0f320de9db90b60f + 103 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h65c9f58abfd2b62c + 102 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::h4598fc7f54f7ea0e + 45 ┊ 0.00% ┊ ⤷ wasm_bindgen::JsValue::_new::h24ae9c6307bb14ae + 101 ┊ 0.00% ┊ core::panicking::assert_failed::h5be2f46ecc1de8a3 + 101 ┊ 0.00% ┊ core::panicking::assert_failed::h7d3b811dd8523845 + 101 ┊ 0.00% ┊ core::panicking::assert_failed::h8eeb888c63b1fdc0 + 101 ┊ 0.00% ┊ core::panicking::assert_failed::h0c05d62da1d5a7b7 + 101 ┊ 0.00% ┊ core::panicking::assert_failed::ha1b21b30b794d09d + 100 ┊ 0.00% ┊ <reactive_graph::graph::sets::SubscriberSet as core::iter::traits::collect::IntoIterator>::into_iter::he16a7dd207992c27 + 99 ┊ 0.00% ┊ core::ptr::drop_in_place<core::result::Result<web_sys::features::gen_Node::Node,wasm_bindgen::JsValue>>::ha8eb820ef021e90b + 99 ┊ 0.00% ┊ core::ptr::drop_in_place<core::result::Result<wasm_bindgen::JsValue,wasm_bindgen::JsValue>>::h0ac22c5eeb3de160 + 99 ┊ 0.00% ┊ alloc::sync::Arc<T,A>::drop_slow::he08372b56413e228 + 99 ┊ 0.00% ┊ core::option::Option<T>::as_ref::h0127134c12cd4f67 + 99 ┊ 0.00% ┊ core::option::Option<T>::as_ref::hcf4b28abda0d039e + 99 ┊ 0.00% ┊ core::option::Option<T>::as_ref::h51465e1a5ec0187f + 97 ┊ 0.00% ┊ <reactive_graph::graph::subscriber::AnySubscriber as core::clone::Clone>::clone::h366039a23e62920b + 97 ┊ 0.00% ┊ <reactive_graph::graph::subscriber::AnySubscriber as core::clone::Clone>::clone::hc1fc8a097a01e583 + 97 ┊ 0.00% ┊ core::task::wake::Waker::wake::h0c0c4d71d65f475f + 97 ┊ 0.00% ┊ <core::hash::BuildHasherDefault<H> as core::hash::BuildHasher>::build_hasher::h5c74ce39ee873b1a + 42 ┊ 0.00% ┊ ⤷ <rustc_hash::FxHasher as core::default::Default>::default::h576aff7ed1e67ead + 96 ┊ 0.00% ┊ <tachys::view::any_view::AnyViewState<R> as tachys::view::Mountable<R>>::mount::h9af8f30f9049a254 + 96 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h374c01864ba49f8b + 96 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h3d64b876281edcc2 + 96 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h24482bd60edcaac3 + 96 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h264c7f0784851a59 + 95 ┊ 0.00% ┊ <wasm_streams::readable::into_underlying_byte_source::IntoUnderlyingByteSource as wasm_bindgen::convert::traits::RefMutFromWasmAbi>::ref_mut_from_abi::hce236bdd806714a0 + 95 ┊ 0.00% ┊ core::option::expect_failed::h65a8ce8e046de7db + 94 ┊ 0.00% ┊ <std::thread::ThreadId as core::cmp::PartialEq>::eq::he20e60058206f442 + 93 ┊ 0.00% ┊ wasm_bindgen::JsValue::is_function::hcaf320d445aef5e2 + 93 ┊ 0.00% ┊ wasm_bindgen::throw_str::h5268dc01fc609a44 + 23 ┊ 0.00% ┊ ⤷ import wbg::__wbindgen_throw + 92 ┊ 0.00% ┊ tachys::view::strings::<impl tachys::view::Render<R> for &str>::build::h8bee32cc08bee793 + 91 ┊ 0.00% ┊ core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq::hb582be714e7aae9e + 90 ┊ 0.00% ┊ js_sys::<impl core::convert::From<js_sys::JsString> for alloc::string::String>::from::h7542ec571484e789 + 90 ┊ 0.00% ┊ core::cell::Cell<T>::set::h4f2a098b717c7cb4 + 89 ┊ 0.00% ┊ <tachys::view::strings::StrState<R> as tachys::view::Mountable<R>>::mount::h312c80612b9b8fae + 89 ┊ 0.00% ┊ memcmp + 76 ┊ 0.00% ┊ ⤷ compiler_builtins::mem::memcmp::h34c54face2c41858 + 88 ┊ 0.00% ┊ core::cmp::PartialEq::ne::h48bce3304740ffd0 + 88 ┊ 0.00% ┊ hashbrown::raw::Fallibility::capacity_overflow::hdc4c19e981c7c748 + 87 ┊ 0.00% ┊ <&A as core::alloc::Allocator>::deallocate::hbdf08c0e5c626bdf + 87 ┊ 0.00% ┊ <&A as core::alloc::Allocator>::deallocate::h8b26271671d99739 + 87 ┊ 0.00% ┊ __rust_alloc_zeroed + 69 ┊ 0.00% ┊ ⤷ __rdl_alloc_zeroed + 86 ┊ 0.00% ┊ core::ptr::drop_in_place<routing::components::RouterContext>::h206667c5eb143be3 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<std::sync::mpmc::context::Context>>::hb7de2863fc748ff7 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<std::sync::mpmc::waker::Entry>>::h52208a16d0256684 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>>::h093e132e5a4ea958 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<leptos::text_prop::TextProp>>::hdb31e190dd16b1af + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<leptos_meta::title::Formatter>>::h820527fa00e9d321 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<std::sync::rwlock::RwLock<reactive_graph::owner::OwnerInner>>>>::he6a2eb95e485c176 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<leptos_meta::MetaContext>>::h47b63eb4de1f29b4 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<futures_util::abortable::AbortHandle>>::h2d0cbd3d453ee8a2 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::boxed::Box<dyn core::any::Any+core::marker::Sync+core::marker::Send>>>::h3666fd7ee007973f + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<reactive_graph::owner::Owner>>::h634d2bfb9e88acb2 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<reactive_graph::graph::subscriber::AnySubscriber>>::h78a9f225e1699da0 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<alloc::sync::Arc<dyn hydration_context::SharedContext+core::marker::Sync+core::marker::Send>>>::hed108a26dac382a1 + 85 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<core::task::wake::Waker>>::h1f426c074eeb87fe + 82 ┊ 0.00% ┊ lock_api::rwlock::RwLock<R,T>::new::hae06e5939988dd8a + 81 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::boxed::Box<dyn core::ops::function::FnOnce<()>+Output = tachys::view::any_view::AnyView<tachys::renderer::dom::Dom>+core::marker::Send>>::hec7fc44e291ad344 + 81 ┊ 0.00% ┊ core::cell::panic_already_borrowed::hdfd15bcb019b1598 + 81 ┊ 0.00% ┊ core::cell::panic_already_mutably_borrowed::h4c55f518769d0ec4 + 80 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<routing::params::ParamsMap>>::h5299df9f4d8ab85b + 80 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<alloc::string::String>>::h346cf478bd047f79 + 80 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_read::ArcReadSignal<routing::params::ParamsMap>>::hb876aefeca414868 + 80 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<routing::location::Url>>::h77e69fbc1eb4436e + 80 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_rw::ArcRwSignal<routing::location::State>>::h56cc87ded37a9be5 + 79 ┊ 0.00% ┊ send_wrapper::SendWrapper<T>::assert_valid_for_deref::h0d4ba511d2146f22 + 79 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController>>::hcc345a74cae12e3b + 79 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_Node::Node>>::h3ce4e87697f72a3e + 79 ┊ 0.00% ┊ core::ptr::drop_in_place<core::option::Option<web_sys::features::gen_Element::Element>>::hd880f2dd72b05479 + 79 ┊ 0.00% ┊ core::ptr::drop_in_place<core::result::Result<(),wasm_bindgen::JsValue>>::h78b63244e24257f1 + 79 ┊ 0.00% ┊ core::panicking::panic_nounwind::h3d7f57b65330337b + 78 ┊ 0.00% ┊ core::ptr::const_ptr::<impl core::cmp::PartialEq for *const T>::eq::hf36a394e8403f2f3 + 78 ┊ 0.00% ┊ <reactive_graph::graph::subscriber::AnySubscriber as core::cmp::PartialEq>::eq::h948b7b4c2f00963d + 78 ┊ 0.00% ┊ <tachys::view::any_view::AnyViewState<R> as tachys::view::Mountable<R>>::unmount::hc3f7af3e2071cb5e + 78 ┊ 0.00% ┊ web_sys::features::gen_ReadableByteStreamController::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController>::from_abi::h4ebf259c00b47b8f + 78 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::store::ha45bd77c7aeb5f6f + 78 ┊ 0.00% ┊ web_sys::features::gen_Element::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Element::Element>::from_abi::h3ad1bb025fa740ee + 78 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_Node::Node>::from_abi::hf1727401c0575758 + 78 ┊ 0.00% ┊ web_sys::features::gen_UrlSearchParams::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for web_sys::features::gen_UrlSearchParams::UrlSearchParams>::from_abi::hef5887f236f71159 + 78 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Function>::from_abi::hce36cc38f0907c85 + 78 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::FromWasmAbi for js_sys::Promise>::from_abi::h61fe6d1033f370ae + 78 ┊ 0.00% ┊ wasm_bindgen::convert::traits::WasmRet<T>::join::h142d2a2a0a6a675f + 78 ┊ 0.00% ┊ <wasm_bindgen::convert::slices::WasmSlice as wasm_bindgen::convert::traits::WasmAbi>::split::hed4a7fdf7b627d00 + 78 ┊ 0.00% ┊ <wasm_bindgen::convert::slices::WasmSlice as wasm_bindgen::convert::traits::WasmAbi>::split::ha2bff9eef44e4c00 + 75 ┊ 0.00% ┊ <send_wrapper::SendWrapper<T> as core::ops::deref::Deref>::deref::h0e6e53ab759572b5 + 75 ┊ 0.00% ┊ leptos::component::component_props_builder::hb942682c240d312b + 24 ┊ 0.00% ┊ ⤷ <P as leptos::component::PropsOrNoPropsBuilder>::builder_or_not::heb006d28f57623db + 16 ┊ 0.00% ┊ ⤷ <leptos_meta::title::TitleProps as leptos::component::Props>::builder::hea75dfdd8790a3fe + 8 ┊ 0.00% ┊ ⤷ leptos_meta::title::TitleProps::builder::h5f6313616f338bf7 + 74 ┊ 0.00% ┊ core::panicking::panic::hf4ba1575e20e9f91 + 74 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::park_until::h64aa81be76404d31 + 73 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::load::hd400353231dee127 + 73 ┊ 0.00% ┊ <parking_lot_core::parking_lot::UnparkResult as core::default::Default>::default::h82c91d443149fbd3 + 73 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::load::h780e27dda7e319dc + 72 ┊ 0.00% ┊ <usize as parking_lot_core::word_lock::LockState>::is_queue_locked::he31601c5726007eb + 72 ┊ 0.00% ┊ <usize as parking_lot_core::word_lock::LockState>::is_locked::h73d6b3cbb4f20547 + 72 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h02d90d92ee97a179 + 72 ┊ 0.00% ┊ <core::result::Result<T,F> as core::ops::try_trait::FromResidual<core::result::Result<core::convert::Infallible,E>>>::from_residual::h5893b39f67e9f9a2 + 71 ┊ 0.00% ┊ <web_sys::features::gen_Element::Element as core::clone::Clone>::clone::h8c25c378cd8f13df + 71 ┊ 0.00% ┊ <web_sys::features::gen_Element::Element as core::clone::Clone>::clone::hcc5a7fa181811924 + 71 ┊ 0.00% ┊ <web_sys::features::gen_Node::Node as core::clone::Clone>::clone::h9e20ec3e2f7b83f1 + 71 ┊ 0.00% ┊ core::cell::Cell<T>::set::h39d789d8eb6a0b10 + 71 ┊ 0.00% ┊ core::cell::Cell<T>::set::h8b0827b00e5ced70 + 71 ┊ 0.00% ┊ core::cell::Cell<T>::set::he83376bcc5a9b096 + 71 ┊ 0.00% ┊ core::cell::Cell<T>::set::hcae22fe86df32b44 + 71 ┊ 0.00% ┊ core::cell::Cell<T>::set::hdbcf0be4da4b2c49 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h44b8c82357a66346 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hc180509e09f84ddc + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h8e95902f6204c195 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h0de1dc564188364a + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h833c4835183d23e1 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h9a101e43cb2e20a6 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hc2b66ef1cf99e008 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::borrow::Borrow<T>>::borrow::h0d38350d755cc865 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::hc9d6ce868d34a68a + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h314122e15466ccb0 + 70 ┊ 0.00% ┊ <alloc::sync::Arc<T,A> as core::ops::deref::Deref>::deref::h70376546f49ed10e + 70 ┊ 0.00% ┊ core::option::Option<T>::take::hef7da72bb1ab8b97 + 69 ┊ 0.00% ┊ core::ptr::drop_in_place<(alloc::borrow::Cow<str>,alloc::string::String)>::h755f161d4b3f4661 + 69 ┊ 0.00% ┊ core::ptr::drop_in_place<leptos_meta::MetaContext>::hbcae0a65ceac692e + 69 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::owner::Owner>::h98dfe3b14df3d566 + 68 ┊ 0.00% ┊ core::str::<impl str>::is_empty::h159da06494dd8104 + 68 ┊ 0.00% ┊ core::str::<impl str>::is_empty::he6ffbd9dbb3f045d + 68 ┊ 0.00% ┊ core::ptr::mut_ptr::<impl *mut T>::is_null::h4901b123f7e138ab + 68 ┊ 0.00% ┊ core::ptr::const_ptr::<impl *const T>::is_null::h32b1e9bfe7d62d73 + 68 ┊ 0.00% ┊ core::ptr::const_ptr::<impl *const T>::is_null::hd9cdcb97b7a6105a + 68 ┊ 0.00% ┊ core::result::Result<T,E>::is_ok::h1625a66ddb17c720 + 68 ┊ 0.00% ┊ alloc::vec::Vec<T,A>::is_empty::hc02f0d5dfa6aa554 + 68 ┊ 0.00% ┊ core::ptr::mut_ptr::<impl *mut T>::is_null::h60b06117aa115a7e + 67 ┊ 0.00% ┊ export "wasm_bindgen__convert__closures__invoke2_mut__h2f98b87e90a12a95" + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h438d3ac4ddb61c03 + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h1a52234b14a368f6 + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h138e6b5dffff79f9 + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hfee7a1a1b747dd5b + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::h2256296597446a06 + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::hb59445510578d315 + 67 ┊ 0.00% ┊ <std::sync::rwlock::RwLockWriteGuard<T> as core::ops::deref::DerefMut>::deref_mut::he4f1183196af6614 + 67 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hf24ffc635347a77a + 55 ┊ 0.00% ┊ ⤷ alloc::string::<impl core::convert::From<alloc::string::String> for alloc::borrow::Cow<str>>::from::h4892bacf96cccd7e + 66 ┊ 0.00% ┊ core::ptr::drop_in_place<wasm_streams::writable::into_underlying_sink::Inner::close::{{closure}}>::h5d79365e76f2aa3d + 66 ┊ 0.00% ┊ alloc::raw_vec::capacity_overflow::h3ed2cd9d8dd02a35 + 65 ┊ 0.00% ┊ core::panicking::panic_fmt::h87755523850ece9e + 65 ┊ 0.00% ┊ <T as wasm_bindgen::convert::traits::ReturnWasmAbi>::return_abi::hbab6f9b07db188c5 + 21 ┊ 0.00% ┊ ⤷ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for ()>::into_abi::ha5d62cd7878d9ad5 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::signal::arc_trigger::ArcTrigger>::h4259c0732ba1b3cc + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::computed::arc_memo::ArcMemo<alloc::string::String>>::h188936482db62934 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<tachys::view::strings::StrState<tachys::renderer::dom::Dom>>::h287d412b4880e6b3 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::RefMut<web_sys::features::gen_Node::Node>>::hfd06efa3b747f283 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::RefMut<core::option::Option<reactive_graph::owner::Owner>>>::h3a78578b8fc2d51f + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::RefMut<wasm_streams::readable::into_underlying_source::Inner>>::h26b7b77872aa2ea9 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::RefMut<wasm_streams::readable::into_underlying_byte_source::Inner>>::h82bfdafb01419e06 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::RefMut<wasm_streams::writable::into_underlying_sink::Inner>>::h8bb26e945016264a + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::Ref<core::option::Option<reactive_graph::owner::Owner>>>::hd9bf89d54d8ca287 + 64 ┊ 0.00% ┊ core::ptr::drop_in_place<core::cell::Ref<core::option::Option<reactive_graph::graph::subscriber::AnySubscriber>>>::h5eb990016b4c6ec8 + 63 ┊ 0.00% ┊ alloc::sync::Arc<T,A>::as_ptr::h8e11fa1957ce27ef + 63 ┊ 0.00% ┊ core::slice::index::slice_start_index_overflow_fail::h6550dda66adecadb + 63 ┊ 0.00% ┊ core::slice::index::slice_end_index_overflow_fail::heca2f6d605df0f60 + 61 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for bool>::from_abi::h1e4cec0dfe3a45d4 + 61 ┊ 0.00% ┊ <core::option::Option<T> as core::default::Default>::default::h66baebc7ca292104 + 61 ┊ 0.00% ┊ <core::option::Option<T> as core::default::Default>::default::hf1b3e72ad92b56a7 + 60 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::prepare_park::hf10979861fbe6ce4 + 60 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::timed_out::h860f6c66b05af8ee + 60 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::park::h2fd53e136db11487 + 60 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::unpark_lock::hbad224eb04ed7835 + 59 ┊ 0.00% ┊ <core::cell::RefMut<T> as core::ops::deref::Deref>::deref::h9b678ef51cb99226 + 59 ┊ 0.00% ┊ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h04feb169bb931667 + 59 ┊ 0.00% ┊ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::hc8744ce0e36c66e2 + 59 ┊ 0.00% ┊ <std::sync::rwlock::RwLockReadGuard<T> as core::ops::deref::Deref>::deref::h9ed30ac77a00c019 + 59 ┊ 0.00% ┊ alloc::rc::RcInnerPtr::strong::h746886f40b525da8 + 59 ┊ 0.00% ┊ alloc::rc::RcInnerPtr::strong::h5d7559f5707bc2e2 + 59 ┊ 0.00% ┊ alloc::rc::RcInnerPtr::strong::he33937a27ff9e75c + 59 ┊ 0.00% ┊ alloc::rc::RcInnerPtr::strong::ha8e02f55fb350dfe + 59 ┊ 0.00% ┊ core::sync::atomic::AtomicUsize::new::h4c4b284a4d96517f + 59 ┊ 0.00% ┊ core::cell::Cell<T>::new::h902780150d95378d + 59 ┊ 0.00% ┊ <core::cell::Ref<T> as core::ops::deref::Deref>::deref::h57b89f365acec284 + 59 ┊ 0.00% ┊ <core::cell::Ref<T> as core::ops::deref::Deref>::deref::h5d035b8aece716b6 + 59 ┊ 0.00% ┊ core::sync::atomic::AtomicPtr<T>::new::h23e6d2ab729d4bc1 + 57 ┊ 0.00% ┊ web_sys::features::gen_CharacterData::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for web_sys::features::gen_CharacterData::CharacterData>::as_ref::h2583b8868fc506d0 + 57 ┊ 0.00% ┊ js_sys::_::<impl core::convert::AsRef<wasm_bindgen::JsValue> for js_sys::Object>::as_ref::he98c16ee66362973 + 57 ┊ 0.00% ┊ web_sys::features::gen_Window::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Window::Window>::into_abi::h61bed199f8861fa6 + 57 ┊ 0.00% ┊ web_sys::features::gen_Document::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Document::Document>::into_abi::h8509596996e00f30 + 57 ┊ 0.00% ┊ web_sys::features::gen_Element::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Element::Element>::into_abi::hf0dd79c570f6cc5c + 57 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Object>::into_abi::h77110620f4c4682b + 57 ┊ 0.00% ┊ web_sys::features::gen_Location::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Location::Location>::into_abi::h403bf412043ec443 + 57 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_Node::Node>::into_abi::hae0b7f16d5f624de + 57 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::hb6592cbac62b9a4c + 57 ┊ 0.00% ┊ web_sys::features::gen_EventTarget::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &web_sys::features::gen_EventTarget::EventTarget>::into_abi::h88864d9e96bcf468 + 57 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::h68d60d7cc6becb4c + 57 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Array>::into_abi::h88b804d1ecae4dc4 + 57 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Object>::into_abi::hbc9950ba0f4a2957 + 57 ┊ 0.00% ┊ js_sys::_::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &js_sys::Function>::into_abi::h3187c0e0bde5b301 + 57 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::FromWasmAbi for wasm_bindgen::JsValue>::from_abi::hfa53d55b1e558ce4 + 57 ┊ 0.00% ┊ <reactive_graph::owner::arena::NodeId as slotmap::Key>::data::h44ad59c6522be08a + 56 ┊ 0.00% ┊ parking_lot_core::spinwait::SpinWait::new::hdf448a4609e21951 + 42 ┊ 0.00% ┊ ⤷ <parking_lot_core::spinwait::SpinWait as core::default::Default>::default::he23398dbb6692d25 + 55 ┊ 0.00% ┊ tachys::html::attribute::key::href::h30231e16dc335e49 + 55 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::h8eef7d682221a9dc + 55 ┊ 0.00% ┊ alloc::string::String::from_utf8_unchecked::h67dcc1df00d913ba + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<std::sync::mpmc::waker::Entry>::hf3b3c212564a1b1f + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<routing::matching::Routes<(routing::matching::nested::NestedRoute<routing::matching::horizontal::static_segment::StaticSegment,(),(),ssr_modes_axum::app::HomePage,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>,routing::matching::nested::NestedRoute<(routing::matching::horizontal::static_segment::StaticSegment,routing::matching::horizontal::param_segments::ParamSegment),(),(),ssr_modes_axum::app::Post,tachys::renderer::dom::Dom>),tachys::renderer::dom::Dom>>::h9c28dbefdbf62d95 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_HtmlTitleElement::HtmlTitleElement>::h6413bf2d4eed8a1e + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_HtmlHeadElement::HtmlHeadElement>::h33373d886fe4a807 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<reactive_graph::graph::sets::SubscriberSet>::h7b5bf60d1f83083f + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<tachys::view::any_view::AnyViewState<tachys::renderer::dom::Dom>>::h66a3a22b2857eb8d + 53 ┊ 0.00% ┊ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::hd3a75954fb2c651c + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::string::String>::h240fc057a03f5d03 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_ReadableByteStreamController::ReadableByteStreamController>::he2d1e0e2c22d3f97 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_ReadableStreamDefaultController::ReadableStreamDefaultController>::h400753c713a201db + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_ReadableStreamByobRequest::ReadableStreamByobRequest>::he85aac0459d42728 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<futures_util::abortable::AbortHandle>::h7ee90d5638c21d47 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_UrlSearchParams::UrlSearchParams>::h09ed0dba416b2eab + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Node::Node>::h6c1099aa0ecbfa4d + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Document::Document>::h450018808a442572 + 53 ┊ 0.00% ┊ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::FromResidual>::from_residual::h29721bd0b244cd9d + 53 ┊ 0.00% ┊ <core::ops::control_flow::ControlFlow<B,C> as core::ops::try_trait::Try>::from_output::h2b80f9e412914ace + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::string::String>::h366fcfc842e0a63a + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Location::Location>::hec6274ca1540e859 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Node::Node>::h1763aaa872ef142d + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Text::Text>::h0af614e436032068 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Comment::Comment>::h9166d514c6c2098f + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Element::Element>::h372e2f6b6c1171e3 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_CharacterData::CharacterData>::h3b1b057a0600f6d5 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Document::Document>::hf892624f0490fcf5 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_HtmlElement::HtmlElement>::h15544c88cc6e1702 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_Window::Window>::h00d2970c995f0d36 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<web_sys::features::gen_EventTarget::EventTarget>::hc182b43ced07d195 + 53 ┊ 0.00% ┊ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::node::ReactiveNode for std::sync::rwlock::RwLock<reactive_graph::graph::sets::SubscriberSet>>::mark_dirty::h5f2e6fa771279c20 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<js_sys::Array>::hbc1830dd14fa8ea8 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<js_sys::Object>::h4a6ffd6d5bfa11b8 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<js_sys::Function>::hea88faa21e7c2d8c + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<js_sys::JsString>::hdd63c6687df53466 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<js_sys::Uint8Array>::hef31692a736d5bb8 + 53 ┊ 0.00% ┊ core::ptr::drop_in_place<alloc::string::String>::h8f251d18cc0fd11f + 53 ┊ 0.00% ┊ alloc::alloc::handle_alloc_error::h73bbc8dacf22ba44 + 41 ┊ 0.00% ┊ ⤷ __rust_alloc_error_handler + 29 ┊ 0.00% ┊ ⤷ __rg_oom + 52 ┊ 0.00% ┊ <u32 as core::iter::range::Step>::forward_unchecked::h5c408b8b2868f5d6 + 52 ┊ 0.00% ┊ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h6b1dce73d9d544b9 + 52 ┊ 0.00% ┊ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h26a03eb82f0ad294 + 52 ┊ 0.00% ┊ <core::cell::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::h59c95b4eb465cb9f + 51 ┊ 0.00% ┊ wasm_bindgen::__rt::malloc_failure::h53722969d6131fd2 + 50 ┊ 0.00% ┊ <I as core::iter::traits::collect::IntoIterator>::into_iter::h17be7de73486babc + 50 ┊ 0.00% ┊ <I as core::iter::traits::collect::IntoIterator>::into_iter::h3df837865849940c + 48 ┊ 0.00% ┊ export "__wbindgen_add_to_stack_pointer" + 13 ┊ 0.00% ┊ ⤷ __wbindgen_add_to_stack_pointer + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::hb9ad53abf553ab49 + 45 ┊ 0.00% ┊ core::cell::Cell<T>::get::hf74b8552f4fc6b87 + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::h8ec7131574d5a20a + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::h6c36194e9b737bd8 + 45 ┊ 0.00% ┊ core::cell::Cell<T>::get::hcc11a37a78fafe1e + 45 ┊ 0.00% ┊ core::cell::Cell<T>::get::h5a49d7e3c9e86aa8 + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::h978262a4219dd338 + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::h6cd19a8817edc257 + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::hd4e1ac87336bb0f6 + 45 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::split::h14588f4df3fe886a + 45 ┊ 0.00% ┊ wasm_bindgen::JsValue::_new::h8fb346a8a5f13b29 + 45 ┊ 0.00% ┊ __rust_alloc + 27 ┊ 0.00% ┊ ⤷ __rdl_alloc + 42 ┊ 0.00% ┊ <usize as parking_lot_core::word_lock::LockState>::queue_head::h7375484758e3b7ba + 42 ┊ 0.00% ┊ <core::option::Option<T> as core::ops::try_trait::FromResidual>::from_residual::h40fbe5b9c21b3bc8 + 40 ┊ 0.00% ┊ reactive_graph::signal::subscriber_traits::<impl reactive_graph::graph::source::ToAnySource for T>::to_any_source::{{closure}}::panic_cold_display::hb2ffafdcaaa606d2 + 40 ┊ 0.00% ┊ reactive_graph::traits::ReadUntracked::read_untracked::{{closure}}::panic_cold_display::h8f7c7a159b31ff2f + 40 ┊ 0.00% ┊ parking_lot_core::spinwait::SpinWait::reset::h90bc255e9700eed5 + 40 ┊ 0.00% ┊ <alloc::vec::Vec<T> as core::default::Default>::default::h8f59c1e8f03518c3 + 40 ┊ 0.00% ┊ <alloc::vec::Vec<T> as core::default::Default>::default::h2094dabcfaacc32e + 40 ┊ 0.00% ┊ <alloc::vec::Vec<T> as core::default::Default>::default::h3bad44ee4aa0a696 + 40 ┊ 0.00% ┊ <alloc::vec::Vec<T> as core::default::Default>::default::h752060481d2d15d7 + 40 ┊ 0.00% ┊ <alloc::vec::Vec<T> as core::default::Default>::default::h87d26d49635c9cf8 + 39 ┊ 0.00% ┊ <tachys::view::any_view::AnyView<R> as tachys::view::Render<R>>::build::hefe66a9958e5dc3d + 38 ┊ 0.00% ┊ core::panic::location::Location::caller::he7d528cc65c2c958 + 38 ┊ 0.00% ┊ core::str::<impl str>::len::hdcec088ec222c9ed + 38 ┊ 0.00% ┊ core::panic::location::Location::caller::hafa1884e49a57f74 + 38 ┊ 0.00% ┊ core::panic::location::Location::caller::h9f0a1cfadd8b378e + 38 ┊ 0.00% ┊ <wasm_bindgen::__rt::Ref<T> as core::ops::deref::Deref>::deref::hbddbe09cc76b2585 + 38 ┊ 0.00% ┊ <wasm_bindgen::__rt::RefMut<T> as core::ops::deref::DerefMut>::deref_mut::had76fec44008bbf4 + 38 ┊ 0.00% ┊ core::panic::location::Location::caller::h220268b1a0ee6eab + 38 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &wasm_bindgen::JsValue>::into_abi::he098a314b75b2d4b + 38 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for &wasm_bindgen::JsValue>::into_abi::ha4a84beb60b6088a + 38 ┊ 0.00% ┊ <T as core::convert::Into<U>>::into::hdbe52321749c60ad + 38 ┊ 0.00% ┊ core::str::<impl str>::len::h3a03358005dd5767 + 36 ┊ 0.00% ┊ tachys::view::tuples::<impl tachys::view::RenderHtml<R> for ()>::hydrate::h312fc08b96b682da + 36 ┊ 0.00% ┊ data[1] + 34 ┊ 0.00% ┊ import wbg::__wbindgen_object_clone_ref + 31 ┊ 0.00% ┊ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::ha7790cc8d342e948 + 31 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Node::Node>::unchecked_from_js_ref::hf56e2fb63944c8cf + 31 ┊ 0.00% ┊ <web_sys::features::gen_HtmlElement::HtmlElement as core::ops::deref::Deref>::deref::h6456433fab03f5f8 + 31 ┊ 0.00% ┊ <js_sys::Object as core::ops::deref::Deref>::deref::h0ccd0bc270d1f581 + 31 ┊ 0.00% ┊ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::heda2f281843324e0 + 31 ┊ 0.00% ┊ <T as core::borrow::Borrow<T>>::borrow::hc07b0aec3682b6d9 + 31 ┊ 0.00% ┊ <web_sys::features::gen_HtmlElement::HtmlElement as core::ops::deref::Deref>::deref::hcc6bb6068f128514 + 31 ┊ 0.00% ┊ web_sys::features::gen_Node::_::<impl wasm_bindgen::cast::JsCast for web_sys::features::gen_Node::Node>::unchecked_from_js_ref::h16f32f2136522185 + 31 ┊ 0.00% ┊ <web_sys::features::gen_Element::Element as core::ops::deref::Deref>::deref::h8b427aff20e797db + 31 ┊ 0.00% ┊ <web_sys::features::gen_HtmlHeadElement::HtmlHeadElement as core::ops::deref::Deref>::deref::h554af998e102bcf8 + 31 ┊ 0.00% ┊ <web_sys::features::gen_EventTarget::EventTarget as core::ops::deref::Deref>::deref::h27ab5371c6770d75 + 31 ┊ 0.00% ┊ <web_sys::features::gen_Node::Node as core::ops::deref::Deref>::deref::h26dd8ebe8b6eeed4 + 31 ┊ 0.00% ┊ <web_sys::features::gen_Element::Element as core::ops::deref::Deref>::deref::h9983fe357a704c87 + 31 ┊ 0.00% ┊ <js_sys::Object as core::ops::deref::Deref>::deref::hba127bf4fc27d8c9 + 31 ┊ 0.00% ┊ <web_sys::features::gen_CharacterData::CharacterData as core::ops::deref::Deref>::deref::h2fb16c728d09641e + 31 ┊ 0.00% ┊ <web_sys::features::gen_Text::Text as core::ops::deref::Deref>::deref::heb6bc09201535a92 + 31 ┊ 0.00% ┊ core::num::nonzero::NonZeroU32::get::h0744cdc16e9186d4 + 31 ┊ 0.00% ┊ <js_sys::Object as core::ops::deref::Deref>::deref::h273bd3cdd48b0d8c + 31 ┊ 0.00% ┊ <wasm_bindgen::JsValue as core::convert::AsRef<wasm_bindgen::JsValue>>::as_ref::hb2efbafdb4943df1 + 31 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::WasmAbi for T>::join::h109799a86e4e15a4 + 31 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for u32>::into_abi::hff38bb467877453a + 31 ┊ 0.00% ┊ wasm_bindgen::convert::impls::<impl wasm_bindgen::convert::traits::IntoWasmAbi for *const T>::into_abi::hcd499ca9f123e1aa + 29 ┊ 0.00% ┊ import wbg::__wbindgen_is_function + 29 ┊ 0.00% ┊ <alloc::alloc::Global as core::clone::Clone>::clone::h4b1fd73782a8151f + 29 ┊ 0.00% ┊ core::clone::Clone::clone::hf5dd3950cbc6ef1c + 29 ┊ 0.00% ┊ <() as tachys::html::attribute::Attribute<R>>::hydrate::h85b74c52ec092c0a + 29 ┊ 0.00% ┊ <alloc::alloc::Global as core::clone::Clone>::clone::h3023a7f36a33353b + 29 ┊ 0.00% ┊ <alloc::alloc::Global as core::clone::Clone>::clone::h66cfd232e3d503ef + 29 ┊ 0.00% ┊ <alloc::alloc::Global as core::clone::Clone>::clone::hea40986e81ef4d7f + 29 ┊ 0.00% ┊ parking_lot_core::parking_lot::deadlock::on_unpark::h05e2c8072bdbda4f + 29 ┊ 0.00% ┊ <alloc::alloc::Global as core::clone::Clone>::clone::h56b78b6ca3d1b936 + 29 ┊ 0.00% ┊ core::mem::forget::h642c3127c454699e + 28 ┊ 0.00% ┊ import wbg::__wbindgen_string_new + 28 ┊ 0.00% ┊ import wbg::__wbindgen_string_get + 27 ┊ 0.00% ┊ core::fmt::Formatter::write_str::h6a826a926e491a0a + 26 ┊ 0.00% ┊ wasm_bindgen::__rt::borrow_fail::h63f5a301927c263f + 25 ┊ 0.00% ┊ wasm_bindgen::__rt::throw_null::hbea92db8b4393674 + 23 ┊ 0.00% ┊ __rust_dealloc + 9 ┊ 0.00% ┊ ⤷ __rdl_dealloc + 22 ┊ 0.00% ┊ export "__wbindgen_export_2" + 21 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::UnparkHandle as parking_lot_core::thread_parker::UnparkHandleT>::unpark::hdaeb035dc2e092a0 + 21 ┊ 0.00% ┊ send_wrapper::invalid_deref::h0e7b4780d58c0098 + 18 ┊ 0.00% ┊ custom section 'target_features' headers + 13 ┊ 0.00% ┊ parking_lot_core::thread_parker::imp::thread_yield::hd1473a265548d749 + 5 ┊ 0.00% ┊ ⤷ std::thread::yield_now::heb7fd91e69eac0dc + 12 ┊ 0.00% ┊ std::panicking::panic_count::is_zero_slow_path::h3b79f2335d61b14d + 12 ┊ 0.00% ┊ code section headers + 12 ┊ 0.00% ┊ custom section 'producers' headers + 11 ┊ 0.00% ┊ type[19]: (i32, i32, i32, i32, i32, i32, i32, i32) -> nil + 11 ┊ 0.00% ┊ type[24]: (i32, i32, i32, i32, i32, i32, i64, i32) -> nil + 11 ┊ 0.00% ┊ export "memory" + 2 ┊ 0.00% ┊ ⤷ memory[0] + 10 ┊ 0.00% ┊ type[16]: (i32, i32, i32, i32, i32, i32) -> i32 + 10 ┊ 0.00% ┊ type[17]: (i32, i32, i32, i32, i32, i32, i32) -> nil + 9 ┊ 0.00% ┊ type[14]: (i32, i32, i32, i32, i32) -> i32 + 9 ┊ 0.00% ┊ type[15]: (i32, i32, i32, i32, i32, i32) -> nil + 9 ┊ 0.00% ┊ type[26]: (i32, i32, i32, i32, i64, i32) -> nil + 9 ┊ 0.00% ┊ custom section 'name' headers + 8 ┊ 0.00% ┊ type[12]: (i32, i32, i32, i32) -> i32 + 8 ┊ 0.00% ┊ type[13]: (i32, i32, i32, i32, i32) -> nil + 8 ┊ 0.00% ┊ type[32]: (i32, i32, i64, i32, i32) -> nil + 8 ┊ 0.00% ┊ type[42]: (i32, i64, i32, i32) -> i32 + 8 ┊ 0.00% ┊ global[0] + 8 ┊ 0.00% ┊ wasm magic bytes + 7 ┊ 0.00% ┊ type[9]: (i32, i32, i32) -> i32 + 7 ┊ 0.00% ┊ type[10]: (i32, i32, i32) -> i64 + 7 ┊ 0.00% ┊ type[11]: (i32, i32, i32, i32) -> nil + 7 ┊ 0.00% ┊ type[30]: (i32, i32, i64, i32) -> nil + 7 ┊ 0.00% ┊ type[40]: (i32, i64, i32) -> i32 + 7 ┊ 0.00% ┊ type[58]: (i64, i32, i32) -> i32 + 6 ┊ 0.00% ┊ type[6]: (i32, i32) -> i32 + 6 ┊ 0.00% ┊ type[7]: (i32, i32) -> i64 + 6 ┊ 0.00% ┊ type[8]: (i32, i32, i32) -> nil + 6 ┊ 0.00% ┊ type[29]: (i32, i32, i64) -> nil + 6 ┊ 0.00% ┊ type[38]: (i32, i64) -> i32 + 6 ┊ 0.00% ┊ type[39]: (i32, i64, i32) -> nil + 5 ┊ 0.00% ┊ type[3]: (i32) -> i32 + 5 ┊ 0.00% ┊ type[4]: (i32) -> i64 + 5 ┊ 0.00% ┊ type[5]: (i32, i32) -> nil + 5 ┊ 0.00% ┊ type[37]: (i32, i64) -> nil + 5 ┊ 0.00% ┊ type[56]: (i64, i32) -> nil + 5 ┊ 0.00% ┊ import section headers + 5 ┊ 0.00% ┊ <core::marker::PhantomData<T> as core::default::Default>::default::hc470e07f48cd2275 + 5 ┊ 0.00% ┊ parking_lot_core::parking_lot::TimeoutInstant::now::hb299cb27dddd8e36 + 5 ┊ 0.00% ┊ <parking_lot_core::thread_parker::imp::ThreadParker as parking_lot_core::thread_parker::ThreadParkerT>::new::h701e13e3bf44d62b + 5 ┊ 0.00% ┊ <core::hash::BuildHasherDefault<H> as core::default::Default>::default::h5a23a35609895e7b + 5 ┊ 0.00% ┊ std::process::abort::hbad27d3782d26249 + 5 ┊ 0.00% ┊ std::sys::wasm::common::abort_internal::hf98d32a231d119f2 + 5 ┊ 0.00% ┊ data section headers + 4 ┊ 0.00% ┊ type[1]: () -> i32 + 4 ┊ 0.00% ┊ type[2]: (i32) -> nil + 4 ┊ 0.00% ┊ type section headers + 4 ┊ 0.00% ┊ export section headers + 4 ┊ 0.00% ┊ element section headers + 3 ┊ 0.00% ┊ type[0]: () -> nil + 3 ┊ 0.00% ┊ table section headers + 3 ┊ 0.00% ┊ memory section headers + 3 ┊ 0.00% ┊ global section headers + 332621 ┊ 6.77% ┊ [5 Unreachable Items] diff --git a/leptos/Cargo.toml b/leptos/Cargo.toml index 2804a525d..f71803f59 100644 --- a/leptos/Cargo.toml +++ b/leptos/Cargo.toml @@ -68,6 +68,7 @@ rustls = ["leptos_server/rustls", "server_fn/rustls"] ssr = [ "leptos_macro/ssr", "leptos_reactive/ssr", + "leptos_server/ssr", "server_fn/ssr", "hydration", "tachys/ssr", diff --git a/leptos_server/Cargo.toml b/leptos_server/Cargo.toml index 960e565e5..03bbe47ee 100644 --- a/leptos_server/Cargo.toml +++ b/leptos_server/Cargo.toml @@ -39,6 +39,7 @@ base64 = { version = "0.22", optional = true } leptos = { path = "../leptos" } [features] +ssr = [] default-tls = ["server_fn/default-tls"] rustls = ["server_fn/rustls"] hydration = ["reactive_graph/hydration", "dep:serde", "dep:serde_json"] diff --git a/leptos_server/src/resource.rs b/leptos_server/src/resource.rs index dd5e53291..b970f5ce1 100644 --- a/leptos_server/src/resource.rs +++ b/leptos_server/src/resource.rs @@ -187,6 +187,7 @@ where source.add_subscriber(data.to_any_subscriber()); } + #[cfg(feature = "ssr")] if let Some(shared_context) = shared_context { let value = data.clone(); let ready_fut = data.ready(); @@ -408,7 +409,7 @@ where T: Send + Sync + 'static, Fut: Future<Output = T> + Send + 'static, { - let ArcResource { ser, data } = + let ArcResource { data, .. } = ArcResource::new_with_encoding(source, fetcher); Resource { ser: PhantomData, diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 903c35120..3ba10ec94 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -24,6 +24,7 @@ features = ["HtmlLinkElement", "HtmlMetaElement", "HtmlTitleElement"] [features] default = [] +ssr = [] [package.metadata.docs.rs] rustdoc-args = ["--generate-link-to-definition"] diff --git a/meta/src/lib.rs b/meta/src/lib.rs index a12d2849e..38a98688a 100644 --- a/meta/src/lib.rs +++ b/meta/src/lib.rs @@ -288,6 +288,7 @@ where { let mut el = Some(el); + #[cfg(feature = "ssr")] if let Some(cx) = use_context::<ServerMetaContext>() { let mut inner = cx.inner.write().or_poisoned(); el.take() @@ -458,78 +459,3 @@ impl RenderHtml<Dom> for MetaTagsView { ) -> Self::State { } } - -impl MetaContext { - // TODO remove the below? - - #[cfg(feature = "ssr")] - /// Converts the existing metadata tags into HTML that can be injected into the document head. - /// - /// This should be called *after* the app’s component tree has been rendered into HTML, so that - /// components can set meta tags. - /// - /// ``` - /// use leptos::*; - /// use leptos_meta::*; - /// - /// # #[cfg(not(any(feature = "csr", feature = "hydrate")))] { - /// # let runtime = create_runtime(); - /// provide_meta_context(); - /// - /// let app = view! { - /// <main> - /// <Title text="my title"/> - /// <Stylesheet href="/style.css"/> - /// <p>"Some text"</p> - /// </main> - /// }; - /// - /// // `app` contains only the body content w/ hydration stuff, not the meta tags - /// assert!( - /// !app.into_view().render_to_string().contains("my title") - /// ); - /// // `MetaContext::dehydrate()` gives you HTML that should be in the `<head>` - /// assert!(use_head().dehydrate().contains("<title>my title")); - /// # runtime.dispose(); - /// # } - /// ``` - pub fn dehydrate(&self) -> String { - let mut tags = String::new(); - - // Title - if let Some(title) = self.title.as_string() { - tags.push_str(""); - tags.push_str(&title); - tags.push_str(""); - } - tags.push_str(&self.tags.as_string()); - - tags - } -} - -/// Extracts the metadata that should be used to close the `` tag -/// and open the `` tag. This is a helper function used in implementing -/// server-side HTML rendering across crates. -#[cfg(feature = "ssr")] -pub fn generate_head_metadata() -> String { - let (head, body) = generate_head_metadata_separated(); - format!("{head}{body}") -} - -/// Extracts the metadata that should be inserted at the beginning of the `` tag -/// and on the opening `` tag. This is a helper function used in implementing -/// server-side HTML rendering across crates. -#[cfg(feature = "ssr")] -pub fn generate_head_metadata_separated() -> (String, String) { - let meta = use_context::(); - let head = meta - .as_ref() - .map(|meta| meta.dehydrate()) - .unwrap_or_default(); - let body_meta = meta - .as_ref() - .and_then(|meta| meta.body.as_string()) - .unwrap_or_default(); - (head, format!("")) -} diff --git a/routing/Cargo.toml b/routing/Cargo.toml index 58b267bec..14ae87889 100644 --- a/routing/Cargo.toml +++ b/routing/Cargo.toml @@ -49,4 +49,5 @@ features = [ [features] tracing = ["dep:tracing"] +ssr = [] nightly = [] diff --git a/routing/src/components.rs b/routing/src/components.rs index a21052e43..530892dfe 100644 --- a/routing/src/components.rs +++ b/routing/src/components.rs @@ -6,7 +6,8 @@ use crate::{ }, navigate::{NavigateOptions, UseNavigate}, resolve_path::resolve_path, - MatchNestedRoutes, NestedRoute, NestedRoutesView, Routes, SsrMode, + FlatRoutesView, MatchNestedRoutes, NestedRoute, NestedRoutesView, Routes, + SsrMode, }; use leptos::{ children::{ToChildren, TypedChildren}, @@ -70,19 +71,20 @@ pub fn Router( where Chil: IntoView, { - let current_url = if Owner::current_shared_context() - .map(|sc| sc.is_browser()) - .unwrap_or(false) - { - let location = BrowserUrl::new().expect("could not access browser navigation"); // TODO options here - location.init(base.clone()); - location.as_url().clone() - } else { + #[cfg(feature = "ssr")] + let current_url = { let req = use_context::().expect("no RequestUrl provided"); let parsed = req.parse().expect("could not parse RequestUrl"); ArcRwSignal::new(parsed) }; + #[cfg(not(feature = "ssr"))] + let current_url = { + let location = + BrowserUrl::new().expect("could not access browser navigation"); // TODO options here + location.init(base.clone()); + location.as_url().clone() + }; // provide router context let state = ArcRwSignal::new(State::new(None)); let location = Location::new(current_url.read_only(), state.read_only()); @@ -220,7 +222,7 @@ where move |_| url.read().search_params().clone() }); let outer_owner = - Owner::current().expect("creating Router, but no Owner was found"); + Owner::current().expect("creating Routes, but no Owner was found"); move || NestedRoutesView { routes: routes.clone(), outer_owner: outer_owner.clone(), @@ -233,6 +235,46 @@ where } } +#[component] +pub fn FlatRoutes( + fallback: FallbackFn, + children: RouteChildren, +) -> impl IntoView +where + Defs: MatchNestedRoutes + Clone + Send + 'static, + FallbackFn: Fn() -> Fallback + Send + 'static, + Fallback: IntoView + 'static, +{ + use either_of::Either; + + let RouterContext { + current_url, base, .. + } = use_context() + .expect(" should be used inside a component"); + let base = base.map(|base| { + let mut base = Oco::from(base); + base.upgrade_inplace(); + base + }); + let routes = Routes::new(children.into_inner()); + let path = ArcMemo::new({ + let url = current_url.clone(); + move |_| url.read().path().to_string() + }); + let search_params = ArcMemo::new({ + let url = current_url.clone(); + move |_| url.read().search_params().clone() + }); + let outer_owner = + Owner::current().expect("creating Router, but no Owner was found"); + move || FlatRoutesView { + routes: routes.clone(), + path: path.clone(), + fallback: fallback(), + outer_owner: outer_owner.clone(), + } +} + #[component] pub fn Route( path: Segments, diff --git a/routing/src/flat_router.rs b/routing/src/flat_router.rs new file mode 100644 index 000000000..bb00b1352 --- /dev/null +++ b/routing/src/flat_router.rs @@ -0,0 +1,189 @@ +use crate::{ + location::{Location, RequestUrl, Url}, + matching::Routes, + params::ParamsMap, + resolve_path::resolve_path, + ChooseView, MatchInterface, MatchNestedRoutes, MatchParams, Method, + PathSegment, RouteList, RouteListing, RouteMatchId, +}; +use either_of::Either; +use leptos::{component, oco::Oco, IntoView}; +use or_poisoned::OrPoisoned; +use reactive_graph::{ + computed::{ArcMemo, Memo}, + owner::{provide_context, use_context, Owner}, + signal::{ArcRwSignal, ArcTrigger}, + traits::{Get, Read, ReadUntracked, Set, Track, Trigger}, +}; +use std::{ + borrow::Cow, + iter, + marker::PhantomData, + mem, + sync::{ + mpsc::{self, Receiver, Sender}, + Arc, Mutex, + }, +}; +use tachys::{ + hydration::Cursor, + renderer::Renderer, + ssr::StreamBuilder, + view::{ + any_view::{AnyView, AnyViewState, IntoAny}, + either::EitherState, + Mountable, Position, PositionState, Render, RenderHtml, + }, +}; + +pub(crate) struct FlatRoutesView { + pub routes: Routes, + pub path: ArcMemo, + pub fallback: Fal, + pub outer_owner: Owner, +} + +impl FlatRoutesView +where + Defs: MatchNestedRoutes, + Fal: Render, + R: Renderer + 'static, +{ + pub fn choose( + self, + ) -> Either>::View> { + let FlatRoutesView { + routes, + path, + fallback, + outer_owner, + } = self; + + outer_owner.with(|| { + let new_match = routes.match_route(&path.read()); + match new_match { + None => Either::Left(fallback), + Some(matched) => { + let params = matched.to_params(); + let (view, child) = matched.into_view_and_child(); + + #[cfg(debug_assertions)] + if child.is_some() { + panic!( + " should not be used with nested \ + routes." + ); + } + + let view = view.choose(); + Either::Right(view) + } + } + }) + } +} + +impl Render for FlatRoutesView +where + Defs: MatchNestedRoutes, + Fal: Render, + R: Renderer + 'static, +{ + type State = >::View> as Render>::State; + + fn build(self) -> Self::State { + self.choose().build() + } + + fn rebuild(self, state: &mut Self::State) { + self.choose().rebuild(state); + } +} + +impl RenderHtml for FlatRoutesView +where + Defs: MatchNestedRoutes + Send, + Fal: RenderHtml, + R: Renderer + 'static, +{ + type AsyncOutput = Self; + + const MIN_LENGTH: usize = >::View, + > as RenderHtml>::MIN_LENGTH; + + async fn resolve(self) -> Self::AsyncOutput { + self + } + + fn to_html_with_buf(self, buf: &mut String, position: &mut Position) { + // if this is being run on the server for the first time, generating all possible routes + if RouteList::is_generating() { + // add routes + let (base, routes) = self.routes.generate_routes(); + let mut routes = routes + .into_iter() + .map(|data| { + let path = base + .into_iter() + .flat_map(|base| { + iter::once(PathSegment::Static( + base.to_string().into(), + )) + }) + .chain(data.segments) + .collect::>(); + RouteListing::new( + path, + data.ssr_mode, + // TODO methods + [Method::Get], + // TODO static data + None, + ) + }) + .collect::>(); + + // add fallback + // TODO fix: causes overlapping route issues on Axum + /*routes.push(RouteListing::new( + [PathSegment::Static( + base.unwrap_or_default().to_string().into(), + )], + SsrMode::Async, + [ + Method::Get, + Method::Post, + Method::Put, + Method::Patch, + Method::Delete, + ], + None, + ));*/ + + RouteList::register(RouteList::from(routes)); + } else { + self.choose().to_html_with_buf(buf, position); + } + } + + fn to_html_async_with_buf( + self, + buf: &mut StreamBuilder, + position: &mut Position, + ) where + Self: Sized, + { + self.choose() + .to_html_async_with_buf::(buf, position); + } + + fn hydrate( + self, + cursor: &Cursor, + position: &PositionState, + ) -> Self::State { + self.choose().hydrate::(cursor, position) + } +} diff --git a/routing/src/lib.rs b/routing/src/lib.rs index 8b68ab0df..76333b0c7 100644 --- a/routing/src/lib.rs +++ b/routing/src/lib.rs @@ -3,6 +3,7 @@ #![cfg_attr(feature = "nightly", feature(negative_impls))] pub mod components; +mod flat_router; mod generate_route_list; pub mod hooks; pub mod link; @@ -16,6 +17,7 @@ pub mod params; mod ssr_mode; mod static_route; +pub use flat_router::*; pub use generate_route_list::*; pub use matching::*; pub use method::*; diff --git a/routing/src/nested_router.rs b/routing/src/nested_router.rs index 4340c93e2..34082d110 100644 --- a/routing/src/nested_router.rs +++ b/routing/src/nested_router.rs @@ -26,13 +26,13 @@ use std::{ }, }; use tachys::{ - hydration::Cursor, view::PositionState, + hydration::Cursor, renderer::Renderer, ssr::StreamBuilder, view::{ any_view::{AnyView, AnyViewState, IntoAny}, either::EitherState, - Mountable, Position, Render, RenderHtml, + Mountable, Position, PositionState, Render, RenderHtml, }, }; @@ -182,8 +182,6 @@ where }) .collect::>(); - println!("routes = {routes:#?}"); - // add fallback // TODO fix: causes overlapping route issues on Axum /*routes.push(RouteListing::new( @@ -203,31 +201,31 @@ where RouteList::register(RouteList::from(routes)); } else { - let NestedRoutesView { - routes, - outer_owner, - url, - path, - search_params, - fallback, - base, - .. - } = self; + let NestedRoutesView { + routes, + outer_owner, + url, + path, + search_params, + fallback, + base, + .. + } = self; - let mut outlets = Vec::new(); - let new_match = routes.match_route(&path.read()); - let view = match new_match { - None => Either::Left(fallback), - Some(route) => { - route.build_nested_route(base, &mut outlets, &outer_owner); - outer_owner.with(|| { - Either::Right( - Outlet(OutletProps::builder().build()).into_any(), - ) - }) - } - }; - view.to_html_with_buf(buf, position); + let mut outlets = Vec::new(); + let new_match = routes.match_route(&path.read()); + let view = match new_match { + None => Either::Left(fallback), + Some(route) => { + route.build_nested_route(base, &mut outlets, &outer_owner); + outer_owner.with(|| { + Either::Right( + Outlet(OutletProps::builder().build()).into_any(), + ) + }) + } + }; + view.to_html_with_buf(buf, position); } } diff --git a/tachys/src/html/element/mod.rs b/tachys/src/html/element/mod.rs index e2d660fb0..a218c5c32 100644 --- a/tachys/src/html/element/mod.rs +++ b/tachys/src/html/element/mod.rs @@ -401,9 +401,9 @@ where // hydrate children position.set(Position::FirstChild); let children = self.children.hydrate::(cursor, position); - cursor.set(el.as_ref().clone()); // go to next sibling + cursor.set(el.as_ref().clone()); position.set(Position::NextChild); ElementState { diff --git a/tachys/src/view/any_view.rs b/tachys/src/view/any_view.rs index 3a89da746..2d033649a 100644 --- a/tachys/src/view/any_view.rs +++ b/tachys/src/view/any_view.rs @@ -32,10 +32,6 @@ where #[allow(clippy::type_complexity)] hydrate_from_server: fn(Box, &Cursor, &PositionState) -> AnyViewState, - #[cfg(feature = "hydrate")] - #[allow(clippy::type_complexity)] - hydrate_from_template: - fn(Box, &Cursor, &PositionState) -> AnyViewState, } pub struct AnyViewState @@ -195,25 +191,7 @@ where insert_before_this: insert_before_this::, } }; - #[cfg(feature = "hydrate")] - let hydrate_from_template = - |value: Box, - cursor: &Cursor, - position: &PositionState| { - let value = value - .downcast::() - .expect("AnyView::hydrate_from_server couldn't downcast"); - let state = Box::new(value.hydrate::(cursor, position)); - AnyViewState { - type_id: TypeId::of::(), - state, - rndr: PhantomData, - mount: mount_any::, - unmount: unmount_any::, - insert_before_this: insert_before_this::, - } - }; let rebuild = |new_type_id: TypeId, value: Box, state: &mut AnyViewState| { @@ -250,8 +228,6 @@ where to_html_async_ooo, #[cfg(feature = "hydrate")] hydrate_from_server, - #[cfg(feature = "hydrate")] - hydrate_from_template, } } } @@ -331,7 +307,10 @@ where if FROM_SERVER { (self.hydrate_from_server)(self.value, cursor, position) } else { - (self.hydrate_from_template)(self.value, cursor, position) + panic!( + "hydrating AnyView from inside a ViewTemplate is not \ + supported." + ); } #[cfg(not(feature = "hydrate"))] { diff --git a/tachys/src/view/either.rs b/tachys/src/view/either.rs index 5dc2dbae1..985057604 100644 --- a/tachys/src/view/either.rs +++ b/tachys/src/view/either.rs @@ -507,7 +507,9 @@ macro_rules! tuples { position: &PositionState, ) -> Self::State { let state = match self { - $([]::$ty(this) => []::$ty(this.hydrate::(cursor, position)),)* + $([]::$ty(this) => { + []::$ty(this.hydrate::(cursor, position)) + })* }; let marker = cursor.next_placeholder(position);