{
  "file_map": {
    "0": {
      "function_locations": [
        {
          "name": "aes128_encrypt",
          "start": 351
        },
        {
          "name": "aes128_encrypt_padded_input",
          "start": 824
        },
        {
          "name": "tests::encrypt",
          "start": 921
        }
      ],
      "path": "std/aes128.nr",
      "source": "// docs:start:aes128\n/// Given a plaintext as an array of bytes, returns the corresponding aes128 ciphertext (CBC mode). Input padding is performed using PKCS#7, so that the output length is `input.len() + (16 - input.len() % 16)`.\npub fn aes128_encrypt<let N: u32>(\n    input: [u8; N],\n    iv: [u8; 16],\n    key: [u8; 16],\n) -> [u8; N + 16 - N % 16] {\n    let padding_length = (16 - N % 16) as u8;\n    let mut padded_input: [u8; N + 16 - N % 16] = [0; N + 16 - N % 16];\n    for i in 0..N {\n        padded_input[i] = input[i];\n    }\n    for i in N..N + 16 - N % 16 {\n        padded_input[i] = padding_length;\n    }\n    let output = aes128_encrypt_padded_input(padded_input, iv, key);\n    output\n}\n\n#[foreign(aes128_encrypt)]\nfn aes128_encrypt_padded_input<let N: u32>(input: [u8; N], iv: [u8; 16], key: [u8; 16]) -> [u8; N] {}\n\n// docs:end:aes128\n\nmod tests {\n    use super::aes128_encrypt;\n\n    #[test]\n    fn encrypt() {\n        let input = \"kevlovesrust\".as_bytes();\n        let iv = \"0000000000000000\".as_bytes();\n        let key = \"0000000000000000\".as_bytes();\n        let output = [244, 14, 126, 172, 171, 40, 208, 186, 173, 184, 226, 105, 238, 122, 205, 191];\n        assert_eq(aes128_encrypt(input, iv, key), output);\n    }\n}\n"
    },
    "100": {
      "function_locations": [
        {
          "name": "log_prefix",
          "start": 525
        },
        {
          "name": "aztecnr_fatal_log",
          "start": 717
        },
        {
          "name": "aztecnr_error_log",
          "start": 943
        },
        {
          "name": "aztecnr_warn_log",
          "start": 1168
        },
        {
          "name": "aztecnr_info_log",
          "start": 1392
        },
        {
          "name": "aztecnr_verbose_log",
          "start": 1619
        },
        {
          "name": "aztecnr_debug_log",
          "start": 1847
        },
        {
          "name": "aztecnr_trace_log",
          "start": 2073
        },
        {
          "name": "aztecnr_fatal_log_format",
          "start": 2367
        },
        {
          "name": "aztecnr_error_log_format",
          "start": 2622
        },
        {
          "name": "aztecnr_warn_log_format",
          "start": 2876
        },
        {
          "name": "aztecnr_info_log_format",
          "start": 3129
        },
        {
          "name": "aztecnr_verbose_log_format",
          "start": 3385
        },
        {
          "name": "aztecnr_debug_log_format",
          "start": 3642
        },
        {
          "name": "aztecnr_trace_log_format",
          "start": 3897
        },
        {
          "name": "resolve_fn",
          "start": 4151
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/logging.nr",
      "source": "// Not all log levels are currently used, but we provide the full set so that new call sites can use any level. Because\n// of that we tag all with `#[allow(dead_code)]` to prevent warnings.\n//\n// All wrappers resolve function paths at comptime via `resolve_fn` so that the emitted `Quoted` code works both inside\n// aztec-nr (where `crate::` = aztec) and inside macro-generated contract code (where `crate::` = the contract).\n\nuse std::meta::ctstring::AsCtString;\n\ncomptime fn log_prefix<let N: u32>(msg: str<N>) -> CtString {\n    \"[aztec-nr] \".as_ctstring().append_str(msg)\n}\n\n// --- No-args variants (direct call) ---\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_fatal_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::fatal_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_error_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::error_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_warn_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::warn_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_info_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::info_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_verbose_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::verbose_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_debug_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::debug_log });\n    quote { $f($msg) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_trace_log<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::trace_log });\n    quote { $f($msg) }\n}\n\n// --- Format variants (return lambda for runtime args) ---\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_fatal_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::fatal_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_error_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::error_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_warn_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::warn_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_info_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::info_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_verbose_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::verbose_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_debug_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::debug_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n#[allow(dead_code)]\npub(crate) comptime fn aztecnr_trace_log_format<let N: u32>(msg: str<N>) -> Quoted {\n    let msg = log_prefix(msg);\n    let f = resolve_fn(quote { crate::protocol::logging::trace_log_format });\n    quote { (|args| $f($msg, args)) }\n}\n\n// See module-level comment for why this is needed.\ncomptime fn resolve_fn(path: Quoted) -> TypedExpr {\n    path.as_expr().unwrap().resolve(Option::none())\n}\n"
    },
    "102": {
      "function_locations": [
        {
          "name": "generate_contract_library_methods_compute_note_hash_and_nullifier",
          "start": 534
        },
        {
          "name": "generate_contract_library_method_compute_note_hash",
          "start": 2449
        },
        {
          "name": "generate_contract_library_method_compute_note_nullifier",
          "start": 7724
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/aztec/compute_note_hash_and_nullifier.nr",
      "source": "use crate::logging;\nuse crate::macros::{notes::NOTES, utils::get_trait_impl_method};\n\n/// Generates two contract library methods called `_compute_note_hash` and `_compute_note_nullifier`, plus a\n/// (deprecated) wrapper called `_compute_note_hash_and_nullifier`, which are used for note discovery (i.e. these are\n/// of the `aztec::messages::discovery::ComputeNoteHash` and `aztec::messages::discovery::ComputeNoteNullifier` types).\npub(crate) comptime fn generate_contract_library_methods_compute_note_hash_and_nullifier() -> Quoted {\n    let compute_note_hash = generate_contract_library_method_compute_note_hash();\n    let compute_note_nullifier = generate_contract_library_method_compute_note_nullifier();\n\n    quote {\n        $compute_note_hash\n        $compute_note_nullifier\n\n        /// Unpacks an array into a note corresponding to `note_type_id` and then computes its note hash (non-siloed) and inner nullifier (non-siloed) assuming the note has been inserted into the note hash tree with `note_nonce`.\n        ///\n        /// This function is automatically injected by the `#[aztec]` macro.\n        #[contract_library_method]\n        #[allow(dead_code)]\n        unconstrained fn _compute_note_hash_and_nullifier(\n            packed_note: BoundedVec<Field, aztec::messages::logs::note::MAX_NOTE_PACKED_LEN>,\n            owner: aztec::protocol::address::AztecAddress,\n            storage_slot: Field,\n            note_type_id: Field,\n            contract_address: aztec::protocol::address::AztecAddress,\n            randomness: Field,\n            note_nonce: Field,\n        ) -> Option<aztec::messages::discovery::NoteHashAndNullifier> {\n            _compute_note_hash(packed_note, owner, storage_slot, note_type_id, contract_address, randomness).map(|note_hash| {\n\n                let siloed_note_hash = aztec::protocol::hash::compute_siloed_note_hash(contract_address, note_hash);\n                let unique_note_hash = aztec::protocol::hash::compute_unique_note_hash(note_nonce, siloed_note_hash);\n                \n                let inner_nullifier = _compute_note_nullifier(unique_note_hash, packed_note, owner, storage_slot, note_type_id, contract_address, randomness);\n\n                aztec::messages::discovery::NoteHashAndNullifier {\n                    note_hash,\n                    inner_nullifier,\n                }\n            })\n        }\n    }\n}\n\ncomptime fn generate_contract_library_method_compute_note_hash() -> Quoted {\n    if NOTES.len() == 0 {\n        // Contracts with no notes still implement this function to avoid having special-casing, the implementation\n        // simply throws immediately.\n        quote {\n            /// This contract does not use private notes, so this function should never be called as it will unconditionally fail.\n            ///\n            /// This function is automatically injected by the `#[aztec]` macro.\n            #[contract_library_method]\n            unconstrained fn _compute_note_hash(\n                _packed_note: BoundedVec<Field, aztec::messages::logs::note::MAX_NOTE_PACKED_LEN>,\n                _owner: aztec::protocol::address::AztecAddress,\n                _storage_slot: Field,\n                _note_type_id: Field,\n                _contract_address: aztec::protocol::address::AztecAddress,\n                _randomness: Field,\n            ) -> Option<Field> {\n                panic(f\"This contract does not use private notes\")\n            }\n        }\n    } else {\n        // Contracts that do define notes produce an if-else chain where `note_type_id` is matched against the\n        // `get_note_type_id()` function of each note type that we know of, in order to identify the note type. Once we\n        // know it we call the correct `unpack` method from the `Packable` trait to obtain the underlying\n        // note type, and compute the note hash (non-siloed).\n\n        // We resolve the log format calls here so that the resulting Quoted values can be spliced into the quote\n        // block below.\n        let warn_length_mismatch = logging::aztecnr_warn_log_format(\n            \"Packed note length mismatch for note type id {0}: expected {1} fields, got {2}. Skipping note.\",\n        );\n        let warn_unknown_note_type = logging::aztecnr_warn_log_format(\"Unknown note type id {0}. Skipping note.\");\n\n        let mut if_note_type_id_match_statements_list = @[];\n        for i in 0..NOTES.len() {\n            let typ = NOTES.get(i);\n\n            let get_note_type_id = get_trait_impl_method(\n                typ,\n                quote { crate::note::note_interface::NoteType },\n                quote { get_id },\n            );\n            let unpack = get_trait_impl_method(\n                typ,\n                quote { crate::protocol::traits::Packable },\n                quote { unpack },\n            );\n\n            let compute_note_hash = get_trait_impl_method(\n                typ,\n                quote { crate::note::note_interface::NoteHash },\n                quote { compute_note_hash },\n            );\n\n            let if_or_else_if = if i == 0 {\n                quote { if }\n            } else {\n                quote { else if }\n            };\n\n            if_note_type_id_match_statements_list = if_note_type_id_match_statements_list.push_back(\n                quote {\n                    $if_or_else_if note_type_id == $get_note_type_id() {\n                        // As an extra safety check we make sure that the packed_note BoundedVec has the expected\n                        // length, since we're about to interpret its raw storage as a fixed-size array by calling the\n                        // unpack function on it.\n                        let expected_len = <$typ as $crate::protocol::traits::Packable>::N;\n                        let actual_len = packed_note.len();\n                        if actual_len != expected_len {\n                            $warn_length_mismatch([note_type_id, expected_len as Field, actual_len as Field]);\n                            Option::none()\n                        } else {\n                            let note = $unpack(aztec::utils::array::subarray(packed_note.storage(), 0));\n\n                            Option::some($compute_note_hash(note, owner, storage_slot, randomness))\n                        }\n                    }\n                },\n            );\n        }\n\n        let if_note_type_id_match_statements = if_note_type_id_match_statements_list.join(quote {});\n\n        quote {\n            /// Unpacks an array into a note corresponding to `note_type_id` and then computes its note hash\n            /// (non-siloed).\n            ///\n            /// The signature of this function notably matches the `aztec::messages::discovery::ComputeNoteHash` type,\n            /// and so it can be used to call functions from that module such as `do_sync_state` and\n            /// `process_private_note_msg`.\n            ///\n            /// This function is automatically injected by the `#[aztec]` macro.\n            #[contract_library_method]\n            unconstrained fn _compute_note_hash(\n                packed_note: BoundedVec<Field, aztec::messages::logs::note::MAX_NOTE_PACKED_LEN>,\n                owner: aztec::protocol::address::AztecAddress,\n                storage_slot: Field,\n                note_type_id: Field,\n                _contract_address: aztec::protocol::address::AztecAddress,\n                randomness: Field,\n            ) -> Option<Field> {\n                $if_note_type_id_match_statements\n                else {\n                    $warn_unknown_note_type([note_type_id]);\n                    Option::none()\n                }\n            }\n        }\n    }\n}\n\ncomptime fn generate_contract_library_method_compute_note_nullifier() -> Quoted {\n    if NOTES.len() == 0 {\n        // Contracts with no notes still implement this function to avoid having special-casing, the implementation\n        // simply throws immediately.\n        quote {\n            /// This contract does not use private notes, so this function should never be called as it will unconditionally fail.\n            ///\n            /// This function is automatically injected by the `#[aztec]` macro.\n            #[contract_library_method]\n            unconstrained fn _compute_note_nullifier(\n                _unique_note_hash: Field,\n                _packed_note: BoundedVec<Field, aztec::messages::logs::note::MAX_NOTE_PACKED_LEN>,\n                _owner: aztec::protocol::address::AztecAddress,\n                _storage_slot: Field,\n                _note_type_id: Field,\n                _contract_address: aztec::protocol::address::AztecAddress,\n                _randomness: Field,\n            ) -> Option<Field> {\n                panic(f\"This contract does not use private notes\")\n            }\n        }\n    } else {\n        // Contracts that do define notes produce an if-else chain where `note_type_id` is matched against the\n        // `get_note_type_id()` function of each note type that we know of, in order to identify the note type. Once we\n        // know it we call the correct `unpack` method from the `Packable` trait to obtain the underlying\n        // note type, and compute the inner nullifier (non-siloed).\n\n        // We resolve the log format calls here so that the resulting Quoted values can be spliced into the quote\n        // block below.\n        let warn_length_mismatch = logging::aztecnr_warn_log_format(\n            \"Packed note length mismatch for note type id {0}: expected {1} fields, got {2}. Skipping note.\",\n        );\n        let warn_unknown_note_type = logging::aztecnr_warn_log_format(\"Unknown note type id {0}. Skipping note.\");\n\n        let mut if_note_type_id_match_statements_list = @[];\n        for i in 0..NOTES.len() {\n            let typ = NOTES.get(i);\n\n            let get_note_type_id = get_trait_impl_method(\n                typ,\n                quote { crate::note::note_interface::NoteType },\n                quote { get_id },\n            );\n            let unpack = get_trait_impl_method(\n                typ,\n                quote { crate::protocol::traits::Packable },\n                quote { unpack },\n            );\n\n            let compute_nullifier_unconstrained = get_trait_impl_method(\n                typ,\n                quote { crate::note::note_interface::NoteHash },\n                quote { compute_nullifier_unconstrained },\n            );\n\n            let if_or_else_if = if i == 0 {\n                quote { if }\n            } else {\n                quote { else if }\n            };\n\n            if_note_type_id_match_statements_list = if_note_type_id_match_statements_list.push_back(\n                quote {\n                    $if_or_else_if note_type_id == $get_note_type_id() {\n                        // As an extra safety check we make sure that the packed_note BoundedVec has the expected\n                        // length, since we're about to interpret its raw storage as a fixed-size array by calling the\n                        // unpack function on it.\n                        let expected_len = <$typ as $crate::protocol::traits::Packable>::N;\n                        let actual_len = packed_note.len();\n                        if actual_len != expected_len {\n                            $warn_length_mismatch([note_type_id, expected_len as Field, actual_len as Field]);\n                            Option::none()\n                        } else {\n                            let note = $unpack(aztec::utils::array::subarray(packed_note.storage(), 0));\n\n                            // The message discovery process finds settled notes, that is, notes that were created in\n                            // prior transactions and are therefore already part of the note hash tree. The note hash\n                            // for nullification is hence the unique note hash.\n                            $compute_nullifier_unconstrained(note, owner, unique_note_hash)\n                        }\n                    }\n                },\n            );\n        }\n\n        let if_note_type_id_match_statements = if_note_type_id_match_statements_list.join(quote {});\n\n        quote {\n            /// Computes a note's inner nullifier (non-siloed) given its unique note hash, preimage and extra data.\n            ///\n            /// The signature of this function notably matches the `aztec::messages::discovery::ComputeNoteNullifier`\n            /// type, and so it can be used to call functions from that module such as `do_sync_state` and\n            /// `process_private_note_msg`.\n            ///\n            /// This function is automatically injected by the `#[aztec]` macro.\n            #[contract_library_method]\n            unconstrained fn _compute_note_nullifier(\n                unique_note_hash: Field,\n                packed_note: BoundedVec<Field, aztec::messages::logs::note::MAX_NOTE_PACKED_LEN>,\n                owner: aztec::protocol::address::AztecAddress,\n                _storage_slot: Field,\n                note_type_id: Field,\n                _contract_address: aztec::protocol::address::AztecAddress,\n                _randomness: Field,\n            ) -> Option<Field> {\n                $if_note_type_id_match_statements\n                else {\n                    $warn_unknown_note_type([note_type_id]);\n                    Option::none()\n                }\n            }\n        }\n    }\n}\n"
    },
    "103": {
      "function_locations": [
        {
          "name": "AztecConfig::new",
          "start": 1918
        },
        {
          "name": "AztecConfig::custom_message_handler",
          "start": 2455
        },
        {
          "name": "AztecConfig::custom_sync_state",
          "start": 3150
        },
        {
          "name": "aztec",
          "start": 4051
        },
        {
          "name": "generate_contract_interface",
          "start": 7875
        },
        {
          "name": "generate_sync_state",
          "start": 9789
        },
        {
          "name": "generate_offchain_receive",
          "start": 11291
        },
        {
          "name": "check_each_fn_macroified",
          "start": 12880
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/aztec.nr",
      "source": "mod compute_note_hash_and_nullifier;\n\nuse crate::{\n    macros::{\n        calls_generation::{\n            external_functions::{generate_external_function_calls, generate_external_function_self_calls_structs},\n            internal_functions::generate_call_internal_struct,\n        },\n        dispatch::generate_public_dispatch,\n        emit_public_init_nullifier::generate_emit_public_init_nullifier,\n        internals_functions_generation::{create_fn_abi_exports, process_functions},\n        offchain_receive::{\n            OFFCHAIN_RECEIVE_FN_NAME, OFFCHAIN_RECEIVE_PARAM_NAME, offchain_receive_param_type,\n            OFFCHAIN_RECEIVE_RETURN_TYPE,\n        },\n        storage::STORAGE_LAYOUT_NAME,\n        utils::{is_fn_contract_library_method, is_fn_external, is_fn_internal, is_fn_test, module_has_storage},\n    },\n    messages::discovery::{CustomMessageHandler, CustomSyncHandler},\n};\n\nuse compute_note_hash_and_nullifier::generate_contract_library_methods_compute_note_hash_and_nullifier;\n\n/// Configuration for the [`aztec`] macro.\n///\n/// This type lets users override different parts of the default aztec-nr contract behavior, such\n/// as message handling and state synchronization. These are advanced features that require careful\n/// understanding of the behavior of these systems.\n///\n/// ## Examples\n///\n/// ```noir\n/// #[aztec(aztec::macros::AztecConfig::new().custom_message_handler(my_handler))]\n/// contract MyContract { ... }\n/// ```\npub struct AztecConfig {\n    custom_message_handler: Option<CustomMessageHandler>,\n    custom_sync_state: Option<CustomSyncHandler>,\n}\n\nimpl AztecConfig {\n    /// Creates a new `AztecConfig` with default values.\n    ///\n    /// Calling `new` is equivalent to invoking the [`aztec`] macro with no parameters. The different methods\n    /// (e.g. [`AztecConfig::custom_message_handler`]) can then be used to change the default behavior.\n    pub comptime fn new() -> Self {\n        Self { custom_message_handler: Option::none(), custom_sync_state: Option::none() }\n    }\n\n    /// Sets a handler for custom messages.\n    ///\n    /// This enables contracts to process non-standard messages (i.e. any with a message type that is not in\n    /// [`crate::messages::msg_type`]).\n    ///\n    /// `handler` must be a function that conforms to the\n    /// [`crate::messages::discovery::CustomMessageHandler`] type signature.\n    pub comptime fn custom_message_handler(&mut self, handler: CustomMessageHandler) -> Self {\n        self.custom_message_handler = Option::some(handler);\n        *self\n    }\n\n    /// Overrides the default state synchronization logic.\n    ///\n    /// The generated `sync_state` function will call `handler` instead of\n    /// [`crate::messages::discovery::do_sync_state`]. The handler receives all of the same parameters, so it can\n    /// run custom logic (e.g. fetching and decrypting custom logs) before, after, or instead of calling\n    /// `do_sync_state`.\n    ///\n    /// `handler` must be a function that conforms to the\n    /// [`crate::messages::discovery::CustomSyncHandler`] type signature.\n    pub comptime fn custom_sync_state(&mut self, handler: CustomSyncHandler) -> Self {\n        self.custom_sync_state = Option::some(handler);\n        *self\n    }\n}\n\n/// Enables aztec-nr features on a `contract`.\n///\n/// All aztec-nr contracts should have this macro invoked on them, as it is the one that processes all contract\n/// functions, notes, storage, generates interfaces for external calls, and creates the message processing\n/// boilerplate.\n///\n/// ## Examples\n///\n/// Most contracts can simply invoke the macro with no parameters, resulting in default aztec-nr behavior:\n/// ```noir\n/// #[aztec]\n/// contract MyContract { ... }\n/// ```\n///\n/// Advanced contracts can use [`AztecConfig`] to customize parts of its behavior, such as message\n/// processing.\n/// ```noir\n/// #[aztec(aztec::macros::AztecConfig::new().custom_message_handler(my_handler))]\n/// contract MyAdvancedContract { ... }\n/// ```\n#[varargs]\npub comptime fn aztec(m: Module, args: [AztecConfig]) -> Quoted {\n    let num_args = args.len();\n    let config = if num_args == 0 {\n        AztecConfig::new()\n    } else if num_args == 1 {\n        args[0]\n    } else {\n        panic(f\"#[aztec] expects 0 or 1 arguments, got {num_args}\")\n    };\n\n    // Functions that don't have #[external(...)], #[contract_library_method], or #[test] are not allowed in contracts.\n    check_each_fn_macroified(m);\n\n    // We generate new functions prefixed with `__aztec_nr_internals__` and we replace the original functions' bodies\n    // with `static_assert(false, ...)` to prevent them from being called directly from within the contract.\n    let functions = process_functions(m);\n\n    // We generate structs and their implementations necessary for convenient functions calls.\n    let interface = generate_contract_interface(m);\n    let self_call_structs = generate_external_function_self_calls_structs(m);\n    let call_internal_struct = generate_call_internal_struct(m);\n\n    // We generate ABI exports for all the external functions in the contract.\n    let fn_abi_exports = create_fn_abi_exports(m);\n\n    // We generate `_compute_note_hash`, `_compute_note_nullifier` (and the deprecated\n    // `_compute_note_hash_and_nullifier` wrapper) only if they are not already implemented.\n    // If they are implemented we just insert empty quotes.\n    let contract_library_method_compute_note_hash_and_nullifier = if !m.functions().any(|f| {\n        // Note that we don't test for `_compute_note_hash` or `_compute_note_nullifier` in order to make this simpler\n        // - users must either implement all three or none.\n        // Down the line we'll remove this check and use `AztecConfig`.\n        f.name() == quote { _compute_note_hash_and_nullifier }\n    }) {\n        generate_contract_library_methods_compute_note_hash_and_nullifier()\n    } else {\n        quote {}\n    };\n    let process_custom_message_option = if config.custom_message_handler.is_some() {\n        let handler = config.custom_message_handler.unwrap();\n        quote { Option::some($handler) }\n    } else {\n        quote { Option::<aztec::messages::discovery::CustomMessageHandler>::none() }\n    };\n\n    let offchain_inbox_sync_option = quote {\n        Option::some(aztec::messages::processing::offchain::sync_inbox)\n    };\n\n    if m.functions().any(|f| f.name() == quote { sync_state }) {\n        panic(\n            \"User-defined 'sync_state' is not allowed. Use AztecConfig::custom_sync_state() to customize sync behavior.\",\n        );\n    }\n\n    let custom_sync_handler = if config.custom_sync_state.is_some() {\n        let handler = config.custom_sync_state.unwrap();\n        Option::some(quote { $handler })\n    } else {\n        Option::none()\n    };\n\n    let sync_state_fn_and_abi_export = generate_sync_state(\n        process_custom_message_option,\n        offchain_inbox_sync_option,\n        custom_sync_handler,\n    );\n\n    if m.functions().any(|f| f.name() == quote { offchain_receive }) {\n        panic(\n            \"User-defined 'offchain_receive' is not allowed. The function is auto-injected by the #[aztec] macro. See https://docs.aztec.network/errors/7\",\n        );\n    }\n    let offchain_receive_fn_and_abi_export = generate_offchain_receive();\n\n    let (has_public_init_nullifier_fn, emit_public_init_nullifier_fn_body) = generate_emit_public_init_nullifier(m);\n    let public_dispatch = generate_public_dispatch(m, has_public_init_nullifier_fn);\n\n    quote {\n        $interface\n        $self_call_structs\n        $call_internal_struct\n        $functions\n        $fn_abi_exports\n        $contract_library_method_compute_note_hash_and_nullifier\n        $public_dispatch\n        $sync_state_fn_and_abi_export\n        $emit_public_init_nullifier_fn_body\n        $offchain_receive_fn_and_abi_export\n    }\n}\n\ncomptime fn generate_contract_interface(m: Module) -> Quoted {\n    let calls = generate_external_function_calls(m);\n\n    let module_name = m.name();\n\n    let has_storage_layout = module_has_storage(m) & STORAGE_LAYOUT_NAME.get(m).is_some();\n    let storage_layout_getter = if has_storage_layout {\n        let storage_layout_name = STORAGE_LAYOUT_NAME.get(m).unwrap();\n        quote {\n            pub fn storage_layout() -> StorageLayoutFields {\n                $storage_layout_name.fields\n            }\n        }\n    } else {\n        quote {}\n    };\n\n    let library_storage_layout_getter = if has_storage_layout {\n        quote {\n            #[contract_library_method]\n            $storage_layout_getter\n        }\n    } else {\n        quote {}\n    };\n\n    quote {\n        pub struct $module_name {\n            pub target_contract: aztec::protocol::address::AztecAddress\n        }\n\n        impl $module_name {\n            $calls\n\n            pub fn at(\n                addr: aztec::protocol::address::AztecAddress\n            ) -> Self {\n                Self { target_contract: addr }\n            }\n\n            pub fn interface() -> Self {\n                Self { target_contract: aztec::protocol::address::AztecAddress::zero() }\n            }\n\n            $storage_layout_getter\n        }\n\n        #[contract_library_method]\n        pub fn at(\n            addr: aztec::protocol::address::AztecAddress\n        ) -> $module_name {\n            $module_name { target_contract: addr }\n        }\n\n        #[contract_library_method]\n        pub fn interface() -> $module_name {\n            $module_name { target_contract: aztec::protocol::address::AztecAddress::zero() }\n        }\n\n        $library_storage_layout_getter\n\n    }\n}\n\n/// Generates the `sync_state` utility function that performs message discovery.\ncomptime fn generate_sync_state(\n    process_custom_message_option: Quoted,\n    offchain_inbox_sync_option: Quoted,\n    custom_sync_handler: Option<Quoted>,\n) -> Quoted {\n    let body = if custom_sync_handler.is_some() {\n        let handler = custom_sync_handler.unwrap();\n        quote {\n            $handler(\n                address,\n                _compute_note_hash,\n                _compute_note_nullifier,\n                $process_custom_message_option,\n                $offchain_inbox_sync_option,\n                scope,\n            );\n        }\n    } else {\n        quote {\n            aztec::messages::discovery::do_sync_state(\n                address,\n                _compute_note_hash,\n                _compute_note_nullifier,\n                $process_custom_message_option,\n                $offchain_inbox_sync_option,\n                scope,\n            );\n        }\n    };\n\n    quote {\n        pub struct sync_state_parameters {\n            pub scope: aztec::protocol::address::AztecAddress,\n        }\n\n        #[abi(functions)]\n        pub struct sync_state_abi {\n            parameters: sync_state_parameters,\n        }\n\n        #[aztec::macros::internals_functions_generation::abi_attributes::abi_utility]\n        unconstrained fn sync_state(scope: aztec::protocol::address::AztecAddress) {\n            let address = aztec::context::UtilityContext::new().this_address();\n            $body\n        }\n    }\n}\n\n/// Generates an `offchain_receive` utility function that lets callers add messages to the offchain message inbox.\n///\n/// For more details, see `aztec::messages::processing::offchain::receive`.\ncomptime fn generate_offchain_receive() -> Quoted {\n    let param_type = offchain_receive_param_type(quote { aztec });\n    let parameters_struct_name = f\"{OFFCHAIN_RECEIVE_FN_NAME}_parameters\".quoted_contents();\n    let abi_struct_name = f\"{OFFCHAIN_RECEIVE_FN_NAME}_abi\".quoted_contents();\n\n    quote {\n        pub struct $parameters_struct_name {\n            pub $OFFCHAIN_RECEIVE_PARAM_NAME: $param_type,\n        }\n\n        #[abi(functions)]\n        pub struct $abi_struct_name {\n            parameters: $parameters_struct_name,\n        }\n\n        /// Receives offchain messages into this contract's offchain inbox for subsequent processing.\n        ///\n        /// Each message is routed to the inbox scoped to its `recipient` field.\n        ///\n        /// For more details, see `aztec::messages::processing::offchain::receive`.\n        ///\n        /// This function is automatically injected by the `#[aztec]` macro.\n        #[aztec::macros::internals_functions_generation::abi_attributes::abi_utility]\n        unconstrained fn $OFFCHAIN_RECEIVE_FN_NAME($OFFCHAIN_RECEIVE_PARAM_NAME: $param_type) -> $OFFCHAIN_RECEIVE_RETURN_TYPE {\n            let address = aztec::context::UtilityContext::new().this_address();\n            aztec::messages::processing::offchain::receive(address, $OFFCHAIN_RECEIVE_PARAM_NAME);\n        }\n    }\n}\n\n/// Checks that all functions in the module have a context macro applied.\n///\n/// Non-macroified functions are not allowed in contracts. They must all be one of\n/// [`crate::macros::functions::external`], [`crate::macros::functions::internal`] or `test`.\ncomptime fn check_each_fn_macroified(m: Module) {\n    for f in m.functions() {\n        let name = f.name();\n        if !is_fn_external(f) & !is_fn_contract_library_method(f) & !is_fn_internal(f) & !is_fn_test(f) {\n            // We  don't suggest that #[contract_library_method] is allowed because we don't want to introduce another\n            // concept\n            panic(\n                f\"Function {name} must be marked as either #[external(...)], #[internal(...)], or #[test]\",\n            );\n        }\n    }\n}\n"
    },
    "105": {
      "function_locations": [
        {
          "name": "create_stub_base",
          "start": 1084
        },
        {
          "name": "create_stub_base_from_parts",
          "start": 2511
        },
        {
          "name": "create_private_stub",
          "start": 3380
        },
        {
          "name": "create_private_static_stub",
          "start": 4196
        },
        {
          "name": "create_public_stub",
          "start": 5016
        },
        {
          "name": "create_public_static_stub",
          "start": 5829
        },
        {
          "name": "create_utility_stub",
          "start": 6648
        },
        {
          "name": "create_utility_stub_from_parts",
          "start": 7001
        },
        {
          "name": "create_private_self_call_stub",
          "start": 8288
        },
        {
          "name": "create_public_self_call_stub",
          "start": 9289
        },
        {
          "name": "create_public_self_call_static_stub",
          "start": 10479
        },
        {
          "name": "create_public_self_enqueue_static_stub",
          "start": 11694
        },
        {
          "name": "create_utility_self_call_stub",
          "start": 12757
        },
        {
          "name": "create_public_self_enqueue_stub",
          "start": 13610
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/calls_generation/external_functions_stubs.nr",
      "source": "//! Stubs are auto-generated wrapper functions that provide an ergonomic interface for cross-contract calls. ! Instead\n// of manually serializing arguments and creating call interfaces, stubs allow natural syntax, e.g. for ! enqueuing\n// calls to public functions: ! !   ExternalContract.at(address).some_method(arg1, arg2).enqueue()\n\nuse crate::macros::utils::compute_fn_selector;\nuse crate::protocol::meta::utils::derive_serialization_quotes;\nuse std::meta::unquote;\n\ncomptime global FROM_FIELD: TypedExpr = {\n    let from_field_trait = quote { crate::protocol::traits::FromField }.as_trait_constraint();\n    let function_selector_typ = quote { crate::protocol::abis::function_selector::FunctionSelector }.as_type();\n    function_selector_typ.get_trait_impl(from_field_trait).unwrap().methods().filter(|m| {\n        m.name() == quote { from_field }\n    })[0]\n        .as_typed_expr()\n};\n\n/// Utility function creating stubs used by all the stub functions in this file.\ncomptime fn create_stub_base(f: FunctionDefinition) -> (Quoted, Quoted, Quoted, Quoted, u32, Quoted, u32, Field) {\n    // Dear privacy adventurer, chances are, you've command+clicked on the name of an external function call -- seeking\n    // to view that function -- only to end up here. Here's an explanation: The external contract that you're calling\n    // was likely annotated with the `#[aztec]` annotation -- as all good aztec contracts are. This triggers a macro\n    // which generates a \"contract interface\" for that contract, which is effectively a pretty interface that gives\n    // natural contract calling semantics:\n    //\n    // `MyImportedContract.at(some_address).my_method(arg1, arg2).enqueue();\n    //\n    // Unfortunately, the usage of macros makes it a bit of a black box. To actually view the target function, you\n    // could instead command+click on `MyImportedContract`, or you can just manually search it. If you want to view the\n    // noir code that gets generated by this macro, you can use `nargo expand` on your contract.\n    create_stub_base_from_parts(f.name(), f.parameters())\n}\n\n/// Variant of `create_stub_base` that takes raw `(name, parameters)` instead of a `FunctionDefinition`.\n///\n/// This lets macro-injected functions (e.g. `offchain_receive`) reuse the stub-generation machinery without needing a\n/// `FunctionDefinition`.\npub(crate) comptime fn create_stub_base_from_parts(\n    fn_name: Quoted,\n    fn_parameters: [(Quoted, Type)],\n) -> (Quoted, Quoted, Quoted, Quoted, u32, Quoted, u32, Field) {\n    let fn_parameters_list = fn_parameters.map(|(name, typ): (Quoted, Type)| quote { $name: $typ }).join(quote {,});\n\n    let (serialized_args_array_construction, serialized_args_array_len_quote, serialized_args_array_name) =\n        derive_serialization_quotes(fn_parameters, false);\n    let serialized_args_array_len: u32 = unquote!(quote { ($serialized_args_array_len_quote) as u32 });\n\n    let fn_name_str = f\"\\\"{fn_name}\\\"\".quoted_contents();\n    let fn_name_len: u32 = unquote!(quote { $fn_name_str.as_bytes().len() });\n    let fn_selector: Field = compute_fn_selector(fn_name, fn_parameters);\n\n    (\n        fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name,\n        serialized_args_array_len, fn_name_str, fn_name_len, fn_selector,\n    )\n}\n\npub(crate) comptime fn create_private_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, serialized_args_array_len, fn_name_str, fn_name_len, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> aztec::context::calls::PrivateCall<$fn_name_len, $serialized_args_array_len, $fn_return_type> {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            aztec::context::calls::PrivateCall::new(\n                self.target_contract,\n                selector,\n                $fn_name_str,\n                $serialized_args_array_name,\n            )\n        }\n    }\n}\n\npub(crate) comptime fn create_private_static_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, serialized_args_array_len, fn_name_str, fn_name_len, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> aztec::context::calls::PrivateStaticCall<$fn_name_len, $serialized_args_array_len, $fn_return_type> {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            aztec::context::calls::PrivateStaticCall::new(\n                self.target_contract,\n                selector,\n                $fn_name_str,\n                $serialized_args_array_name,\n            )\n        }\n    }\n}\n\npub(crate) comptime fn create_public_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, serialized_args_array_len, fn_name_str, fn_name_len, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> aztec::context::calls::PublicCall<$fn_name_len, $serialized_args_array_len, $fn_return_type> {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            aztec::context::calls::PublicCall::new(\n                self.target_contract,\n                selector,\n                $fn_name_str,\n                $serialized_args_array_name,\n            )\n        }\n    }\n}\n\npub(crate) comptime fn create_public_static_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, serialized_args_array_len, fn_name_str, fn_name_len, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> aztec::context::calls::PublicStaticCall<$fn_name_len, $serialized_args_array_len, $fn_return_type> {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            aztec::context::calls::PublicStaticCall::new(\n                self.target_contract,\n                selector,\n                $fn_name_str,\n                $serialized_args_array_name,\n            )\n        }\n    }\n}\n\npub(crate) comptime fn create_utility_stub(f: FunctionDefinition) -> Quoted {\n    create_utility_stub_from_parts(f.name(), f.parameters(), f.return_type())\n}\n\n/// Variant of `create_utility_stub` that takes raw `(name, parameters, return_type)` instead of `FunctionDefinition`.\npub(crate) comptime fn create_utility_stub_from_parts(\n    fn_name: Quoted,\n    fn_parameters: [(Quoted, Type)],\n    fn_return_type: Type,\n) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, serialized_args_array_len, fn_name_str, fn_name_len, fn_selector) =\n        create_stub_base_from_parts(fn_name, fn_parameters);\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> aztec::context::calls::UtilityCall<$fn_name_len, $serialized_args_array_len, $fn_return_type> {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            aztec::context::calls::UtilityCall::new(\n                self.target_contract,\n                selector,\n                $fn_name_str,\n                $serialized_args_array_name,\n            )\n        }\n    }\n}\n\n// Self-call stub generation functions for CallSelf, CallSelfStatic, EnqueueSelf, and EnqueueSelfStatic structs. Unlike\n// the stubs above, the self-call stubs directly perform the call instead of returning a struct that can be later used\n// to perform the call.\n\n/// Creates a stub for calling a private function (or static private function if `is_static` is true) from private\n/// context (for CallSelf<&mut PrivateContext> and CallSelfStatic<&mut PrivateContext>).\npub comptime fn create_private_self_call_stub(f: FunctionDefinition, is_static: bool) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _, _, _, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> $fn_return_type {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            let args_hash = aztec::hash::hash_args($serialized_args_array_name);\n            aztec::oracle::execution_cache::store($serialized_args_array_name, args_hash);\n            let returns_hash = self.context.call_private_function_with_args_hash(\n                self.address,\n                selector,\n                args_hash,\n                $is_static\n            );\n            returns_hash.get_preimage()\n        }\n    }\n}\n\n/// Creates a stub for calling a public function from public context (for CallSelf<PublicContext>)\npub comptime fn create_public_self_call_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _, fn_name_str, _, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    // TODO: It makes sense to drop the use of PublicStaticCall struct here and just perform the call directly but\n    // before doing that we need to drop the use of slices from return values because we cannot return slices from an\n    // unconstrained function. This is not a priority right now.\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> $fn_return_type {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            unsafe {\n                aztec::context::calls::PublicCall::new(\n                    self.address,\n                    selector,\n                    $fn_name_str,\n                    $serialized_args_array_name,\n                ).call(self.context)\n            }\n        }\n    }\n}\n\n/// Creates a static stub for calling a public view function from public context (for CallSelfStatic<PublicContext>)\npub comptime fn create_public_self_call_static_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _, fn_name_str, _, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    // TODO: It makes sense to drop the use of PublicStaticCall struct here and just perform the call directly but\n    // before doing that we need to drop the use of slices from return values because we cannot return slices from an\n    // unconstrained function. This is not a priority right now.\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) -> $fn_return_type {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            unsafe {\n                aztec::context::calls::PublicStaticCall::new(\n                    self.address,\n                    selector,\n                    $fn_name_str,\n                    $serialized_args_array_name,\n                ).view(self.context)\n            }\n        }\n    }\n}\n\n/// Creates a static stub for enqueuing a public view function from private context (for EnqueueSelfStatic<&mut\n/// PrivateContext>)\npub comptime fn create_public_self_enqueue_static_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _serialized_args_array_len, _fn_name_str, _fn_name_len, fn_selector) =\n        create_stub_base(f);\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            let calldata = [aztec::protocol::traits::ToField::to_field(selector)].concat($serialized_args_array_name);\n            let calldata_hash = aztec::hash::hash_calldata_array(calldata);\n            aztec::oracle::execution_cache::store(calldata, calldata_hash);\n            self.context.call_public_function_with_calldata_hash(\n                self.address,\n                calldata_hash,\n                /*is_static_call=*/ true,\n                /*hide_msg_sender=*/ false,\n            );\n        }\n    }\n}\n\n/// Creates a stub for calling a utility function on the same contract (for CallSelfUtility).\npub comptime fn create_utility_self_call_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _, _, _, fn_selector) =\n        create_stub_base(f);\n    let fn_return_type = f.return_type();\n\n    quote {\n        pub unconstrained fn $fn_name(self, $fn_parameters_list) -> $fn_return_type {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            let returns = aztec::oracle::call_utility_function::call_utility_function(\n                self.address, selector, $serialized_args_array_name,\n            );\n            aztec::protocol::traits::Deserialize::deserialize(returns)\n        }\n    }\n}\n\n/// Creates a stub for enqueuing a public function from private context (for EnqueueSelf<&mut PrivateContext>)\npub comptime fn create_public_self_enqueue_stub(f: FunctionDefinition) -> Quoted {\n    let (fn_name, fn_parameters_list, serialized_args_array_construction, serialized_args_array_name, _serialized_args_array_len, _fn_name_str, _fn_name_len, fn_selector) =\n        create_stub_base(f);\n\n    quote {\n        pub fn $fn_name(self, $fn_parameters_list) {\n            $serialized_args_array_construction\n            let selector = $FROM_FIELD($fn_selector);\n            let calldata = [aztec::protocol::traits::ToField::to_field(selector)].concat($serialized_args_array_name);\n            let calldata_hash = aztec::hash::hash_calldata_array(calldata);\n            aztec::oracle::execution_cache::store(calldata, calldata_hash);\n            self.context.call_public_function_with_calldata_hash(\n                self.address,\n                calldata_hash,\n                /*is_static_call=*/ false,\n                /*hide_msg_sender=*/ false,\n            );\n        }\n    }\n}\n"
    },
    "108": {
      "function_locations": [
        {
          "name": "generate_public_dispatch",
          "start": 1247
        },
        {
          "name": "signature_key",
          "start": 5763
        },
        {
          "name": "compute_unpack_prelude",
          "start": 7203
        },
        {
          "name": "inline_unpack",
          "start": 8815
        },
        {
          "name": "build_unpack_helper",
          "start": 10050
        },
        {
          "name": "get_type",
          "start": 12254
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/dispatch.nr",
      "source": "use crate::macros::internals_functions_generation::external_functions_registry::get_public_functions;\nuse crate::protocol::meta::utils::get_params_len_quote;\nuse crate::utils::cmap::CHashMap;\nuse super::functions::initialization_utils::EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME;\nuse super::utils::compute_fn_selector;\nuse std::panic;\n\n/// Minimum number of public functions that must share a parameter-type signature before we extract a shared\n/// unpack helper. See [compute_unpack_prelude] for the rationale behind the chosen value.\nglobal EXTRACTION_THRESHOLD: u32 = 4;\n\n/// Generates a `public_dispatch` function for an Aztec contract module `m`.\n///\n/// The generated function dispatches public calls based on selector to the appropriate contract function. If\n/// `generate_emit_public_init_nullifier` is true, it also handles dispatch to the macro-generated\n/// `__emit_public_init_nullifier` function.\n///\n/// Alongside `public_dispatch`, this also emits one `__aztec_nr_internals__unpack_arguments_<N>` helper per\n/// parameter-type signature shared by enough public functions; see [compute_unpack_prelude] for the extraction\n/// criterion.\npub comptime fn generate_public_dispatch(m: Module, generate_emit_public_init_nullifier: bool) -> Quoted {\n    let functions = get_public_functions(m);\n\n    let unit = get_type::<()>();\n\n    // Count how many public functions share each parameter-type signature, so we can decide which signatures are\n    // worth extracting into helpers.\n    let signature_counts = &mut CHashMap::<Quoted, u32>::new();\n    for function in functions {\n        let parameters = function.parameters();\n        if parameters.len() != 0 {\n            let key = signature_key(parameters);\n            let prior = signature_counts.get(key).unwrap_or(0);\n            signature_counts.insert(key, prior + 1);\n        }\n    }\n\n    let seen_selectors = &mut CHashMap::<Field, Quoted>::new();\n    let signature_to_helper_idx = &mut CHashMap::<Quoted, u32>::new();\n    // The helper function definitions, in the order they were created.\n    let unpack_helpers: &mut [Quoted] = &mut @[];\n\n    let mut ifs = functions.map(|function: FunctionDefinition| {\n        let parameters = function.parameters();\n        let return_type = function.return_type();\n\n        let fn_name = function.name();\n        let selector: Field = compute_fn_selector(fn_name, parameters);\n\n        // Since function selectors are computed as the first 4 bytes of the hash of the function signature, it's\n        // possible to have collisions. With the following check, we ensure it doesn't happen within the same contract.\n        let existing_fn = seen_selectors.get(selector);\n        if existing_fn.is_some() {\n            let existing_fn = existing_fn.unwrap();\n            panic(\n                f\"Public function selector collision detected between functions '{fn_name}' and '{existing_fn}'\",\n            );\n        }\n        seen_selectors.insert(selector, fn_name);\n\n        let (unpack_prelude, call_args) = compute_unpack_prelude(\n            parameters,\n            signature_counts,\n            signature_to_helper_idx,\n            unpack_helpers,\n        );\n\n        // We call a function whose name is prefixed with `__aztec_nr_internals__`. This is necessary because the\n        // original function is intentionally made uncallable, preventing direct invocation within the contract.\n        // Instead, a new function with the same name, but prefixed by `__aztec_nr_internals__`, has been generated to\n        // be called here. For more details see the `process_functions` function.\n        let name = f\"__aztec_nr_internals__{fn_name}\".quoted_contents();\n        let call = quote { $name($call_args) };\n\n        let return_code = if return_type == unit {\n            quote {\n                $call;\n                // Force early return.\n                aztec::oracle::avm::avm_return([]);\n            }\n        } else {\n            quote {\n                let return_value = aztec::protocol::traits::Serialize::serialize($call);\n                aztec::oracle::avm::avm_return(return_value.as_vector());\n            }\n        };\n\n        let if_ = quote {\n            if selector == $selector {\n                $unpack_prelude\n                $return_code\n            }\n        };\n        if_\n    });\n\n    // If we injected the auto-generated public function to emit the public initialization nullifier, then\n    // we'll also need to handle its dispatch.\n    if generate_emit_public_init_nullifier {\n        let name = EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME;\n        let init_nullifier_selector: Field = compute_fn_selector(name, @[]);\n\n        ifs = ifs.push_back(\n            quote {\n                if selector == $init_nullifier_selector {\n                    $name();\n                    aztec::oracle::avm::avm_return([]);\n                }\n            },\n        );\n    }\n\n    if ifs.len() == 0 {\n        // No dispatch function if there are no public functions\n        quote {}\n    } else {\n        let ifs = ifs.push_back(quote { panic(f\"Unknown selector {selector}\") });\n        let dispatch = ifs.join(quote {  });\n\n        let helpers = (*unpack_helpers).join(quote {  });\n\n        let body = quote {\n            $helpers\n\n            // We mark this as public because our whole system depends on public functions having this attribute.\n            #[aztec::macros::internals_functions_generation::abi_attributes::abi_public]\n            pub unconstrained fn public_dispatch(selector: Field) {\n                $dispatch\n            }\n        };\n\n        body\n    }\n}\n\n/// Canonical Quoted representation of a parameter list's types, used as the deduplication key for unpack helpers.\ncomptime fn signature_key(parameters: [(Quoted, Type)]) -> Quoted {\n    parameters\n        .map(|param: (Quoted, Type)| {\n            let param_type = param.1;\n            quote { $param_type }\n        })\n        .join(quote { , })\n}\n\n/// Builds the dispatch-arm prelude for a public function and the comma-separated arg list to pass through to the call.\n///\n/// If the function's signature reaches `EXTRACTION_THRESHOLD`, the prelude reuses (or creates) a shared\n/// `__aztec_nr_internals__unpack_arguments_<N>` helper. Otherwise the calldata read is inlined, matching the\n/// pre-extraction shape; this avoids paying the helper-call overhead on signatures that would not benefit from the\n/// shared body.\n///\n/// The real break-even depends on the size of the inlined boilerplate at each call site (which scales with the\n/// parameter types' `stream_deserialize` cost), not just the share count: a signature with one `Field` arg inlines\n/// to a few opcodes per site, while a signature like `(AztecAddress, U128, PartialUintNote)` inlines into many. For\n/// now we approximate that with a single share-count threshold, which is the simplest knob that keeps the macro\n/// readable. If we ever want to be more precise we can size each helper against its per-site savings.\ncomptime fn compute_unpack_prelude(\n    parameters: [(Quoted, Type)],\n    signature_counts: &mut CHashMap<Quoted, u32>,\n    signature_to_helper_idx: &mut CHashMap<Quoted, u32>,\n    unpack_helpers: &mut [Quoted],\n) -> (Quoted, Quoted) {\n    if parameters.len() == 0 {\n        (quote {}, quote {})\n    } else {\n        let sig_key = signature_key(parameters);\n        let count = signature_counts.get(sig_key).unwrap_or(0);\n        let shared = count >= EXTRACTION_THRESHOLD;\n\n        let mut arg_names: [Quoted] = @[];\n        for parameter_index in 0..parameters.len() {\n            let arg_name = f\"arg{parameter_index}\".quoted_contents();\n            arg_names = arg_names.push_back(arg_name);\n        }\n        let args = arg_names.join(quote { , });\n\n        let prelude = if shared {\n            let existing_idx = signature_to_helper_idx.get(sig_key);\n            let helper_idx = if existing_idx.is_some() {\n                existing_idx.unwrap()\n            } else {\n                let new_idx = (*unpack_helpers).len();\n                signature_to_helper_idx.insert(sig_key, new_idx);\n                let helper_def = build_unpack_helper(new_idx, parameters);\n                *unpack_helpers = (*unpack_helpers).push_back(helper_def);\n                new_idx\n            };\n            let helper_name = f\"__aztec_nr_internals__unpack_arguments_{helper_idx}\".quoted_contents();\n            if parameters.len() == 1 {\n                quote { let arg0 = $helper_name(); }\n            } else {\n                quote { let ($args) = $helper_name(); }\n            }\n        } else {\n            inline_unpack(parameters)\n        };\n\n        (prelude, args)\n    }\n}\n\n/// Inlined calldata read + per-parameter `stream_deserialize` for signatures that are not worth extracting.\ncomptime fn inline_unpack(parameters: [(Quoted, Type)]) -> Quoted {\n    let params_len_quote = get_params_len_quote(parameters);\n    let initial_read = quote {\n        let input_calldata: [Field; $params_len_quote] = aztec::oracle::avm::calldata_copy(1, $params_len_quote);\n        let mut reader = aztec::protocol::utils::reader::Reader::new(input_calldata);\n    };\n\n    let mut read_quotes: [Quoted] = @[];\n    for parameter_index in 0..parameters.len() {\n        let arg_name = f\"arg{parameter_index}\".quoted_contents();\n        let param_type = parameters[parameter_index].1;\n        read_quotes = read_quotes.push_back(\n            quote {\n                let $arg_name: $param_type = aztec::protocol::traits::Deserialize::stream_deserialize(&mut reader);\n            },\n        );\n    }\n    let reads = read_quotes.join(quote { });\n\n    quote {\n        $initial_read\n        $reads\n    }\n}\n\n/// Emits the `#[inline_never]` helper that reads calldata for one specific parameter-type signature.\n///\n/// Returns a single value when there is only one parameter, and a tuple when there are several. Marked\n/// `#[inline_never]` (and therefore `unconstrained`) so each entry point can call into the same compiled body.\ncomptime fn build_unpack_helper(idx: u32, parameters: [(Quoted, Type)]) -> Quoted {\n    let helper_name = f\"__aztec_nr_internals__unpack_arguments_{idx}\".quoted_contents();\n    let params_len_quote = get_params_len_quote(parameters);\n\n    // The initial calldata_copy offset is 1 to skip the Field selector. The expected calldata is the serialization\n    // of:\n    // - FunctionSelector: the selector of the function intended to dispatch\n    // - Parameters: the parameters of the function intended to dispatch\n    // That is, exactly what is expected for a call to the target function, but with a selector added at the\n    // beginning.\n    let initial_read = quote {\n        let input_calldata: [Field; $params_len_quote] = aztec::oracle::avm::calldata_copy(1, $params_len_quote);\n        let mut reader = aztec::protocol::utils::reader::Reader::new(input_calldata);\n    };\n\n    let mut read_quotes: [Quoted] = @[];\n    let mut arg_quotes: [Quoted] = @[];\n    let mut type_quotes: [Quoted] = @[];\n    for parameter_index in 0..parameters.len() {\n        let arg_name = f\"arg{parameter_index}\".quoted_contents();\n        let param_type = parameters[parameter_index].1;\n        read_quotes = read_quotes.push_back(\n            quote {\n                let $arg_name: $param_type = aztec::protocol::traits::Deserialize::stream_deserialize(&mut reader);\n            },\n        );\n        arg_quotes = arg_quotes.push_back(arg_name);\n        type_quotes = type_quotes.push_back(quote { $param_type });\n    }\n    let reads = read_quotes.join(quote { });\n    let return_args = arg_quotes.join(quote { , });\n\n    if parameters.len() == 1 {\n        let only_type = parameters[0].1;\n        quote {\n            #[inline_never]\n            #[contract_library_method]\n            unconstrained fn $helper_name() -> $only_type {\n                $initial_read\n                $reads\n                arg0\n            }\n        }\n    } else {\n        let return_types = type_quotes.join(quote { , });\n        quote {\n            #[inline_never]\n            #[contract_library_method]\n            unconstrained fn $helper_name() -> ($return_types) {\n                $initial_read\n                $reads\n                ($return_args)\n            }\n        }\n    }\n}\n\ncomptime fn get_type<T>() -> Type {\n    let t: T = std::mem::zeroed();\n    std::meta::type_of(t)\n}\n"
    },
    "109": {
      "function_locations": [
        {
          "name": "generate_emit_public_init_nullifier",
          "start": 726
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/emit_public_init_nullifier.nr",
      "source": "use crate::macros::{\n    functions::initialization_utils::{EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME, has_public_init_checked_functions},\n    internals_functions_generation::external_functions_registry::get_private_functions,\n    utils::is_fn_initializer,\n};\n\n/// Returns `(has_public_init_nullifier_fn, fn_body)` for the auto-generated public init nullifier function.\n///\n/// Contracts with a private initializer and public functions that check initialization need an auto-generated public\n/// function to emit the public init nullifier. If these conditions are met, returns `(true, fn_body_quoted)`;\n/// otherwise returns `(false, quote {})`.\npub(crate) comptime fn generate_emit_public_init_nullifier(m: Module) -> (bool, Quoted) {\n    let has_private_initializer = get_private_functions(m).any(|f: FunctionDefinition| is_fn_initializer(f));\n    let has_public_fns_with_init_check = has_public_init_checked_functions(m);\n\n    if has_private_initializer & has_public_fns_with_init_check {\n        let name = EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME;\n        let assertion_message = f\"Function {name} can only be called by the same contract\".as_quoted_str();\n        let body = quote {\n            #[aztec::macros::internals_functions_generation::abi_attributes::abi_public]\n            unconstrained fn $name() {\n                let context = aztec::context::PublicContext::new(|| { 0 });\n                assert(\n                    context.maybe_msg_sender().unwrap() == context.this_address(),\n                    $assertion_message,\n                );\n                aztec::macros::functions::initialization_utils::mark_as_initialized_public(context);\n            }\n        };\n        (true, body)\n    } else {\n        (false, quote {})\n    }\n}\n"
    },
    "112": {
      "function_locations": [
        {
          "name": "has_public_init_checked_functions",
          "start": 1518
        },
        {
          "name": "mark_as_initialized_public",
          "start": 2573
        },
        {
          "name": "mark_as_initialized_private",
          "start": 2780
        },
        {
          "name": "mark_as_initialized_from_private_initializer",
          "start": 3623
        },
        {
          "name": "mark_as_initialized_from_public_initializer",
          "start": 4170
        },
        {
          "name": "assert_is_initialized_public",
          "start": 5214
        },
        {
          "name": "assert_is_initialized_private",
          "start": 5942
        },
        {
          "name": "assert_is_initialized_utility",
          "start": 6727
        },
        {
          "name": "compute_private_initialization_nullifier",
          "start": 7449
        },
        {
          "name": "compute_public_initialization_nullifier",
          "start": 7662
        },
        {
          "name": "assert_initialization_matches_address_preimage_public",
          "start": 7977
        },
        {
          "name": "assert_initialization_matches_address_preimage_private",
          "start": 8731
        },
        {
          "name": "compute_initialization_hash",
          "start": 9537
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/functions/initialization_utils.nr",
      "source": "use crate::protocol::{\n    abis::function_selector::FunctionSelector,\n    address::AztecAddress,\n    constants::{\n        DOM_SEP__INITIALIZER, DOM_SEP__PRIVATE_INITIALIZATION_NULLIFIER, DOM_SEP__PUBLIC_INITIALIZATION_NULLIFIER,\n    },\n    hash::poseidon2_hash_with_separator,\n    traits::ToField,\n};\nuse std::meta::{ctstring::AsCtString, unquote};\n\nuse crate::{\n    context::{PrivateContext, PublicContext, UtilityContext},\n    macros::{\n        internals_functions_generation::external_functions_registry::get_public_functions, utils::fn_has_noinitcheck,\n    },\n    nullifier::utils::compute_nullifier_existence_request,\n    oracle::{\n        get_contract_instance::{\n            get_contract_instance, get_contract_instance_deployer_avm, get_contract_instance_initialization_hash_avm,\n        },\n        nullifiers::check_nullifier_exists,\n    },\n};\n\n/// The name of the auto-generated function that emits the public initialization nullifier.\n///\n/// This function is injected into the public dispatch table for contracts with initializers.\npub(crate) comptime global EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME: Quoted = quote { __emit_public_init_nullifier };\n\n/// Returns `true` if the module has any public functions that require initialization checks (i.e. that don't have\n/// `#[noinitcheck]`). If all public functions skip initialization checks, there's no point emitting the public\n/// initialization nullifier since nothing will check it.\npub(crate) comptime fn has_public_init_checked_functions(m: Module) -> bool {\n    get_public_functions(m).any(|f: FunctionDefinition| !fn_has_noinitcheck(f))\n}\n\n/// Selector for `EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME`, derived at comptime so it stays in sync.\nglobal EMIT_PUBLIC_INIT_NULLIFIER_SELECTOR: FunctionSelector = comptime {\n    let name = EMIT_PUBLIC_INIT_NULLIFIER_FN_NAME;\n    let sig = f\"{name}()\".as_ctstring();\n    unquote!(quote { FunctionSelector::from_signature($sig) })\n};\n\n/// Emits (only) the public initialization nullifier.\n///\n/// This function is called by the aztec-nr auto-generated external public contract function (enqueued by private\n/// [`initializer`](crate::macros::functions::initializer) functions), and also by\n/// [`mark_as_initialized_from_public_initializer`] for public initializers.\n///\n/// # Warning\n///\n/// This should not be called manually. Incorrect use can leave the contract in a broken initialization state (e.g.\n/// emitting the public nullifier without the private one). The macro-generated code handles this automatically.\npub fn mark_as_initialized_public(context: PublicContext) {\n    let init_nullifier = compute_public_initialization_nullifier(context.this_address());\n    context.push_nullifier_unsafe(init_nullifier);\n}\n\nfn mark_as_initialized_private(context: &mut PrivateContext) {\n    let address = (*context).this_address();\n    let instance = get_contract_instance(address);\n    let init_nullifier = compute_private_initialization_nullifier(address, instance.initialization_hash);\n    context.push_nullifier_unsafe(init_nullifier);\n}\n\n/// Emits the private initialization nullifier and, if relevant, enqueues the emission of the public one.\n///\n/// If the contract has public functions that perform initialization checks (i.e. that don't have `#[noinitcheck]`),\n/// this also enqueues a call to the auto-generated `__emit_public_init_nullifier` function so the public\n/// initialization nullifier is emitted in public. Called by private\n/// [`initializer`](crate::macros::functions::initializer) macros.\npub fn mark_as_initialized_from_private_initializer(context: &mut PrivateContext, emit_public_init_nullifier: bool) {\n    mark_as_initialized_private(context);\n    if emit_public_init_nullifier {\n        context.call_public_function((*context).this_address(), EMIT_PUBLIC_INIT_NULLIFIER_SELECTOR, [], false);\n    }\n}\n\n/// Emits both initialization nullifiers (private and public).\n///\n/// Called by public [`initializer`](crate::macros::functions::initializer) macros, since public initializers must set\n/// both so that both private and public functions see the contract as initialized.\npub fn mark_as_initialized_from_public_initializer(context: PublicContext) {\n    let address = context.this_address();\n    // `get_contract_instance_initialization_hash_avm` returns None when there is no deployed contract instance at the\n    // given address. This cannot happen here because we're querying `this_address()`, i.e. the contract that is\n    // currently executing, which by definition must have been deployed.\n    let init_hash = get_contract_instance_initialization_hash_avm(address).unwrap();\n    let private_nullifier = compute_private_initialization_nullifier(address, init_hash);\n    context.push_nullifier_unsafe(private_nullifier);\n    mark_as_initialized_public(context);\n}\n\n/// Asserts that the contract has been initialized, from public's perspective.\n///\n/// Checks that the public initialization nullifier exists.\n// All external public contract functions will call this function (except those marked as #[no_init]), so we\n// want to make sure that we don't include a copy of its body for each of them.\n#[inline_never]\npub unconstrained fn assert_is_initialized_public(context: PublicContext) {\n    let init_nullifier = compute_public_initialization_nullifier(context.this_address());\n    // Safety: the public initialization nullifier is only ever emitted by public functions, and so the timing\n    // concerns from nullifier_exists_unsafe do not apply. Additionally, it is emitted after all initializer\n    // functions have run, so initialization is guaranteed to be complete by the time it exists.\n    assert(context.nullifier_exists_unsafe(init_nullifier, context.this_address()), \"Not initialized\");\n}\n\n/// Asserts that the contract has been initialized, from private's perspective.\n///\n/// Checks that the private initialization nullifier exists.\npub fn assert_is_initialized_private(context: &mut PrivateContext) {\n    let address = context.this_address();\n    let instance = get_contract_instance(address);\n    let init_nullifier = compute_private_initialization_nullifier(address, instance.initialization_hash);\n    let nullifier_existence_request = compute_nullifier_existence_request(init_nullifier, address);\n    context.assert_nullifier_exists(nullifier_existence_request);\n}\n\n/// Asserts that the contract has been initialized, from a utility function's perspective.\n///\n/// Only checks the private initialization nullifier in the settled nullifier tree. Since both nullifiers are\n/// emitted in the same transaction, the private nullifier's presence in settled state guarantees the public one\n/// is also settled.\npub unconstrained fn assert_is_initialized_utility(context: UtilityContext) {\n    let address = context.this_address();\n    let instance = get_contract_instance(address);\n    let initialization_nullifier = compute_private_initialization_nullifier(address, instance.initialization_hash);\n    assert(check_nullifier_exists(initialization_nullifier), \"Not initialized\");\n}\n\n/// Computes the private initialization nullifier for a contract.\n///\n/// Including `init_hash` ensures that an observer who knows only the contract address cannot reconstruct this value\n/// and scan the nullifier tree to determine initialization status. `init_hash` is only known to parties that hold\n/// the contract instance.\npub fn compute_private_initialization_nullifier(address: AztecAddress, init_hash: Field) -> Field {\n    poseidon2_hash_with_separator(\n        [address.to_field(), init_hash],\n        DOM_SEP__PRIVATE_INITIALIZATION_NULLIFIER,\n    )\n}\n\nfn compute_public_initialization_nullifier(address: AztecAddress) -> Field {\n    poseidon2_hash_with_separator(\n        [address.to_field()],\n        DOM_SEP__PUBLIC_INITIALIZATION_NULLIFIER,\n    )\n}\n\n// Called by code injected by the macros in `macros/internals_functions_generation/external/public.nr`.\npub fn assert_initialization_matches_address_preimage_public(context: PublicContext) {\n    let address = context.this_address();\n    let deployer = get_contract_instance_deployer_avm(address).unwrap();\n    let initialization_hash = get_contract_instance_initialization_hash_avm(address).unwrap();\n    let expected_init = compute_initialization_hash(context.selector(), context.get_args_hash());\n    assert(initialization_hash == expected_init, \"Initialization hash does not match\");\n    assert(\n        (deployer.is_zero()) | (deployer == context.maybe_msg_sender().unwrap()),\n        \"Initializer address is not the contract deployer\",\n    );\n}\n\n// Called by code injected by the macros in `macros/internals_functions_generation/external/private.nr`.\npub fn assert_initialization_matches_address_preimage_private(context: PrivateContext) {\n    let address = context.this_address();\n    let instance = get_contract_instance(address);\n    let expected_init = compute_initialization_hash(context.selector(), context.get_args_hash());\n    assert(instance.initialization_hash == expected_init, \"Initialization hash does not match\");\n    assert(\n        (instance.deployer.is_zero()) | (instance.deployer == context.maybe_msg_sender().unwrap()),\n        \"Initializer address is not the contract deployer\",\n    );\n}\n\n/// This function is not only used in macros but it's also used by external people to check that an instance has been\n/// initialized with the correct constructor arguments. Don't hide this unless you implement factory functionality.\npub fn compute_initialization_hash(init_selector: FunctionSelector, init_args_hash: Field) -> Field {\n    poseidon2_hash_with_separator(\n        [init_selector.to_field(), init_args_hash],\n        DOM_SEP__INITIALIZER,\n    )\n}\n"
    },
    "118": {
      "function_locations": [
        {
          "name": "generate_private_external",
          "start": 579
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/internals_functions_generation/external/private.nr",
      "source": "use crate::macros::{\n    functions::initialization_utils::has_public_init_checked_functions,\n    internals_functions_generation::external::helpers::{create_authorize_once_check, get_abi_relevant_attributes},\n    utils::{\n        fn_has_allow_phase_change, fn_has_authorize_once, fn_has_noinitcheck, is_fn_initializer, is_fn_only_self,\n        is_fn_view, module_has_initializer, module_has_storage,\n    },\n};\nuse crate::protocol::meta::utils::derive_serialization_quotes;\nuse std::meta::type_of;\n\npub(crate) comptime fn generate_private_external(f: FunctionDefinition) -> Quoted {\n    let module_has_initializer = module_has_initializer(f.module());\n    let module_has_storage = module_has_storage(f.module());\n\n    // Private functions undergo a lot of transformations from their Aztec.nr form into a circuit that can be fed to\n    // the Private Kernel Circuit. First we change the function signature so that it also receives\n    // `PrivateContextInputs`, which contain information about the execution context (e.g. the caller).\n    let original_params = f.parameters();\n\n    let original_params_quotes =\n        original_params.map(|(param_name, param_type)| quote { $param_name: $param_type }).join(quote {, });\n\n    let params = quote { inputs: aztec::context::inputs::PrivateContextInputs, $original_params_quotes };\n\n    let mut body = f.body().as_block().unwrap();\n\n    // The original params are hashed and passed to the `context` object, so that the kernel can verify we've received\n    // the correct values.\n    let (args_serialization, _, serialized_args_name) = derive_serialization_quotes(original_params, false);\n\n    let storage_init = if module_has_storage {\n        // Contract has Storage defined so we initialize it.\n        quote {\n            let storage = Storage::init(&mut context);\n        }\n    } else {\n        // Contract does not have Storage defined, so we set storage to the unit type `()`. ContractSelfPrivate\n        // requires a storage struct in its constructor. Using an Option type would lead to worse developer experience\n        // and higher constraint counts so we use the unit type `()` instead.\n        quote {\n            let storage = ();\n        }\n    };\n\n    let contract_self_creation = quote {\n        #[allow(unused_variables)]\n        let mut self = {\n            $args_serialization\n            let args_hash = aztec::hash::hash_args($serialized_args_name);\n            let mut context = aztec::context::PrivateContext::new(inputs, args_hash);\n            $storage_init\n            let self_address = context.this_address();\n            let call_self: CallSelf<&mut aztec::context::PrivateContext> = CallSelf { address: self_address, context: &mut context };\n            let enqueue_self: EnqueueSelf<&mut aztec::context::PrivateContext> = EnqueueSelf { address: self_address, context: &mut context };\n            let call_self_static: CallSelfStatic<&mut aztec::context::PrivateContext> = CallSelfStatic { address: self_address, context: &mut context };\n            let enqueue_self_static: EnqueueSelfStatic<&mut aztec::context::PrivateContext> = EnqueueSelfStatic { address: self_address, context: &mut context };\n            let internal: CallInternal<&mut aztec::context::PrivateContext> = CallInternal { context: &mut context };\n            let call_self_utility = CallSelfUtility { address: self_address };\n            let utility: aztec::contract_self::PrivateUtilityCalls<CallSelfUtility> = aztec::contract_self::PrivateUtilityCalls { call_self: call_self_utility };\n            aztec::contract_self::ContractSelfPrivate::new(&mut context, storage, call_self, enqueue_self, call_self_static, enqueue_self_static, internal, utility)\n        };\n    };\n\n    let original_function_name = f.name();\n\n    // Modifications introduced by the different marker attributes.\n    let internal_check = if is_fn_only_self(f) {\n        let assertion_message = f\"Function {original_function_name} can only be called by the same contract\";\n        quote { assert(self.msg_sender() == self.address, $assertion_message); }\n    } else {\n        quote {}\n    };\n\n    let view_check = if is_fn_view(f) {\n        let assertion_message = f\"Function {original_function_name} can only be called statically\".as_quoted_str();\n        quote { assert(self.context.is_static_call(), $assertion_message); }\n    } else {\n        quote {}\n    };\n\n    let (assert_initializer, mark_as_initialized) = if is_fn_initializer(f) {\n        let has_public_fns_with_init_check = has_public_init_checked_functions(f.module());\n        (\n            quote {\n                aztec::macros::functions::initialization_utils::assert_initialization_matches_address_preimage_private(*self.context);\n            },\n            quote { aztec::macros::functions::initialization_utils::mark_as_initialized_from_private_initializer(self.context, $has_public_fns_with_init_check); },\n        )\n    } else {\n        (quote {}, quote {})\n    };\n\n    // Initialization checks are not included in contracts that don't have initializers.\n    let init_check = if module_has_initializer & !is_fn_initializer(f) & !fn_has_noinitcheck(f) {\n        quote { aztec::macros::functions::initialization_utils::assert_is_initialized_private(self.context); }\n    } else {\n        quote {}\n    };\n\n    // Phase checks are skipped in functions that request to manually handle phases\n    let initial_phase_store = if fn_has_allow_phase_change(f) {\n        quote {}\n    } else {\n        quote { let within_revertible_phase: bool = self.context.in_revertible_phase(); }\n    };\n\n    let no_phase_change_check = if fn_has_allow_phase_change(f) {\n        quote {}\n    } else {\n        quote {\n            assert_eq(\n                within_revertible_phase,\n                self.context.in_revertible_phase(),\n                f\"Phase change detected on function with phase check. If this is expected, use #[allow_phase_change]\",\n            );\n        }\n    };\n\n    // Inject the authwit check if the function is marked with #[authorize_once].\n    let authorize_once_check = if fn_has_authorize_once(f) {\n        create_authorize_once_check(f, true)\n    } else {\n        quote {}\n    };\n\n    // Finally, we need to change the return type to be `PrivateCircuitPublicInputs`, which is what the Private Kernel\n    // circuit expects.\n    let return_value_var_name = quote { macro__returned__values };\n\n    let return_value_type = f.return_type();\n    let return_value = if body.len() == 0 {\n        quote {}\n    } else if return_value_type != type_of(()) {\n        // The original return value is serialized and hashed before being passed to the context.\n        let (body_without_return, last_body_expr) = body.pop_back();\n        let return_value = last_body_expr.quoted();\n        let return_value_assignment = quote { let $return_value_var_name: $return_value_type = $return_value; };\n\n        let (return_serialization, _, serialized_return_name) =\n            derive_serialization_quotes([(return_value_var_name, return_value_type)], false);\n\n        body = body_without_return;\n\n        quote {\n            $return_value_assignment\n            $return_serialization\n            self.context.set_return_hash($serialized_return_name);\n        }\n    } else {\n        let (body_without_return, last_body_expr) = body.pop_back();\n        if !last_body_expr.has_semicolon()\n            & last_body_expr.as_for().is_none()\n            & last_body_expr.as_assert().is_none()\n            & last_body_expr.as_for_range().is_none()\n            & last_body_expr.as_assert_eq().is_none()\n            & last_body_expr.as_let().is_none() {\n            let unused_return_value_name = f\"_{return_value_var_name}\".quoted_contents();\n            body = body_without_return.push_back(quote { let $unused_return_value_name = $last_body_expr; }\n                .as_expr()\n                .unwrap());\n        }\n        quote {}\n    };\n\n    let context_finish = quote { self.context.finish() };\n\n    // Preserve all attributes that are relevant to the function's ABI.\n    let abi_relevant_attributes = get_abi_relevant_attributes(f);\n\n    let fn_name = f\"__aztec_nr_internals__{original_function_name}\".quoted_contents();\n\n    let to_prepend = quote {\n        aztec::oracle::version::assert_compatible_oracle_version();\n        $contract_self_creation\n        $initial_phase_store\n        $assert_initializer\n        $init_check\n        $internal_check\n        $view_check\n        $authorize_once_check\n    };\n\n    let body_quote = body.map(|expr| expr.quoted()).join(quote { });\n\n    // `mark_as_initialized` is placed after the user's function body. If it ran at the beginning, the contract\n    // would appear initialized while the initializer is still running, allowing contracts called by the initializer\n    // to re-enter into a half-initialized contract.\n    let to_append = quote {\n        $return_value\n        $mark_as_initialized\n        $no_phase_change_check\n        $context_finish\n    };\n\n    quote {\n        #[aztec::macros::internals_functions_generation::abi_attributes::abi_private]\n        $abi_relevant_attributes\n        fn $fn_name($params) -> return_data aztec::protocol::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs {\n            $to_prepend\n            $body_quote\n            $to_append\n        }\n    }\n}\n"
    },
    "119": {
      "function_locations": [
        {
          "name": "generate_public_self_creator_from_context",
          "start": 916
        },
        {
          "name": "generate_public_self_creator",
          "start": 3117
        },
        {
          "name": "generate_public_external",
          "start": 4225
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/internals_functions_generation/external/public.nr",
      "source": "use crate::macros::{\n    internals_functions_generation::external::helpers::{create_authorize_once_check, get_abi_relevant_attributes},\n    utils::{\n        fn_has_authorize_once, fn_has_noinitcheck, is_fn_initializer, is_fn_only_self, is_fn_view,\n        module_has_initializer, module_has_storage,\n    },\n};\n\n/// Emits a per-contract helper that creates the `self` value from a `PublicContext` already in scope.\n///\n/// This is the shared helper used by both:\n/// - public external functions, via [`generate_public_self_creator`], which constructs a fresh `PublicContext` from\n///   `calldata_copy` and then delegates to this helper; and\n/// - public internal functions and `#[contract_library_method]` bodies, which already receive `context` as a\n///   parameter and call this helper directly to skip the `calldata_copy` step.\npub(crate) comptime fn generate_public_self_creator_from_context(m: Module) -> Quoted {\n    let (storage_type, storage_init) = if module_has_storage(m) {\n        (quote { Storage<aztec::context::PublicContext> }, quote { let storage = Storage::init(context); })\n    } else {\n        // Contract does not have Storage defined, so we set storage to the unit type `()`. ContractSelfPublic requires\n        // a storage struct in its constructor. Using an Option type would lead to worse developer experience and\n        // higher constraint counts so we use the unit type `()` instead.\n        (quote { () }, quote { let storage = (); })\n    };\n\n    quote {\n        #[contract_library_method]\n        unconstrained fn __aztec_nr_internals__create_public_self_from_context(context: aztec::context::PublicContext) -> aztec::contract_self::ContractSelfPublic<$storage_type, CallSelf<aztec::context::PublicContext>, CallSelfStatic<aztec::context::PublicContext>, CallInternal<aztec::context::PublicContext>> {\n            $storage_init\n            let self_address = context.this_address();\n            let call_self: CallSelf<aztec::context::PublicContext> = CallSelf { address: self_address, context };\n            let call_self_static: CallSelfStatic<aztec::context::PublicContext> = CallSelfStatic { address: self_address, context };\n            let internal: CallInternal<aztec::context::PublicContext> = CallInternal { context };\n            aztec::contract_self::ContractSelfPublic::new(context, storage, call_self, call_self_static, internal)\n        }\n    }\n}\n\n/// Generates the per-contract helper that builds public `self`.\n///\n/// Each public external function calls this helper instead of inlining the construction, so the same preamble does not\n/// appear duplicated in every public function body. We let Noir's inliner decide whether to inline the helper at each\n/// call site rather than forcing it via macro expansion.\n///\n/// The helper is generic over the calldata length `N` because `PublicContext::new` takes a closure that reads `N`\n/// fields from calldata. Noir monomorphizes one copy per distinct `N`, so public functions with the same number of\n/// serialized args reuse the same compiled code.\npub(crate) comptime fn generate_public_self_creator(m: Module) -> Quoted {\n    let storage_type = if module_has_storage(m) {\n        quote { Storage<aztec::context::PublicContext> }\n    } else {\n        quote { () }\n    };\n\n    quote {\n        #[contract_library_method]\n        unconstrained fn __aztec_nr_internals__create_public_self<let N: u32>() -> aztec::contract_self::ContractSelfPublic<$storage_type, CallSelf<aztec::context::PublicContext>, CallSelfStatic<aztec::context::PublicContext>, CallInternal<aztec::context::PublicContext>> {\n            // Unlike in the private case, in public the `context` does not need to receive the hash of the original\n            // params.\n            let context = aztec::context::PublicContext::new(|| {\n                // We start from 1 because we skip the selector for the dispatch function.\n                let serialized_args : [Field; N] = aztec::oracle::avm::calldata_copy(1, N);\n                aztec::hash::hash_args(serialized_args)\n            });\n            __aztec_nr_internals__create_public_self_from_context(context)\n        }\n    }\n}\n\npub(crate) comptime fn generate_public_external(f: FunctionDefinition) -> Quoted {\n    let module_has_initializer = module_has_initializer(f.module());\n\n    // Public functions undergo a lot of transformations from their Aztec.nr form.\n    let original_params = f.parameters();\n\n    let args_len_quote = if original_params.len() == 0 {\n        // If the function has no parameters, we set the args_len to 0.\n        quote { 0 }\n    } else {\n        // The following will give us <type_of_struct_member_1 as Serialize>::N + <type_of_struct_member_2 as\n        // Serialize>::N + ...\n        original_params\n            .map(|(_, param_type): (Quoted, Type)| {\n                quote {\n            <$param_type as $crate::protocol::traits::Serialize>::N\n        }\n            })\n            .join(quote {+})\n    };\n\n    let contract_self_creation = quote {\n        #[allow(unused_variables)]\n        let mut self = __aztec_nr_internals__create_public_self::<$args_len_quote>();\n    };\n\n    let original_function_name = f.name();\n\n    // Modifications introduced by the different marker attributes.\n    let internal_check = if is_fn_only_self(f) {\n        let assertion_message = f\"Function {original_function_name} can only be called by the same contract\";\n        quote { assert(self.msg_sender() == self.address, $assertion_message); }\n    } else {\n        quote {}\n    };\n\n    let view_check = if is_fn_view(f) {\n        let assertion_message = f\"Function {original_function_name} can only be called statically\".as_quoted_str();\n        quote { assert(self.context.is_static_call(), $assertion_message); }\n    } else {\n        quote {}\n    };\n\n    let (assert_initializer, mark_as_initialized) = if is_fn_initializer(f) {\n        (\n            quote {\n                aztec::macros::functions::initialization_utils::assert_initialization_matches_address_preimage_public(self.context);\n            },\n            quote {\n                aztec::macros::functions::initialization_utils::mark_as_initialized_from_public_initializer(self.context);\n            },\n        )\n    } else {\n        (quote {}, quote {})\n    };\n\n    // Initialization checks are not included in contracts that don't have initializers.\n    let init_check = if module_has_initializer & !fn_has_noinitcheck(f) & !is_fn_initializer(f) {\n        quote { aztec::macros::functions::initialization_utils::assert_is_initialized_public(self.context); }\n    } else {\n        quote {}\n    };\n\n    // Inject the authwit check if the function is marked with #[authorize_once].\n    let authorize_once_check = if fn_has_authorize_once(f) {\n        create_authorize_once_check(f, false)\n    } else {\n        quote {}\n    };\n\n    let to_prepend = quote {\n        $contract_self_creation\n        $assert_initializer\n        $init_check\n        $internal_check\n        $view_check\n        $authorize_once_check\n    };\n\n    // `mark_as_initialized` is placed after the user's function body. If it ran at the beginning, the contract\n    // would appear initialized while the initializer is still running, allowing contracts called by the initializer\n    // to re-enter into a half-initialized contract.\n    let to_append = quote {\n        $mark_as_initialized\n    };\n\n    let fn_name = f\"__aztec_nr_internals__{original_function_name}\".quoted_contents();\n    let body = f.body();\n    let return_type = f.return_type();\n\n    // New function parameters are the same as the original function's ones.\n    let params = original_params.map(|(param_name, param_type)| quote { $param_name: $param_type }).join(quote {, });\n\n    // Preserve all attributes that are relevant to the function's ABI.\n    let abi_relevant_attributes = get_abi_relevant_attributes(f);\n\n    // All public functions are automatically made unconstrained, even if they were not marked as such. This is because\n    // instead of compiling into a circuit, they will compile to bytecode that will be later transpiled into AVM\n    // bytecode.\n    quote {\n        #[aztec::macros::internals_functions_generation::abi_attributes::abi_public]\n        $abi_relevant_attributes\n        unconstrained fn $fn_name($params) -> pub $return_type {\n            $to_prepend\n            $body\n            $to_append\n        }\n    }\n}\n"
    },
    "120": {
      "function_locations": [
        {
          "name": "generate_utility_self_creator",
          "start": 775
        },
        {
          "name": "generate_utility_external",
          "start": 1935
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/internals_functions_generation/external/utility.nr",
      "source": "use crate::macros::utils::{fn_has_noinitcheck, module_has_initializer, module_has_storage};\n\n/// Emits a per-contract helper that builds the `self` value used by every utility external function.\n///\n/// Each utility external function calls this helper instead of inlining the construction, so the\n/// `UtilityContext::new`/`Storage::init`/`CallSelfUtility`/`ContractSelfUtility::new` chain does not appear duplicated\n/// in every utility function body. We let Noir's inliner decide whether to inline the helper at each call site rather\n/// than forcing it via macro expansion.\n///\n/// Unlike the public counterpart, this helper takes no arguments because `UtilityContext::new` does not need calldata.\npub(crate) comptime fn generate_utility_self_creator(m: Module) -> Quoted {\n    let (storage_type, storage_init) = if module_has_storage(m) {\n        (quote { Storage<aztec::context::UtilityContext> }, quote { let storage = Storage::init(context); })\n    } else {\n        // Contract does not have Storage defined, so we set storage to the unit type `()`. ContractSelfUtility requires\n        // a storage struct in its constructor. Using an Option type would lead to worse developer experience and higher\n        // constraint counts so we use the unit type `()` instead.\n        (quote { () }, quote { let storage = (); })\n    };\n\n    quote {\n        #[contract_library_method]\n        unconstrained fn __aztec_nr_internals__create_utility_self() -> aztec::contract_self::ContractSelfUtility<$storage_type, CallSelfUtility> {\n            let context = aztec::context::UtilityContext::new();\n            $storage_init\n            let self_address = context.this_address();\n            let call_self = CallSelfUtility { address: self_address };\n            aztec::contract_self::ContractSelfUtility::new(context, storage, call_self)\n        }\n    }\n}\n\npub(crate) comptime fn generate_utility_external(f: FunctionDefinition) -> Quoted {\n    let module_has_initializer = module_has_initializer(f.module());\n\n    let contract_self_creation = quote {\n        #[allow(unused_variables)]\n        let mut self = __aztec_nr_internals__create_utility_self();\n    };\n\n    // Initialization checks are not included in contracts that don't have initializers.\n    let init_check = if module_has_initializer & !fn_has_noinitcheck(f) {\n        quote {\n            aztec::macros::functions::initialization_utils::assert_is_initialized_utility(\n                self.context,\n            );\n        }\n    } else {\n        quote {}\n    };\n\n    // A quote to be injected at the beginning of the function body.\n    let to_prepend = quote {\n        aztec::oracle::version::assert_compatible_oracle_version();\n        $contract_self_creation\n        $init_check\n    };\n\n    let original_function_name = f.name();\n    let fn_name = f\"__aztec_nr_internals__{original_function_name}\".quoted_contents();\n    let body = f.body();\n    let params = f.parameters().map(|(param_name, param_type)| quote { $param_name: $param_type }).join(quote {, });\n    let return_type = f.return_type();\n\n    quote {\n        #[aztec::macros::internals_functions_generation::abi_attributes::abi_utility]\n        unconstrained fn $fn_name($params) -> pub $return_type {\n            $to_prepend\n            $body\n        }\n    }\n}\n"
    },
    "126": {
      "function_locations": [
        {
          "name": "get_next_note_type_id",
          "start": 528
        },
        {
          "name": "generate_note_type_impl",
          "start": 1152
        },
        {
          "name": "generate_note_hash_trait_impl",
          "start": 3273
        },
        {
          "name": "generate_note_properties",
          "start": 6162
        },
        {
          "name": "note",
          "start": 8145
        },
        {
          "name": "custom_note",
          "start": 9996
        },
        {
          "name": "assert_has_packable",
          "start": 10772
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/macros/notes.nr",
      "source": "use crate::note::note_getter_options::PropertySelector;\nuse std::{collections::bounded_vec::BoundedVec, meta::type_of};\n\n/// Maximum number of note types within 1 contract.\ncomptime global MAX_NOTE_TYPES: u32 = 128;\n\n/// A BoundedVec containing all the note types within this contract.\npub comptime mut global NOTES: BoundedVec<Type, MAX_NOTE_TYPES> = BoundedVec::new();\n\ncomptime mut global NOTE_TYPE_ID_COUNTER: u32 = 0;\n\n/// The note type id is set by enumerating the note types.\ncomptime fn get_next_note_type_id() -> Field {\n    // We assert that the note type id fits within 7 bits\n    assert(\n        NOTE_TYPE_ID_COUNTER < MAX_NOTE_TYPES,\n        f\"A contract can contain at most {MAX_NOTE_TYPES} different note types\",\n    );\n\n    let note_type_id = NOTE_TYPE_ID_COUNTER as Field;\n    NOTE_TYPE_ID_COUNTER += 1;\n    note_type_id\n}\n\n/// Generates default `NoteType` implementation for a given note struct `s` and returns it as a quote.\n///\n/// ```noir\n/// impl NoteType for NoteStruct {\n///     fn get_id() -> Field {\n///         ...\n///     }\n/// }\n/// ```\ncomptime fn generate_note_type_impl(s: TypeDefinition, note_type_id: Field) -> Quoted {\n    let name = s.name();\n    let typ = s.as_type();\n    let note_type_name: str<_> = f\"{name}\".as_quoted_str!();\n    let max_note_packed_len = crate::messages::logs::note::MAX_NOTE_PACKED_LEN;\n\n    quote {\n        impl aztec::note::note_interface::NoteType for $name {\n            fn get_id() -> Field {\n                // This static assertion ensures the note's packed length doesn't exceed the maximum allowed size.\n                // While this check would ideally live in the Packable trait implementation, we place it here since\n                // this function is always generated by our macros and the Packable trait implementation is not.\n                //\n                // Note: We set the note type name and max packed length as local variables because injecting them\n                // directly into the error message doesn't work.\n                let note_type_name = $note_type_name;\n                let max_note_packed_len: u32 = $max_note_packed_len; // Casting to u32 to avoid the value to be printed in hex.\n                let note_packed_len = <$typ as aztec::protocol::traits::Packable>::N;\n                std::static_assert(note_packed_len <= $max_note_packed_len, f\"{note_type_name} has a packed length of {note_packed_len} fields, which exceeds the maximum allowed length of {max_note_packed_len} fields. See https://docs.aztec.network/errors/4\");\n\n                $note_type_id\n            }\n        }\n    }\n}\n\n/// Generates default `NoteHash` trait implementation for a given note struct `s` and returns it as a quote.\n///\n/// # Generated Implementation\n///\n/// ```noir\n/// impl NoteHash for NoteStruct {\n///     fn compute_note_hash(self, owner: AztecAddress, storage_slot: Field, randomness: Field) -> Field { ... }\n///\n///     fn compute_nullifier(self, context: &mut PrivateContext, note_hash_for_nullification: Field, owner:\n/// AztecAddress) -> Field { ... }\n///\n///     unconstrained fn compute_nullifier_unconstrained(note_hash_for_nullification: Field, owner: AztecAddress) ->\n/// Field { ... }\n/// }\n/// ```\ncomptime fn generate_note_hash_trait_impl(s: TypeDefinition) -> Quoted {\n    let name = s.name();\n\n    quote {\n        impl aztec::note::note_interface::NoteHash for $name {\n            fn compute_note_hash(self, owner: aztec::protocol::address::AztecAddress, storage_slot: Field, randomness: Field) -> Field {\n                let data = aztec::protocol::traits::Packable::pack(self).concat([aztec::protocol::traits::ToField::to_field(owner), randomness]);\n                aztec::note::utils::compute_note_hash(storage_slot, data)\n            }\n\n            fn compute_nullifier(\n                self,\n                context: &mut aztec::context::PrivateContext,\n                owner: aztec::protocol::address::AztecAddress,\n                note_hash_for_nullification: Field,\n            ) -> Field {\n                let owner_npk_m_hash = aztec::keys::getters::get_public_keys(owner).npk_m_hash;\n                let secret = context.request_nhk_app(owner_npk_m_hash);\n                aztec::note::utils::compute_note_nullifier(note_hash_for_nullification, [secret])\n            }\n\n            unconstrained fn compute_nullifier_unconstrained(\n                self,\n                owner: aztec::protocol::address::AztecAddress,\n                note_hash_for_nullification: Field,\n            ) -> Option<Field> {\n                // Note: In the current PXE implementation, if public keys are available then the nullifier\n                // hiding key (nhk) is also available, so we don't need to handle get_nhk_app potentially\n                // failing. The Option is only needed for the try_get_public_keys call.\n                aztec::keys::getters::try_get_public_keys(owner).map(|public_keys| {\n                    let owner_npk_m_hash = public_keys.npk_m_hash;\n                    let secret = aztec::keys::getters::get_nhk_app(owner_npk_m_hash);\n                    aztec::note::utils::compute_note_nullifier(note_hash_for_nullification, [secret])\n                })\n            }\n        }\n    }\n}\n\n/// Generates note properties struct for a given note struct `s`.\n///\n/// Example:\n/// ```\n/// struct TokenNoteProperties {\n///     amount: aztec::note::note_getter_options::PropertySelector,\n///     npk_m_hash: aztec::note::note_getter_options::PropertySelector\n///     randomness: aztec::note::note_getter_options::PropertySelector\n/// }\n///\n/// impl aztec::note::note_interface::NoteProperties<TokenNoteProperties> for TokenNote {\n///     fn properties() -> TokenNoteProperties {\n///         Self {\n///             amount: aztec::note::note_getter_options::PropertySelector { index: 0, offset: 0, length: 32 },\n///             npk_m_hash: aztec::note::note_getter_options::PropertySelector { index: 1, offset: 0, length: 32 },\n///             randomness: aztec::note::note_getter_options::PropertySelector { index: 2, offset: 0, length: 32 }\n///         }\n///     }\n/// }\n/// ```\ncomptime fn generate_note_properties(s: TypeDefinition) -> Quoted {\n    let name = s.name();\n\n    let struct_name = f\"{name}Properties\".quoted_contents();\n\n    let property_selector_type = type_of(PropertySelector { index: 0, offset: 0, length: 0 });\n\n    let note_fields = s.fields_as_written();\n\n    let properties_types = note_fields.map(|(name, _, _)| quote { pub $name: $property_selector_type }).join(quote {,});\n\n    // TODO #8694: Properly handle non-field types https://github.com/AztecProtocol/aztec-packages/issues/8694\n    let mut properties_list = @[];\n    for i in 0..note_fields.len() {\n        let (name, _, _) = note_fields[i];\n        let i = i as u8;\n        properties_list = properties_list.push_back(\n            quote { $name: aztec::note::note_getter_options::PropertySelector { index: $i, offset: 0, length: 32 } },\n        );\n    }\n\n    let properties = properties_list.join(quote {,});\n\n    quote {\n        pub struct $struct_name {\n            $properties_types\n        }\n\n        impl aztec::note::note_interface::NoteProperties<$struct_name> for $name {\n            fn properties() -> $struct_name {\n                $struct_name {\n                    $properties\n                }\n            }\n        }\n    }\n}\n\n/// Generates the core note functionality for a struct:\n///\n/// - NoteTypeProperties: Defines the structure and properties of note fields\n/// - NoteType trait implementation: Provides the note type ID\n/// - NoteHash trait implementation: Handles note hash and nullifier computation\n///\n/// # Requirements\n///\n/// The note struct must:\n/// - Implement the `Packable` trait\n/// - Not exceed `MAX_NOTE_PACKED_LEN` when packed\n///\n/// # Registration\n///\n/// Registers the note in the global `NOTES` BoundedVec to enable note processing functionality.\n///\n/// # Generated Code\n///\n/// For detailed documentation on the generated implementations, see:\n/// - `generate_note_properties()`\n/// - `generate_note_type_impl()`\n/// - `generate_note_hash_trait_impl()`\npub comptime fn note(s: TypeDefinition) -> Quoted {\n    assert_has_packable(s);\n\n    // We register the note in the global `NOTES` BoundedVec because we need that information inside the #[aztec] macro\n    // to generate note processing functionality.\n    NOTES.push(s.as_type());\n\n    let note_properties = generate_note_properties(s);\n    let note_type_id = get_next_note_type_id();\n    let note_type_impl = generate_note_type_impl(s, note_type_id);\n    let note_hash_impl = generate_note_hash_trait_impl(s);\n\n    quote {\n        $note_properties\n        $note_type_impl\n        $note_hash_impl\n    }\n}\n\n/// Generates code for a custom note implementation that requires specialized note hash or nullifier computation.\n///\n/// # Generated Code\n/// - NoteTypeProperties: Defines the structure and properties of note fields\n/// - NoteType trait implementation: Provides the note type ID\n///\n/// # Requirements\n///\n/// The note struct must:\n/// - Implement the `Packable` trait\n/// - Not exceed `MAX_NOTE_PACKED_LEN` when packed\n///\n/// # Registration\n///\n/// Registers the note in the global `NOTES` BoundedVec to enable note processing functionality.\n///\n/// # Use Cases\n///\n/// Use this macro when implementing a note that needs custom:\n/// - Note hash computation logic\n/// - Nullifier computation logic\n///\n/// The macro omits generating default NoteHash trait implementation, allowing you to provide your own.\n///\n/// # Example\n/// ```\n/// #[custom_note]\n/// struct CustomNote {\n///     value: Field,\n///     metadata: Field\n/// }\n///\n/// impl NoteHash for CustomNote {\n///     // Custom note hash computation...\n///     fn compute_note_hash(...) -> Field { ... }\n///\n///     // Custom nullifier computation...\n///     fn compute_nullifier(...) -> Field { ... }\n///     fn compute_nullifier_unconstrained(...) -> Field { ... }\n/// }\n/// ```\npub comptime fn custom_note(s: TypeDefinition) -> Quoted {\n    assert_has_packable(s);\n\n    // We register the note in the global `NOTES` BoundedVec because we need that information inside the #[aztec] macro\n    // to generate note processing functionality.\n    NOTES.push(s.as_type());\n\n    let note_type_id = get_next_note_type_id();\n    let note_properties = generate_note_properties(s);\n    let note_type_impl = generate_note_type_impl(s, note_type_id);\n\n    quote {\n        $note_properties\n        $note_type_impl\n    }\n}\n\n/// Asserts that the given note implements the [`Packable`](crate::protocol::traits::Packable) trait.\n///\n/// We require that notes have the `Packable` trait implemented because it is used when emitting a note in a log or as\n/// an offchain message.\ncomptime fn assert_has_packable(note: TypeDefinition) {\n    let packable_constraint = quote { crate::protocol::traits::Packable }.as_trait_constraint();\n    let note_name = note.name();\n\n    assert(\n        note.as_type().implements(packable_constraint),\n        f\"{note_name} does not implement Packable trait. Either implement it manually or place #[derive(Packable)] on the note struct before #[note] macro invocation.\",\n    );\n}\n"
    },
    "133": {
      "function_locations": [
        {
          "name": "get_existing_app_siloed_handshake_secrets",
          "start": 3756
        },
        {
          "name": "create_non_interactive_handshake",
          "start": 4624
        },
        {
          "name": "create_interactive_handshake",
          "start": 5411
        },
        {
          "name": "get_handshake_secrets",
          "start": 5990
        },
        {
          "name": "fetch_handshake_page",
          "start": 7311
        },
        {
          "name": "test::get_handshake_secrets_returns_secrets_from_single_page",
          "start": 8161
        },
        {
          "name": "test::get_handshake_secrets_fetches_multiple_pages",
          "start": 9808
        },
        {
          "name": "test::get_handshake_secrets_returns_empty_when_scope_keys_not_held",
          "start": 12119
        },
        {
          "name": "test::mock_get_shared_secrets",
          "start": 12937
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/handshake.nr",
      "source": "use crate::protocol::point::EmbeddedCurvePoint;\nuse crate::protocol::traits::{Deserialize, Serialize};\n\nuse crate::{\n    context::PrivateContext,\n    ephemeral::EphemeralArray,\n    messages::{delivery::OnchainDeliveryMode, processing::provided_secret::ProvidedSecret},\n    oracle::{call_utility_function::call_utility_function, shared_secret::get_shared_secrets},\n    protocol::{\n        abis::function_selector::FunctionSelector, address::AztecAddress, hash::sha256_to_field, traits::ToField,\n    },\n    standard_addresses::STANDARD_HANDSHAKE_REGISTRY_ADDRESS,\n};\n\n/// Page size for handshake discovery pagination.\npub global MAX_HANDSHAKES_PER_PAGE: u32 = 32;\n\n/// A handshake discovered during sync: the sender's ephemeral public key.\n#[derive(Deserialize, Eq, Serialize)]\npub struct DiscoveredHandshake {\n    pub eph_pk: EmbeddedCurvePoint,\n}\n\n/// A paginated response of discovered handshakes.\n#[derive(Deserialize, Serialize)]\npub struct HandshakePage {\n    pub items: BoundedVec<DiscoveredHandshake, MAX_HANDSHAKES_PER_PAGE>,\n    pub total_count: u32,\n}\n\n/// The app-siloed handshake secrets the registry returns for a `(sender, recipient)` pair.\n#[derive(Deserialize, Eq, Serialize)]\npub struct AppSiloedHandshakeSecrets {\n    /// The app-siloed shared secret, used to derive the recipient's discovery tag. The recipient can reconstruct\n    /// it from the handshake's public ephemeral key via ECDH.\n    pub shared: Field,\n    /// The app-siloed sender-only secret, folded into the constrained-delivery sequence nullifier so only the\n    /// sender can advance a sequence. The recipient cannot reconstruct it: it derives from a random secret stored\n    /// only in the sender's handshake note and never transmitted.\n    pub sender_only: Field,\n}\n\npub(crate) global PROVIDED_SECRETS_ARRAY_BASE_SLOT: Field =\n    sha256_to_field(\"AZTEC_NR::PROVIDED_SECRETS_ARRAY_BASE_SLOT\".as_bytes());\n\nglobal HANDSHAKE_EPH_PKS_SLOT: Field = sha256_to_field(\"AZTEC_NR::HANDSHAKE_EPH_PKS_SLOT\".as_bytes());\n\n// The helper cannot import the handshake registry interface because the registry contract depends on aztec-nr. These\n// selector constants pin the registry ABI surface this library calls. The registry's test suite compares them against\n// its macro-generated `HandshakeRegistry::at(...).method(...).selector` values so signature drift fails in tests.\npub global GET_APP_SILOED_SECRETS_SELECTOR: FunctionSelector =\n    comptime { FunctionSelector::from_signature(\"get_app_siloed_secrets((Field),(Field))\") };\npub global NON_INTERACTIVE_HANDSHAKE_SELECTOR: FunctionSelector =\n    comptime { FunctionSelector::from_signature(\"non_interactive_handshake((Field),(Field))\") };\npub global INTERACTIVE_HANDSHAKE_SELECTOR: FunctionSelector =\n    comptime { FunctionSelector::from_signature(\"interactive_handshake((Field),(Field))\") };\npub global GET_NON_INTERACTIVE_HANDSHAKES_SELECTOR: FunctionSelector =\n    comptime { FunctionSelector::from_signature(\"get_non_interactive_handshakes((Field),u32)\") };\n\n/// Reads the existing app-siloed handshake secrets for `(sender, recipient)` from the registry.\n///\n/// Returns `None` when no handshake has been registered for the pair yet, in which case the caller decides how to\n/// source a tagging secret (see [`super::tag::derive_log_tag`]).\n///\n/// ## Batching\n///\n/// This reads committed state, so within a single transaction multiple sends cannot see each other's pending\n/// handshake. A brand-new recipient therefore needs one landed transaction to establish the handshake before further\n/// sends can be batched onto it.\npub(crate) unconstrained fn get_existing_app_siloed_handshake_secrets(\n    registry: AztecAddress,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n) -> Option<AppSiloedHandshakeSecrets> {\n    let returns = call_utility_function(\n        registry,\n        GET_APP_SILOED_SECRETS_SELECTOR,\n        [sender.to_field(), recipient.to_field()],\n    );\n    Deserialize::deserialize(returns)\n}\n\n/// Establishes a non-interactive handshake for `(sender, recipient)` and returns its app-siloed secrets.\n///\n/// The registry inserts a fresh handshake note and returns the app-siloed secrets. The constrained return value is the\n/// source of truth for the secrets, so constrained delivery anchoring a freshly bootstrapped handshake needs no\n/// separate call to the registry's `validate_handshake`.\n///\n/// Any handshake already registered for the pair is overwritten.\npub(crate) fn create_non_interactive_handshake(\n    context: &mut PrivateContext,\n    registry: AztecAddress,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n) -> AppSiloedHandshakeSecrets {\n    context\n        .call_private_function(registry, NON_INTERACTIVE_HANDSHAKE_SELECTOR, [sender.to_field(), recipient.to_field()])\n        .get_preimage()\n}\n\n/// Establishes an interactive handshake for `(sender, recipient)` and returns its app-siloed secrets.\n///\n/// As with [`create_non_interactive_handshake`], the constrained return value is the source of truth for the\n/// secrets, so constrained delivery anchoring a freshly bootstrapped handshake needs no separate call to the\n/// registry's `validate_handshake`.\n///\n/// Any handshake already registered for the pair is overwritten.\npub(crate) fn create_interactive_handshake(\n    context: &mut PrivateContext,\n    registry: AztecAddress,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n) -> AppSiloedHandshakeSecrets {\n    context\n        .call_private_function(registry, INTERACTIVE_HANDSHAKE_SELECTOR, [sender.to_field(), recipient.to_field()])\n        .get_preimage()\n}\n\n/// Fetches discovered handshakes from the HandshakeRegistry and derives app-siloed tagging secrets for each,\n/// returning them so that [`get_pending_tagged_logs`](crate::oracle::message_processing::get_pending_tagged_logs)\n/// searches for logs tagged with these secrets.\npub(crate) unconstrained fn get_handshake_secrets(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n) -> EphemeralArray<ProvidedSecret> {\n    let provided_secrets = EphemeralArray::<ProvidedSecret>::empty_at(PROVIDED_SECRETS_ARRAY_BASE_SLOT);\n\n    let eph_pks: EphemeralArray<EmbeddedCurvePoint> = EphemeralArray::empty_at(HANDSHAKE_EPH_PKS_SLOT);\n\n    let mut page_offset: u32 = 0;\n    let mut has_more = true;\n    while has_more {\n        let page = fetch_handshake_page(scope, page_offset);\n\n        for j in 0..page.items.len() {\n            eph_pks.push(page.items.get(j).eph_pk);\n        }\n\n        page_offset += page.items.len();\n        has_more = page_offset < page.total_count;\n    }\n\n    if eph_pks.len() > 0 {\n        let secrets = get_shared_secrets(scope, eph_pks, contract_address);\n        for j in 0..secrets.len() {\n            let secret = secrets.get(j);\n            // Handshakes are mode-agnostic; emit one entry per on-chain tag domain for PXE to scan.\n            provided_secrets.push(ProvidedSecret { secret, mode: OnchainDeliveryMode::onchain_unconstrained() });\n            provided_secrets.push(ProvidedSecret { secret, mode: OnchainDeliveryMode::onchain_constrained() });\n        }\n    }\n\n    provided_secrets\n}\n\n/// Calls the HandshakeRegistry's `get_non_interactive_handshakes` utility function and deserializes the response.\nunconstrained fn fetch_handshake_page(recipient: AztecAddress, page_offset: u32) -> HandshakePage {\n    let args: [Field; 2] = [recipient.to_field(), page_offset as Field];\n    let response = call_utility_function(\n        STANDARD_HANDSHAKE_REGISTRY_ADDRESS,\n        GET_NON_INTERACTIVE_HANDSHAKES_SELECTOR,\n        args,\n    );\n    HandshakePage::deserialize(response)\n}\n\nmod test {\n    use crate::ephemeral::EphemeralArray;\n    use crate::messages::delivery::handshake::{\n        DiscoveredHandshake, get_handshake_secrets, HandshakePage, MAX_HANDSHAKES_PER_PAGE,\n    };\n    use crate::messages::delivery::OnchainDeliveryMode;\n    use crate::protocol::{address::AztecAddress, traits::{FromField, Serialize}};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use crate::utils::point::point_from_x_coord;\n    use std::test::OracleMock;\n\n    #[test]\n    unconstrained fn get_handshake_secrets_returns_secrets_from_single_page() {\n        let env = TestEnvironment::new();\n        let scope = AztecAddress::from_field(1);\n        let contract_address = AztecAddress { inner: 0xdeadbeef };\n\n        env.utility_context_at(contract_address, |_| {\n            let pk_a = point_from_x_coord(1).unwrap();\n            let pk_b = point_from_x_coord(2).unwrap();\n\n            let mut items: BoundedVec<DiscoveredHandshake, MAX_HANDSHAKES_PER_PAGE> = BoundedVec::new();\n            items.push(DiscoveredHandshake { eph_pk: pk_a });\n            items.push(DiscoveredHandshake { eph_pk: pk_b });\n            let page = HandshakePage { items, total_count: 2 };\n            let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(page.serialize());\n\n            let secret_a: Field = 111;\n            let secret_b: Field = 222;\n            mock_get_shared_secrets([secret_a, secret_b]);\n\n            let secrets = get_handshake_secrets(contract_address, scope);\n\n            assert_eq(secrets.len(), 4);\n            assert_eq(secrets.get(0).secret, secret_a);\n            assert(secrets.get(0).mode == OnchainDeliveryMode::onchain_unconstrained());\n            assert_eq(secrets.get(1).secret, secret_a);\n            assert(secrets.get(1).mode == OnchainDeliveryMode::onchain_constrained());\n            assert_eq(secrets.get(2).secret, secret_b);\n            assert(secrets.get(2).mode == OnchainDeliveryMode::onchain_unconstrained());\n            assert_eq(secrets.get(3).secret, secret_b);\n            assert(secrets.get(3).mode == OnchainDeliveryMode::onchain_constrained());\n        });\n    }\n\n    #[test]\n    unconstrained fn get_handshake_secrets_fetches_multiple_pages() {\n        let env = TestEnvironment::new();\n        let scope = AztecAddress::from_field(1);\n        let contract_address = AztecAddress { inner: 0xdeadbeef };\n\n        env.utility_context_at(contract_address, |_| {\n            let pk_a = point_from_x_coord(1).unwrap();\n            let pk_b = point_from_x_coord(2).unwrap();\n            let pk_c = point_from_x_coord(8).unwrap();\n\n            let mut page_1_items: BoundedVec<DiscoveredHandshake, MAX_HANDSHAKES_PER_PAGE> = BoundedVec::new();\n            page_1_items.push(DiscoveredHandshake { eph_pk: pk_a });\n            page_1_items.push(DiscoveredHandshake { eph_pk: pk_b });\n            let page_1 = HandshakePage { items: page_1_items, total_count: 3 };\n\n            let mut page_2_items: BoundedVec<DiscoveredHandshake, MAX_HANDSHAKES_PER_PAGE> = BoundedVec::new();\n            page_2_items.push(DiscoveredHandshake { eph_pk: pk_c });\n            let page_2 = HandshakePage { items: page_2_items, total_count: 3 };\n\n            let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(page_1.serialize()).times(1);\n            let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(page_2.serialize()).times(1);\n\n            mock_get_shared_secrets([111, 222, 333]);\n\n            let secrets = get_handshake_secrets(contract_address, scope);\n            assert_eq(secrets.len(), 6);\n            assert_eq(secrets.get(0).secret, 111);\n            assert(secrets.get(0).mode == OnchainDeliveryMode::onchain_unconstrained());\n            assert_eq(secrets.get(1).secret, 111);\n            assert(secrets.get(1).mode == OnchainDeliveryMode::onchain_constrained());\n            assert_eq(secrets.get(2).secret, 222);\n            assert(secrets.get(2).mode == OnchainDeliveryMode::onchain_unconstrained());\n            assert_eq(secrets.get(3).secret, 222);\n            assert(secrets.get(3).mode == OnchainDeliveryMode::onchain_constrained());\n            assert_eq(secrets.get(4).secret, 333);\n            assert(secrets.get(4).mode == OnchainDeliveryMode::onchain_unconstrained());\n            assert_eq(secrets.get(5).secret, 333);\n            assert(secrets.get(5).mode == OnchainDeliveryMode::onchain_constrained());\n        });\n    }\n\n    #[test]\n    unconstrained fn get_handshake_secrets_returns_empty_when_scope_keys_not_held() {\n        let env = TestEnvironment::new();\n        let scope = AztecAddress::from_field(1);\n        let contract_address = AztecAddress { inner: 0xdeadbeef };\n\n        env.utility_context_at(contract_address, |_| {\n            let mut items = BoundedVec::new();\n            items.push(DiscoveredHandshake { eph_pk: point_from_x_coord(1).unwrap() });\n            let page = HandshakePage { items, total_count: 1 };\n            let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(page.serialize());\n\n            let empty: [Field; 0] = [];\n            mock_get_shared_secrets(empty);\n\n            let secrets = get_handshake_secrets(contract_address, scope);\n            assert_eq(secrets.len(), 0);\n        });\n    }\n\n    unconstrained fn mock_get_shared_secrets<let N: u32>(response_values: [Field; N]) {\n        let response_slot: Field = 99;\n        let response_array: EphemeralArray<Field> = EphemeralArray::at(response_slot);\n        for value in response_values {\n            response_array.push(value);\n        }\n        let _ = OracleMock::mock(\"aztec_utl_getSharedSecrets\").returns(response_slot);\n    }\n}\n"
    },
    "134": {
      "function_locations": [
        {
          "name": "do_private_message_delivery",
          "start": 2315
        },
        {
          "name": "do_onchain_private_message_delivery",
          "start": 3881
        },
        {
          "name": "resolve_sender",
          "start": 5947
        },
        {
          "name": "to_onchain_delivery_mode",
          "start": 6550
        },
        {
          "name": "test::sender_resolution_requires_wallet_default_sender",
          "start": 7072
        },
        {
          "name": "test::sender_resolution_uses_override",
          "start": 7380
        },
        {
          "name": "test::sender_resolution_uses_wallet_default_sender",
          "start": 7664
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/mod.nr",
      "source": "mod builder;\nmod mode;\nmod resolved_tagging_strategy;\nmod tag;\npub(crate) mod tag_derivation;\npub(crate) mod tag_secret_source;\n\npub mod constrained_delivery;\npub mod handshake;\n\nuse crate::{\n    context::PrivateContext,\n    messages::{\n        encryption::{aes128::AES128, message_encryption::MessageEncryption},\n        offchain_messages::deliver_offchain_message,\n    },\n    oracle::notes::get_sender_for_tags,\n    utils::remove_constraints::remove_constraints_if,\n};\nuse crate::protocol::address::AztecAddress;\nuse mode::DeliveryMode;\nuse tag::derive_log_tag;\nuse tag_derivation::TagDerivation;\n\npub use builder::{\n    MessageDelivery, MessageDeliveryBuilder, OffchainDelivery, OnchainConstrainedDelivery, OnchainUnconstrainedDelivery,\n};\npub use mode::OnchainDeliveryMode;\npub use resolved_tagging_strategy::ResolvedTaggingStrategy;\n\n/// Performs private delivery of a message to `recipient` according to `delivery_mode`.\n///\n/// The message is encoded into plaintext and then encrypted for `recipient`. This function takes a _function_ that\n/// returns the plaintext instead of taking the plaintext directly in order to not waste constraints encoding the\n/// message in scenarios where the plaintext will be encrypted with unconstrained encryption.\n///\n/// `maybe_note_hash_counter` is only relevant for on-chain delivery modes (i.e. via protocol logs): if a newly created\n/// note hash's side effect counter is passed and constrained tagging is not in use, then the log will be squashed\n/// alongside the note should its nullifier be emitted in the current transaction. Constrained-tagged logs are not tied\n/// to note squashing, because recipient discovery scans those tags sequentially and a removed log would break the\n/// per-secret index sequence.\n///\n/// ## Privacy\n///\n/// The emitted log always has the same length regardless of `MESSAGE_PLAINTEXT_LEN`, because all message ciphertexts\n/// also have the same length. This prevents accidental privacy leakage via the log length.\npub fn do_private_message_delivery<Env, let MESSAGE_PLAINTEXT_LEN: u32, D>(\n    context: &mut PrivateContext,\n    encode_into_message_plaintext: fn[Env]() -> [Field; MESSAGE_PLAINTEXT_LEN],\n    maybe_note_hash_counter: Option<u32>,\n    recipient: AztecAddress,\n    delivery_mode: D,\n)\nwhere\n    D: MessageDeliveryBuilder,\n{\n    let delivery = delivery_mode.build_message_delivery();\n\n    let mode = delivery.mode();\n\n    // This function relies on `mode` being a constant in order to reduce circuit constraints when\n    // unconstrained usage is requested. If it were a runtime value the compiler would be unable to perform\n    // dead-code elimination.\n    mode.assert_is_constant();\n\n    let deliver_as_offchain_message = mode == DeliveryMode::offchain();\n    assert_constant(deliver_as_offchain_message);\n\n    let sender_override = delivery.sender_override();\n    let tag_derivation = delivery.tag_derivation();\n\n    if deliver_as_offchain_message {\n        let contract_address = context.this_address();\n        let ciphertext = remove_constraints_if(\n            true,\n            || AES128::encrypt(encode_into_message_plaintext(), recipient, contract_address),\n        );\n\n        deliver_offchain_message(ciphertext, recipient);\n    } else {\n        do_onchain_private_message_delivery(\n            context,\n            encode_into_message_plaintext,\n            maybe_note_hash_counter,\n            recipient,\n            mode,\n            sender_override,\n            tag_derivation,\n        );\n    }\n}\n\nfn do_onchain_private_message_delivery<Env, let MESSAGE_PLAINTEXT_LEN: u32>(\n    context: &mut PrivateContext,\n    encode_into_message_plaintext: fn[Env]() -> [Field; MESSAGE_PLAINTEXT_LEN],\n    maybe_note_hash_counter: Option<u32>,\n    recipient: AztecAddress,\n    mode: DeliveryMode,\n    sender_override: Option<AztecAddress>,\n    tag_derivation: Option<TagDerivation>,\n) {\n    let is_constrained = mode == DeliveryMode::onchain_constrained();\n    assert_constant(is_constrained);\n\n    // The tag derivation, both whether one is set and which variant it is, must be a compile-time constant so unused\n    // derivations are eliminated.\n    assert_constant(tag_derivation.is_some());\n    if tag_derivation.is_some() {\n        tag_derivation.unwrap_unchecked().assert_kind_is_constant();\n    }\n\n    let onchain_mode = to_onchain_delivery_mode(mode);\n    let sender = resolve_sender(sender_override);\n\n    let contract_address = context.this_address();\n\n    let ciphertext = remove_constraints_if(\n        !is_constrained,\n        || AES128::encrypt(encode_into_message_plaintext(), recipient, contract_address),\n    );\n\n    let log_tag = derive_log_tag(context, onchain_mode, sender, recipient, tag_derivation);\n\n    // This value must be constant to avoid predicating the context calls below, which might result in\n    // the context's arrays having unknown compile time write indices and hence dramatically increasing constraints\n    // when accessing them. In practice this restriction is not a problem as we always know at compile time whether\n    // we're emitting a note or non-note message.\n    assert_constant(maybe_note_hash_counter.is_some());\n\n    // Constrained-tagged logs must not be squashed alongside the note: the recipient discovers them by scanning\n    // the per-secret tag sequence, so removing a log would break the index sequence.\n    let squashable_note_log = maybe_note_hash_counter.is_some() & !is_constrained;\n\n    let log = BoundedVec::from_array(ciphertext);\n    if squashable_note_log {\n        // We associate the log with the note's side effect counter, so that if the note ends up being squashed in\n        // the current transaction, the log will be removed as well.\n        context.emit_raw_note_log_unsafe(log_tag, log, maybe_note_hash_counter.unwrap());\n    } else {\n        context.emit_private_log_unsafe(log_tag, log);\n    }\n}\n\nfn resolve_sender(sender_override: Option<AztecAddress>) -> AztecAddress {\n    // Safety: tag senders are unconstrained; the sender comes from the builder override or the wallet-provided\n    // default tag sender, which must be an account the PXE controls so it can own and recover the resulting\n    // tagging/handshake state.\n    unsafe {\n        sender_override.unwrap_or_else(|| {\n            get_sender_for_tags().expect(\n                f\"Sender for tags is not set when emitting a private log and no override is set. Ensure the wallet provides a default sender.\",\n            )\n        })\n    }\n}\n\nfn to_onchain_delivery_mode(mode: DeliveryMode) -> OnchainDeliveryMode {\n    if mode == DeliveryMode::onchain_constrained() {\n        OnchainDeliveryMode::onchain_constrained()\n    } else {\n        OnchainDeliveryMode::onchain_unconstrained()\n    }\n}\n\nmod test {\n    use crate::protocol::{address::AztecAddress, traits::FromField};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::resolve_sender;\n    use std::test::OracleMock;\n\n    #[test(should_fail_with = \"Sender for tags is not set\")]\n    unconstrained fn sender_resolution_requires_wallet_default_sender() {\n        let env = TestEnvironment::new();\n        let _ = OracleMock::mock(\"aztec_prv_getSenderForTags\").returns(Option::<AztecAddress>::none());\n\n        env.private_context(|_context| { let _ = resolve_sender(Option::none()); });\n    }\n\n    #[test]\n    unconstrained fn sender_resolution_uses_override() {\n        let env = TestEnvironment::new();\n        let sender = AztecAddress::from_field(1);\n\n        env.private_context(|_context| { assert_eq(resolve_sender(Option::some(sender)), sender); });\n    }\n\n    #[test]\n    unconstrained fn sender_resolution_uses_wallet_default_sender() {\n        let env = TestEnvironment::new();\n        let sender = AztecAddress::from_field(1);\n        let _ = OracleMock::mock(\"aztec_prv_getSenderForTags\").returns(Option::some(sender));\n\n        env.private_context(|_context| { assert_eq(resolve_sender(Option::none()), sender); });\n    }\n}\n"
    },
    "136": {
      "function_locations": [
        {
          "name": "ResolvedTaggingStrategy::non_interactive_handshake",
          "start": 819
        },
        {
          "name": "ResolvedTaggingStrategy::unconstrained_secret",
          "start": 1049
        },
        {
          "name": "ResolvedTaggingStrategy::interactive_handshake",
          "start": 1252
        },
        {
          "name": "ResolvedTaggingStrategy::is_unconstrained_secret",
          "start": 1366
        },
        {
          "name": "ResolvedTaggingStrategy::into_tag_secret_source",
          "start": 1684
        },
        {
          "name": "ResolvedTaggingStrategy::from_parts",
          "start": 2203
        },
        {
          "name": "<impl Deserialize for ResolvedTaggingStrategy>::deserialize",
          "start": 2645
        },
        {
          "name": "<impl Deserialize for ResolvedTaggingStrategy>::stream_deserialize",
          "start": 2777
        },
        {
          "name": "test::resolved_roundtrips_through_serialization",
          "start": 3077
        },
        {
          "name": "test::deserializing_invalid_kind_fails",
          "start": 3761
        },
        {
          "name": "test::deserializing_handshake_with_nonzero_secret_fails",
          "start": 3970
        },
        {
          "name": "test::deserializing_interactive_handshake_with_nonzero_secret_fails",
          "start": 4192
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/resolved_tagging_strategy.nr",
      "source": "use crate::context::PrivateContext;\nuse crate::protocol::{address::AztecAddress, traits::{Deserialize, Serialize}, utils::reader::Reader};\nuse super::tag_secret_source::TagSecretSource;\n\nglobal NON_INTERACTIVE_HANDSHAKE: u8 = 1;\nglobal UNCONSTRAINED_SECRET: u8 = 2;\nglobal INTERACTIVE_HANDSHAKE: u8 = 3;\n\n/// The tagging secret the PXE hands to the contract after applying the wallet's tagging secret strategy. It is already\n/// app-siloed, so the contract uses it directly to derive the message tag and never sees raw key material.\n#[derive(Eq, Serialize)]\npub struct ResolvedTaggingStrategy {\n    kind: u8,\n    secret: Field,\n}\n\nimpl ResolvedTaggingStrategy {\n    /// A non-interactive handshake: the recipient re-derives the secret from the onchain handshake registry.\n    pub fn non_interactive_handshake() -> Self {\n        Self { kind: NON_INTERACTIVE_HANDSHAKE, secret: 0 }\n    }\n\n    /// An app-siloed, recipient-directional secret, ready to use. Only sound for unconstrained delivery.\n    pub fn unconstrained_secret(secret: Field) -> Self {\n        Self { kind: UNCONSTRAINED_SECRET, secret }\n    }\n\n    /// An interactive handshake: the recipient learns the secret while signing its authorization.\n    pub fn interactive_handshake() -> Self {\n        Self { kind: INTERACTIVE_HANDSHAKE, secret: 0 }\n    }\n\n    pub fn is_unconstrained_secret(self) -> bool {\n        self.kind == UNCONSTRAINED_SECRET\n    }\n\n    /// Resolves this strategy into the [`TagSecretSource`] backing the message tag.\n    pub(crate) fn into_tag_secret_source(\n        self,\n        context: &mut PrivateContext,\n        sender: AztecAddress,\n        recipient: AztecAddress,\n    ) -> TagSecretSource {\n        if self.kind == NON_INTERACTIVE_HANDSHAKE {\n            TagSecretSource::new_non_interactive_handshake(context, sender, recipient)\n        } else if self.kind == INTERACTIVE_HANDSHAKE {\n            TagSecretSource::new_interactive_handshake(context, sender, recipient)\n        } else {\n            TagSecretSource::unconstrained_secret(self.secret)\n        }\n    }\n\n    /// Validates a raw discriminant, as deserialization must always reject unknown values.\n    fn from_parts(kind: u8, secret: Field) -> Self {\n        let resolved = Self { kind, secret };\n        assert(\n            (((kind == NON_INTERACTIVE_HANDSHAKE) | (kind == INTERACTIVE_HANDSHAKE)) & (secret == 0))\n                | (kind == UNCONSTRAINED_SECRET),\n            f\"unrecognized resolved tagging strategy kind: {kind}\",\n        );\n        resolved\n    }\n}\n\nimpl Deserialize for ResolvedTaggingStrategy {\n    let N: u32 = 2;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        Self::from_parts(fields[0] as u8, fields[1])\n    }\n\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        let kind = reader.read() as u8;\n        let secret = reader.read();\n        Self::from_parts(kind, secret)\n    }\n}\n\nmod test {\n    use crate::protocol::traits::{Deserialize, Serialize};\n    use super::ResolvedTaggingStrategy;\n\n    #[test]\n    fn resolved_roundtrips_through_serialization() {\n        let non_interactive = ResolvedTaggingStrategy::non_interactive_handshake();\n        let unconstrained_secret = ResolvedTaggingStrategy::unconstrained_secret(42);\n        let interactive = ResolvedTaggingStrategy::interactive_handshake();\n\n        assert(ResolvedTaggingStrategy::deserialize(non_interactive.serialize()) == non_interactive);\n        assert(ResolvedTaggingStrategy::deserialize(unconstrained_secret.serialize()) == unconstrained_secret);\n        assert(ResolvedTaggingStrategy::deserialize(interactive.serialize()) == interactive);\n    }\n\n    #[test(should_fail_with = \"unrecognized resolved tagging strategy kind\")]\n    fn deserializing_invalid_kind_fails() {\n        let _ = ResolvedTaggingStrategy::deserialize([99, 0]);\n    }\n\n    #[test(should_fail_with = \"unrecognized resolved tagging strategy kind\")]\n    fn deserializing_handshake_with_nonzero_secret_fails() {\n        let _ = ResolvedTaggingStrategy::deserialize([1, 123]);\n    }\n\n    #[test(should_fail_with = \"unrecognized resolved tagging strategy kind\")]\n    fn deserializing_interactive_handshake_with_nonzero_secret_fails() {\n        let _ = ResolvedTaggingStrategy::deserialize([3, 123]);\n    }\n}\n"
    },
    "137": {
      "function_locations": [
        {
          "name": "derive_log_tag",
          "start": 1150
        },
        {
          "name": "default_tag_secret_source",
          "start": 1739
        },
        {
          "name": "tag_with",
          "start": 2442
        },
        {
          "name": "tag_domain_separator",
          "start": 3113
        },
        {
          "name": "tag_from_secret_and_index",
          "start": 3373
        },
        {
          "name": "test::tag_from_secret_and_index_uses_mode_domain_separator",
          "start": 4295
        },
        {
          "name": "test::reuses_an_existing_handshake_secret",
          "start": 4906
        },
        {
          "name": "test::uses_the_resolved_unconstrained_secret_when_no_handshake_exists",
          "start": 6133
        },
        {
          "name": "test::constrained_delivery_rejects_a_resolved_unconstrained_secret",
          "start": 7178
        },
        {
          "name": "test::constrained_delivery_emits_the_sequence_nullifier_and_constrained_tag",
          "start": 7981
        },
        {
          "name": "test::derive_log_tag_honors_the_tag_derivation_override",
          "start": 9209
        },
        {
          "name": "test::mock_existing_handshake_secrets",
          "start": 10642
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/tag.nr",
      "source": "//! Discovery tag derivation for on-chain message delivery.\n//!\n//! Constrained derivation also emits the sequence nullifier; see [`super::constrained_delivery`].\n\nuse crate::context::PrivateContext;\nuse crate::messages::delivery::{\n    OnchainDeliveryMode,\n    tag_derivation::{existing_handshake_secrets_or_else, TagDerivation},\n    tag_secret_source::TagSecretSource,\n};\nuse crate::oracle::notes::get_next_tagging_index;\nuse crate::oracle::resolve_tagging_strategy::resolve_tagging_strategy;\nuse crate::protocol::{\n    address::AztecAddress,\n    constants::{DOM_SEP__CONSTRAINED_MSG_LOG_TAG, DOM_SEP__UNCONSTRAINED_MSG_LOG_TAG},\n    hash::{compute_log_tag, poseidon2_hash},\n};\n\n/// Derives the discovery log tag for an on-chain delivery.\n///\n/// `tag_derivation` is the contract's compile-time choice of tag secret source, or `None` for the wallet-resolved\n/// default. It must be a compile-time constant so unused derivations are eliminated.\npub(crate) fn derive_log_tag(\n    context: &mut PrivateContext,\n    mode: OnchainDeliveryMode,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n    tag_derivation: Option<TagDerivation>,\n) -> Field {\n    let source = tag_derivation.map_or_else(\n        || default_tag_secret_source(context, sender, recipient, mode),\n        |derivation| derivation.into_tag_secret_source(context, sender, recipient),\n    );\n    tag_with(source, context, mode, sender, recipient)\n}\n\n/// The wallet-resolved default: reuse a handshake already registered for the pair, otherwise let the wallet resolve\n/// the tagging secret strategy.\nfn default_tag_secret_source(\n    context: &mut PrivateContext,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n    mode: OnchainDeliveryMode,\n) -> TagSecretSource {\n    existing_handshake_secrets_or_else(\n        sender,\n        recipient,\n        || {\n            // Safety: the strategy only selects which source runs; each source constrains (or rejects) its own\n            // secret before a constrained tag is emitted, so an untrusted strategy can't produce a valid unbacked\n            // constrained tag.\n            let strategy = unsafe { resolve_tagging_strategy(sender, recipient, mode) };\n            strategy.into_tag_secret_source(context, sender, recipient)\n        },\n    )\n}\n\nfn tag_with(\n    source: TagSecretSource,\n    context: &mut PrivateContext,\n    mode: OnchainDeliveryMode,\n    sender: AztecAddress,\n    recipient: AztecAddress,\n) -> Field {\n    let secret = source.tag_secret();\n\n    // Safety: the index is untrusted. Constrained delivery constrains it below before emitting the tag; unconstrained\n    // discovery tolerates gaps, so a wrong index only yields an undiscoverable tag.\n    let index = unsafe { get_next_tagging_index(secret, mode) };\n\n    if mode == OnchainDeliveryMode::onchain_constrained() {\n        source.constrain_tag_secret(context, sender, recipient, index);\n    }\n\n    // The discovery tag stays derived from the tag secret only, so the recipient still finds every message.\n    tag_from_secret_and_index(secret, index, mode)\n}\n\nfn tag_domain_separator(mode: OnchainDeliveryMode) -> u32 {\n    if mode == OnchainDeliveryMode::onchain_constrained() {\n        DOM_SEP__CONSTRAINED_MSG_LOG_TAG\n    } else {\n        DOM_SEP__UNCONSTRAINED_MSG_LOG_TAG\n    }\n}\n\nfn tag_from_secret_and_index(secret: Field, index: u32, mode: OnchainDeliveryMode) -> Field {\n    compute_log_tag(\n        poseidon2_hash([secret, index as Field]),\n        tag_domain_separator(mode),\n    )\n}\n\nmod test {\n    use crate::messages::delivery::handshake::AppSiloedHandshakeSecrets;\n    use crate::messages::delivery::{ResolvedTaggingStrategy, tag_derivation::TagDerivation};\n    use crate::protocol::{\n        address::AztecAddress,\n        constants::{DOM_SEP__CONSTRAINED_MSG_LOG_TAG, DOM_SEP__UNCONSTRAINED_MSG_LOG_TAG},\n        hash::{compute_log_tag, poseidon2_hash},\n        traits::{FromField, Serialize},\n    };\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::{derive_log_tag, OnchainDeliveryMode, tag_from_secret_and_index};\n    use std::test::OracleMock;\n\n    global SENDER: AztecAddress = AztecAddress::from_field(1);\n    global RECIPIENT: AztecAddress = AztecAddress::from_field(8);\n\n    #[test]\n    fn tag_from_secret_and_index_uses_mode_domain_separator() {\n        let secret: Field = 1234;\n        let index: u32 = 7;\n        let raw_tag = poseidon2_hash([secret, index as Field]);\n\n        assert_eq(\n            tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_unconstrained()),\n            compute_log_tag(raw_tag, DOM_SEP__UNCONSTRAINED_MSG_LOG_TAG),\n        );\n        assert_eq(\n            tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_constrained()),\n            compute_log_tag(raw_tag, DOM_SEP__CONSTRAINED_MSG_LOG_TAG),\n        );\n    }\n\n    #[test]\n    unconstrained fn reuses_an_existing_handshake_secret() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n        let index: u32 = 3;\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::some(\n                AppSiloedHandshakeSecrets { shared: secret, sender_only: 99 },\n            ));\n            let _ = OracleMock::mock(\"aztec_prv_getNextTaggingIndex\").returns(index);\n            let resolve_oracle = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(\n                ResolvedTaggingStrategy::non_interactive_handshake(),\n            );\n\n            assert_eq(\n                derive_log_tag(\n                    context,\n                    OnchainDeliveryMode::onchain_unconstrained(),\n                    SENDER,\n                    RECIPIENT,\n                    Option::none(),\n                ),\n                tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_unconstrained()),\n            );\n\n            // An existing handshake is reused without consulting the wallet's tagging strategy oracle.\n            assert_eq(resolve_oracle.times_called(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn uses_the_resolved_unconstrained_secret_when_no_handshake_exists() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n        let index: u32 = 3;\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::none());\n            let _ = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(\n                ResolvedTaggingStrategy::unconstrained_secret(secret),\n            );\n            let _ = OracleMock::mock(\"aztec_prv_getNextTaggingIndex\").returns(index);\n\n            assert_eq(\n                derive_log_tag(\n                    context,\n                    OnchainDeliveryMode::onchain_unconstrained(),\n                    SENDER,\n                    RECIPIENT,\n                    Option::none(),\n                ),\n                tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_unconstrained()),\n            );\n        });\n    }\n\n    #[test(should_fail_with = \"an unconstrained tagging secret cannot back constrained delivery\")]\n    unconstrained fn constrained_delivery_rejects_a_resolved_unconstrained_secret() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n        let index: u32 = 0;\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::none());\n            let _ = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(\n                ResolvedTaggingStrategy::unconstrained_secret(secret),\n            );\n            let _ = OracleMock::mock(\"aztec_prv_getNextTaggingIndex\").returns(index);\n\n            let _ = derive_log_tag(\n                context,\n                OnchainDeliveryMode::onchain_constrained(),\n                SENDER,\n                RECIPIENT,\n                Option::none(),\n            );\n        });\n    }\n\n    #[test]\n    unconstrained fn constrained_delivery_emits_the_sequence_nullifier_and_constrained_tag() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n        // Index > 0 so the reused secret is anchored via the previous sequence nullifier, not a registry call.\n        let index: u32 = 3;\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::some(\n                AppSiloedHandshakeSecrets { shared: secret, sender_only: 99 },\n            ));\n            let _ = OracleMock::mock(\"aztec_prv_getNextTaggingIndex\").returns(index);\n            let _ = OracleMock::mock(\"aztec_prv_isNullifierPending\").returns(false);\n\n            assert_eq(\n                derive_log_tag(\n                    context,\n                    OnchainDeliveryMode::onchain_constrained(),\n                    SENDER,\n                    RECIPIENT,\n                    Option::none(),\n                ),\n                tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_constrained()),\n            );\n\n            // Constrained delivery emits the sequence nullifier for the (sender, recipient, secret) sequence.\n            assert_eq(context.nullifiers.len(), 1);\n        });\n    }\n\n    #[test]\n    unconstrained fn derive_log_tag_honors_the_tag_derivation_override() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n        let index: u32 = 3;\n\n        env.private_context(|context| {\n            let _ = OracleMock::mock(\"aztec_prv_getAppTaggingSecret\").returns(Option::some(secret));\n            let _ = OracleMock::mock(\"aztec_prv_getNextTaggingIndex\").returns(index);\n            // The wallet's default resolution would yield a different secret, which the override must bypass.\n            let resolve_oracle = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(\n                ResolvedTaggingStrategy::unconstrained_secret(secret + 1),\n            );\n\n            // With a contract-fixed derivation, the tag comes from the override's secret, not the wallet's.\n            assert_eq(\n                derive_log_tag(\n                    context,\n                    OnchainDeliveryMode::onchain_unconstrained(),\n                    SENDER,\n                    RECIPIENT,\n                    Option::some(TagDerivation::address_derived()),\n                ),\n                tag_from_secret_and_index(secret, index, OnchainDeliveryMode::onchain_unconstrained()),\n            );\n\n            // The override is honored: the wallet's default strategy resolution is never consulted.\n            assert_eq(resolve_oracle.times_called(), 0);\n        });\n    }\n\n    unconstrained fn mock_existing_handshake_secrets(maybe_secrets: Option<AppSiloedHandshakeSecrets>) {\n        let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(maybe_secrets.serialize());\n    }\n}\n"
    },
    "138": {
      "function_locations": [
        {
          "name": "TagDerivation::non_interactive_handshake",
          "start": 1186
        },
        {
          "name": "TagDerivation::interactive_handshake",
          "start": 1401
        },
        {
          "name": "TagDerivation::address_derived",
          "start": 1651
        },
        {
          "name": "TagDerivation::assert_kind_is_constant",
          "start": 1812
        },
        {
          "name": "TagDerivation::into_tag_secret_source",
          "start": 2131
        },
        {
          "name": "existing_handshake_secrets_or_else",
          "start": 3525
        },
        {
          "name": "test::address_derived_uses_the_app_tagging_secret",
          "start": 4694
        },
        {
          "name": "test::address_derived_falls_back_to_a_random_secret_for_an_invalid_recipient",
          "start": 5225
        },
        {
          "name": "test::non_interactive_handshake_reuses_an_existing_handshake",
          "start": 5849
        },
        {
          "name": "test::non_interactive_handshake_creates_a_fresh_one_when_none_exists",
          "start": 6397
        },
        {
          "name": "test::interactive_handshake_reuses_an_existing_handshake",
          "start": 6964
        },
        {
          "name": "test::interactive_handshake_creates_a_fresh_one_when_none_exists",
          "start": 7504
        },
        {
          "name": "test::mock_existing_handshake_secrets",
          "start": 8084
        },
        {
          "name": "test::mock_handshake_creation",
          "start": 8406
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/tag_derivation.nr",
      "source": "use crate::context::PrivateContext;\nuse crate::messages::delivery::{\n    handshake::get_existing_app_siloed_handshake_secrets, tag_secret_source::TagSecretSource,\n};\nuse crate::oracle::notes::get_app_tagging_secret;\nuse crate::oracle::random::random;\nuse crate::protocol::address::AztecAddress;\nuse crate::standard_addresses::STANDARD_HANDSHAKE_REGISTRY_ADDRESS;\n\nglobal NON_INTERACTIVE_HANDSHAKE: u8 = 1;\nglobal ADDRESS_DERIVED: u8 = 2;\nglobal INTERACTIVE_HANDSHAKE: u8 = 3;\n\n/// A contract's choice of tag-secret derivation.\n///\n/// Selected through the on-chain delivery builder's `via_*` methods. On-chain delivery tags every message from a\n/// secret shared between the sender and the recipient, and there is\n/// [more than one way][`crate::messages::delivery::ResolvedTaggingStrategy`] to establish it.\n/// Selecting a derivation instead lets the contract fix it, and its choice is honored over the wallet-resolved\n/// strategy.\n#[derive(Eq)]\npub(crate) struct TagDerivation {\n    kind: u8,\n}\n\nimpl TagDerivation {\n    /// Reuses an existing handshake for the pair, creating a fresh non-interactive one only when none exists.\n    pub(crate) fn non_interactive_handshake() -> Self {\n        Self { kind: NON_INTERACTIVE_HANDSHAKE }\n    }\n\n    /// Reuses an existing handshake for the pair, creating a fresh interactive one only when none exists.\n    pub(crate) fn interactive_handshake() -> Self {\n        Self { kind: INTERACTIVE_HANDSHAKE }\n    }\n\n    /// Derives the tag from the address-derived secret for the `(sender, recipient)` pair (a Diffie-Hellman exchange\n    /// between their addresses).\n    pub(crate) fn address_derived() -> Self {\n        Self { kind: ADDRESS_DERIVED }\n    }\n\n    /// Asserts this choice's `kind` is a compile-time constant.\n    pub(crate) fn assert_kind_is_constant(self) {\n        assert_constant(self.kind as Field);\n    }\n\n    /// Resolves this choice into the [`TagSecretSource`] backing the message tag.\n    pub(crate) fn into_tag_secret_source(\n        self,\n        context: &mut PrivateContext,\n        sender: AztecAddress,\n        recipient: AztecAddress,\n    ) -> TagSecretSource {\n        if self.kind == NON_INTERACTIVE_HANDSHAKE {\n            existing_handshake_secrets_or_else(\n                sender,\n                recipient,\n                || TagSecretSource::new_non_interactive_handshake(context, sender, recipient),\n            )\n        } else if self.kind == INTERACTIVE_HANDSHAKE {\n            existing_handshake_secrets_or_else(\n                sender,\n                recipient,\n                || TagSecretSource::new_interactive_handshake(context, sender, recipient),\n            )\n        } else {\n            // Safety: the secret is untrusted, but address-derived tagging is unconstrained-only, where a wrong\n            // secret only yields an undiscoverable tag. An invalid recipient has no shared secret, so we fall back\n            // to a random (undiscoverable) secret rather than failing the send.\n            let secret = unsafe { get_app_tagging_secret(sender, recipient).unwrap_or_else(|| random()) };\n            TagSecretSource::unconstrained_secret(secret)\n        }\n    }\n}\n\n/// Resolves to the secrets of a handshake already registered for `(sender, recipient)` (handshakes of either type\n/// back both delivery modes), or to `fallback()` when none exists yet.\npub(crate) fn existing_handshake_secrets_or_else<Env>(\n    sender: AztecAddress,\n    recipient: AztecAddress,\n    fallback: fn[Env]() -> TagSecretSource,\n) -> TagSecretSource {\n    // Safety: this only selects which source backs the tag. A reused handshake's secrets are constrained against\n    // the registry before a constrained tag is emitted; the fallback source constrains (or rejects) its own secret\n    // the same way.\n    let existing =\n        unsafe { get_existing_app_siloed_handshake_secrets(STANDARD_HANDSHAKE_REGISTRY_ADDRESS, sender, recipient) };\n    existing.map_or_else(fallback, |secrets| TagSecretSource::existing_handshake(secrets))\n}\n\nmod test {\n    use crate::context::PrivateContext;\n    use crate::hash::hash_args;\n    use crate::messages::delivery::handshake::AppSiloedHandshakeSecrets;\n    use crate::messages::delivery::tag_secret_source::TagSecretSource;\n    use crate::oracle::execution_cache;\n    use crate::protocol::{address::AztecAddress, traits::{FromField, Serialize}};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::TagDerivation;\n    use std::test::OracleMock;\n\n    global SENDER: AztecAddress = AztecAddress::from_field(1);\n    global RECIPIENT: AztecAddress = AztecAddress::from_field(8);\n\n    #[test]\n    unconstrained fn address_derived_uses_the_app_tagging_secret() {\n        let env = TestEnvironment::new();\n        let secret: Field = 7;\n\n        env.private_context(|context| {\n            let _ = OracleMock::mock(\"aztec_prv_getAppTaggingSecret\").returns(Option::some(secret));\n\n            let source = TagDerivation::address_derived().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source, TagSecretSource::unconstrained_secret(secret));\n        });\n    }\n\n    #[test]\n    unconstrained fn address_derived_falls_back_to_a_random_secret_for_an_invalid_recipient() {\n        let env = TestEnvironment::new();\n        let random_secret: Field = 999;\n\n        env.private_context(|context| {\n            let _ = OracleMock::mock(\"aztec_prv_getAppTaggingSecret\").returns(Option::<Field>::none());\n            let _ = OracleMock::mock(\"aztec_misc_getRandomField\").returns(random_secret);\n\n            let source = TagDerivation::address_derived().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source, TagSecretSource::unconstrained_secret(random_secret));\n        });\n    }\n\n    #[test]\n    unconstrained fn non_interactive_handshake_reuses_an_existing_handshake() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 7, sender_only: 99 };\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::some(secrets));\n\n            let source = TagDerivation::non_interactive_handshake().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source, TagSecretSource::existing_handshake(secrets));\n        });\n    }\n\n    #[test]\n    unconstrained fn non_interactive_handshake_creates_a_fresh_one_when_none_exists() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 7, sender_only: 99 };\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::none());\n            mock_handshake_creation(context, secrets);\n\n            let source = TagDerivation::non_interactive_handshake().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source.tag_secret(), secrets.shared);\n        });\n    }\n\n    #[test]\n    unconstrained fn interactive_handshake_reuses_an_existing_handshake() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 7, sender_only: 99 };\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::some(secrets));\n\n            let source = TagDerivation::interactive_handshake().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source, TagSecretSource::existing_handshake(secrets));\n        });\n    }\n\n    #[test]\n    unconstrained fn interactive_handshake_creates_a_fresh_one_when_none_exists() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 7, sender_only: 99 };\n\n        env.private_context(|context| {\n            mock_existing_handshake_secrets(Option::none());\n            mock_handshake_creation(context, secrets);\n\n            let source = TagDerivation::interactive_handshake().into_tag_secret_source(context, SENDER, RECIPIENT);\n            assert_eq(source.tag_secret(), secrets.shared);\n        });\n    }\n\n    unconstrained fn mock_existing_handshake_secrets(maybe_secrets: Option<AppSiloedHandshakeSecrets>) {\n        let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(maybe_secrets.serialize());\n    }\n\n    // The registry's handshake creation call returns the app-siloed secrets via the returns cache.\n    unconstrained fn mock_handshake_creation(context: &mut PrivateContext, secrets: AppSiloedHandshakeSecrets) {\n        let returns = secrets.serialize();\n        let returns_hash = hash_args(returns);\n        execution_cache::store(returns, returns_hash);\n        let child_call_end_counter = context.get_side_effect_counter() + 1;\n        let _ =\n            OracleMock::mock(\"aztec_prv_callPrivateFunction\").returns((child_call_end_counter, returns_hash)).times(1);\n    }\n}\n"
    },
    "139": {
      "function_locations": [
        {
          "name": "TagSecretSource::existing_handshake",
          "start": 1183
        },
        {
          "name": "TagSecretSource::new_non_interactive_handshake",
          "start": 1567
        },
        {
          "name": "TagSecretSource::new_interactive_handshake",
          "start": 2130
        },
        {
          "name": "TagSecretSource::unconstrained_secret",
          "start": 2670
        },
        {
          "name": "TagSecretSource::tag_secret",
          "start": 2852
        },
        {
          "name": "TagSecretSource::constrain_tag_secret",
          "start": 3329
        },
        {
          "name": "<impl From<TagSecretSource> for AppSiloedHandshakeSecrets>::from",
          "start": 4524
        },
        {
          "name": "test::existing_handshake_holds_and_constrains_its_secrets",
          "start": 5327
        },
        {
          "name": "test::unconstrained_secret_holds_its_secret",
          "start": 5987
        },
        {
          "name": "test::new_non_interactive_handshake_creates_and_constrains_the_bootstrapped_secrets",
          "start": 6188
        },
        {
          "name": "test::new_interactive_handshake_creates_and_constrains_the_bootstrapped_secrets",
          "start": 6838
        },
        {
          "name": "test::fresh_handshake_secret_must_start_at_index_zero",
          "start": 7642
        },
        {
          "name": "test::fresh_interactive_handshake_secret_must_start_at_index_zero",
          "start": 8282
        },
        {
          "name": "test::unconstrained_secret_cannot_back_constrained_delivery",
          "start": 8927
        },
        {
          "name": "test::assert_emitted_sequence_nullifier",
          "start": 9404
        },
        {
          "name": "test::mock_handshake_creation",
          "start": 9835
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/delivery/tag_secret_source.nr",
      "source": "use crate::context::PrivateContext;\nuse crate::messages::delivery::{\n    constrained_delivery::{constrain_preexisting_handshake_secrets, emit_sequence_nullifier},\n    handshake::{AppSiloedHandshakeSecrets, create_interactive_handshake, create_non_interactive_handshake},\n};\nuse crate::protocol::address::AztecAddress;\nuse crate::standard_addresses::STANDARD_HANDSHAKE_REGISTRY_ADDRESS;\n\nglobal EXISTING_HANDSHAKE: u8 = 1;\nglobal NEW_NON_INTERACTIVE_HANDSHAKE: u8 = 2;\nglobal UNCONSTRAINED_SECRET: u8 = 3;\nglobal NEW_INTERACTIVE_HANDSHAKE: u8 = 4;\n\n/// How a message's tag secret is sourced and, for constrained delivery, constrained.\n#[derive(Eq)]\npub(crate) struct TagSecretSource {\n    kind: u8,\n    /// The secret the message tag derives from. Every source resolves to exactly one.\n    tag_secret: Field,\n    /// The handshake sender-only secret, folded into the constrained-delivery sequence nullifier. Only meaningful\n    /// for handshake-backed sources.\n    sender_only: Field,\n}\n\nimpl TagSecretSource {\n    /// Reuses the secrets of a handshake already registered for the pair (mode-agnostic).\n    pub(crate) fn existing_handshake(secrets: AppSiloedHandshakeSecrets) -> Self {\n        Self { kind: EXISTING_HANDSHAKE, tag_secret: secrets.shared, sender_only: secrets.sender_only }\n    }\n\n    /// Establishes a fresh non-interactive handshake, publishing information about the recipient onchain.\n    pub(crate) fn new_non_interactive_handshake(\n        context: &mut PrivateContext,\n        sender: AztecAddress,\n        recipient: AztecAddress,\n    ) -> Self {\n        let secrets = create_non_interactive_handshake(\n            context,\n            STANDARD_HANDSHAKE_REGISTRY_ADDRESS,\n            sender,\n            recipient,\n        );\n        Self { kind: NEW_NON_INTERACTIVE_HANDSHAKE, tag_secret: secrets.shared, sender_only: secrets.sender_only }\n    }\n\n    /// Establishes a fresh interactive handshake, publishing nothing about the recipient onchain.\n    pub(crate) fn new_interactive_handshake(\n        context: &mut PrivateContext,\n        sender: AztecAddress,\n        recipient: AztecAddress,\n    ) -> Self {\n        let secrets = create_interactive_handshake(\n            context,\n            STANDARD_HANDSHAKE_REGISTRY_ADDRESS,\n            sender,\n            recipient,\n        );\n        Self { kind: NEW_INTERACTIVE_HANDSHAKE, tag_secret: secrets.shared, sender_only: secrets.sender_only }\n    }\n\n    /// A ready-to-use unconstrained secret the wallet resolved. Sound only for unconstrained delivery, which never\n    /// anchors a sequence, so no sender-only secret is involved.\n    pub(crate) fn unconstrained_secret(secret: Field) -> Self {\n        Self { kind: UNCONSTRAINED_SECRET, tag_secret: secret, sender_only: 0 }\n    }\n\n    /// The secret the message tag derives from.\n    pub(crate) fn tag_secret(self) -> Field {\n        self.tag_secret\n    }\n\n    /// Constrains `(tag secret, index)` for constrained delivery and emits the sequence nullifier, each source\n    /// proving its secrets its own way. A source that cannot back constrained delivery rejects it here. Only called\n    /// for constrained delivery.\n    pub(crate) fn constrain_tag_secret(\n        self,\n        context: &mut PrivateContext,\n        sender: AztecAddress,\n        recipient: AztecAddress,\n        index: u32,\n    ) {\n        let secrets = AppSiloedHandshakeSecrets::from(self);\n        if self.kind == EXISTING_HANDSHAKE {\n            constrain_preexisting_handshake_secrets(\n                context,\n                STANDARD_HANDSHAKE_REGISTRY_ADDRESS,\n                sender,\n                recipient,\n                secrets,\n                index,\n            );\n        } else if (self.kind == NEW_NON_INTERACTIVE_HANDSHAKE) | (self.kind == NEW_INTERACTIVE_HANDSHAKE) {\n            // The secrets were already obtained in a constrained manner, so we only need to verify that the index is 0.\n            assert(index == 0, \"freshly bootstrapped secret must start at index 0\");\n        } else {\n            panic(\n                \"an unconstrained tagging secret cannot back constrained delivery\",\n            );\n        }\n        emit_sequence_nullifier(context, sender, recipient, secrets, index);\n    }\n}\n\n/// The handshake-secrets view of a source. For a source that is not handshake-backed the sender-only secret is a\n/// filler zero, which constrained delivery (the only consumer of it) rejects.\nimpl From<TagSecretSource> for AppSiloedHandshakeSecrets {\n    fn from(source: TagSecretSource) -> Self {\n        Self { shared: source.tag_secret, sender_only: source.sender_only }\n    }\n}\n\nmod test {\n    use crate::context::PrivateContext;\n    use crate::hash::hash_args;\n    use crate::messages::delivery::constrained_delivery::compute_constrained_msg_nullifier;\n    use crate::messages::delivery::handshake::AppSiloedHandshakeSecrets;\n    use crate::oracle::execution_cache;\n    use crate::protocol::{address::AztecAddress, traits::{FromField, Serialize}};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::TagSecretSource;\n    use std::test::OracleMock;\n\n    global SENDER: AztecAddress = AztecAddress::from_field(1);\n    global RECIPIENT: AztecAddress = AztecAddress::from_field(8);\n\n    #[test]\n    unconstrained fn existing_handshake_holds_and_constrains_its_secrets() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 42, sender_only: 7 };\n        let index: u32 = 3;\n\n        env.private_context(|context| {\n            let _ = OracleMock::mock(\"aztec_prv_isNullifierPending\").returns(false).times(1);\n\n            let source = TagSecretSource::existing_handshake(secrets);\n            assert_eq(source.tag_secret(), secrets.shared);\n\n            source.constrain_tag_secret(context, SENDER, RECIPIENT, index);\n            assert_emitted_sequence_nullifier(context, secrets, index);\n        });\n    }\n\n    #[test]\n    unconstrained fn unconstrained_secret_holds_its_secret() {\n        assert_eq(TagSecretSource::unconstrained_secret(42).tag_secret(), 42);\n    }\n\n    #[test]\n    unconstrained fn new_non_interactive_handshake_creates_and_constrains_the_bootstrapped_secrets() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 7, sender_only: 9 };\n\n        env.private_context(|context| {\n            mock_handshake_creation(context, secrets);\n\n            let source = TagSecretSource::new_non_interactive_handshake(context, SENDER, RECIPIENT);\n            assert_eq(source.tag_secret(), secrets.shared);\n\n            source.constrain_tag_secret(context, SENDER, RECIPIENT, 0);\n            assert_emitted_sequence_nullifier(context, secrets, 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn new_interactive_handshake_creates_and_constrains_the_bootstrapped_secrets() {\n        let env = TestEnvironment::new();\n        let secrets = AppSiloedHandshakeSecrets { shared: 12, sender_only: 34 };\n\n        env.private_context(|context| {\n            mock_handshake_creation(context, secrets);\n\n            let source = TagSecretSource::new_interactive_handshake(context, SENDER, RECIPIENT);\n            assert_eq(source.tag_secret(), secrets.shared);\n\n            source.constrain_tag_secret(context, SENDER, RECIPIENT, 0);\n            assert_emitted_sequence_nullifier(context, secrets, 0);\n        });\n    }\n\n    // A freshly bootstrapped handshake secret is the source of truth, so its sequence must start at index 0.\n    #[test(should_fail_with = \"freshly bootstrapped secret must start at index 0\")]\n    unconstrained fn fresh_handshake_secret_must_start_at_index_zero() {\n        let env = TestEnvironment::new();\n        env.private_context(|context| {\n            mock_handshake_creation(\n                context,\n                AppSiloedHandshakeSecrets { shared: 0, sender_only: 0 },\n            );\n\n            TagSecretSource::new_non_interactive_handshake(context, SENDER, RECIPIENT).constrain_tag_secret(\n                context,\n                SENDER,\n                RECIPIENT,\n                1,\n            );\n        });\n    }\n\n    #[test(should_fail_with = \"freshly bootstrapped secret must start at index 0\")]\n    unconstrained fn fresh_interactive_handshake_secret_must_start_at_index_zero() {\n        let env = TestEnvironment::new();\n        env.private_context(|context| {\n            mock_handshake_creation(\n                context,\n                AppSiloedHandshakeSecrets { shared: 0, sender_only: 0 },\n            );\n\n            TagSecretSource::new_interactive_handshake(context, SENDER, RECIPIENT).constrain_tag_secret(\n                context,\n                SENDER,\n                RECIPIENT,\n                1,\n            );\n        });\n    }\n\n    #[test(should_fail_with = \"an unconstrained tagging secret cannot back constrained delivery\")]\n    unconstrained fn unconstrained_secret_cannot_back_constrained_delivery() {\n        let env = TestEnvironment::new();\n        env.private_context(|context| {\n            TagSecretSource::unconstrained_secret(7).constrain_tag_secret(\n                context,\n                AztecAddress::zero(),\n                AztecAddress::zero(),\n                0,\n            );\n        });\n    }\n\n    unconstrained fn assert_emitted_sequence_nullifier(\n        context: &mut PrivateContext,\n        secrets: AppSiloedHandshakeSecrets,\n        index: u32,\n    ) {\n        assert_eq(context.nullifiers.len(), 1);\n        assert_eq(\n            context.nullifiers.get(0).inner.value,\n            compute_constrained_msg_nullifier(SENDER, RECIPIENT, secrets, index),\n        );\n    }\n\n    // The registry's handshake creation call returns the app-siloed secrets via the returns cache.\n    unconstrained fn mock_handshake_creation(context: &mut PrivateContext, secrets: AppSiloedHandshakeSecrets) {\n        let returns = secrets.serialize();\n        let returns_hash = hash_args(returns);\n        execution_cache::store(returns, returns_hash);\n        let child_call_end_counter = context.get_side_effect_counter() + 1;\n        let _ =\n            OracleMock::mock(\"aztec_prv_callPrivateFunction\").returns((child_call_end_counter, returns_hash)).times(1);\n    }\n}\n"
    },
    "14": {
      "function_locations": [
        {
          "name": "EmbeddedCurvePoint::new",
          "start": 510
        },
        {
          "name": "EmbeddedCurvePoint::double",
          "start": 705
        },
        {
          "name": "EmbeddedCurvePoint::point_at_infinity",
          "start": 877
        },
        {
          "name": "EmbeddedCurvePoint::generator",
          "start": 1018
        },
        {
          "name": "EmbeddedCurvePoint::is_infinite",
          "start": 1329
        },
        {
          "name": "<impl Add for EmbeddedCurvePoint>::add",
          "start": 1576
        },
        {
          "name": "<impl Sub for EmbeddedCurvePoint>::sub",
          "start": 1793
        },
        {
          "name": "<impl Neg for EmbeddedCurvePoint>::neg",
          "start": 2051
        },
        {
          "name": "<impl Eq for EmbeddedCurvePoint>::eq",
          "start": 2245
        },
        {
          "name": "<impl Hash for EmbeddedCurvePoint>::hash",
          "start": 2415
        },
        {
          "name": "EmbeddedCurveScalar::new",
          "start": 2969
        },
        {
          "name": "EmbeddedCurveScalar::from_field",
          "start": 3154
        },
        {
          "name": "<impl Eq for EmbeddedCurveScalar>::eq",
          "start": 3342
        },
        {
          "name": "<impl Hash for EmbeddedCurveScalar>::hash",
          "start": 3525
        },
        {
          "name": "multi_scalar_mul",
          "start": 4201
        },
        {
          "name": "fixed_base_scalar_mul",
          "start": 4416
        },
        {
          "name": "multi_scalar_mul_array_return",
          "start": 4699
        },
        {
          "name": "embedded_curve_add",
          "start": 5154
        },
        {
          "name": "embedded_curve_add_array_return",
          "start": 5439
        },
        {
          "name": "tests::hash_point",
          "start": 5888
        },
        {
          "name": "tests::hash_scalar",
          "start": 6064
        },
        {
          "name": "tests::point_new_sets_coordinates",
          "start": 6236
        },
        {
          "name": "tests::point_at_infinity_is_origin",
          "start": 6395
        },
        {
          "name": "tests::generator_has_documented_coordinates",
          "start": 6579
        },
        {
          "name": "tests::is_infinite_only_true_for_origin",
          "start": 6803
        },
        {
          "name": "tests::points_with_same_coords_are_equal",
          "start": 7126
        },
        {
          "name": "tests::points_with_different_coords_are_unequal",
          "start": 7318
        },
        {
          "name": "tests::neg_negates_y_coordinate",
          "start": 7580
        },
        {
          "name": "tests::neg_is_involution",
          "start": 7768
        },
        {
          "name": "tests::add_with_point_at_infinity_is_identity",
          "start": 7913
        },
        {
          "name": "tests::add_of_two_infinities_is_infinity",
          "start": 8147
        },
        {
          "name": "tests::add_with_negation_is_point_at_infinity",
          "start": 8318
        },
        {
          "name": "tests::add_is_commutative",
          "start": 8458
        },
        {
          "name": "tests::add_is_associative",
          "start": 8620
        },
        {
          "name": "tests::sub_of_a_point_with_itself_is_infinity",
          "start": 8841
        },
        {
          "name": "tests::sub_with_point_at_infinity_is_identity",
          "start": 8998
        },
        {
          "name": "tests::sub_inverts_add",
          "start": 9183
        },
        {
          "name": "tests::double_equals_self_plus_self",
          "start": 9394
        },
        {
          "name": "tests::double_of_point_at_infinity_is_infinity",
          "start": 9551
        },
        {
          "name": "tests::embedded_curve_add_matches_add_operator",
          "start": 9701
        },
        {
          "name": "tests::point_hash_is_consistent_for_equal_points",
          "start": 9905
        },
        {
          "name": "tests::point_hash_differs_for_distinct_points",
          "start": 10117
        },
        {
          "name": "tests::scalar_new_sets_limbs",
          "start": 10515
        },
        {
          "name": "tests::scalars_with_same_limbs_are_equal",
          "start": 10683
        },
        {
          "name": "tests::scalars_with_different_limbs_are_unequal",
          "start": 10877
        },
        {
          "name": "tests::scalar_from_field_decomposes_zero",
          "start": 11098
        },
        {
          "name": "tests::scalar_from_field_decomposes_small_value",
          "start": 11256
        },
        {
          "name": "tests::scalar_from_field_decomposes_two_pow_128",
          "start": 11455
        },
        {
          "name": "tests::scalar_hash_is_consistent_for_equal_scalars",
          "start": 11645
        },
        {
          "name": "tests::scalar_hash_differs_for_distinct_scalars",
          "start": 11865
        },
        {
          "name": "tests::msm_with_scalar_one_returns_point",
          "start": 12288
        },
        {
          "name": "tests::msm_with_scalar_zero_returns_infinity",
          "start": 12507
        },
        {
          "name": "tests::msm_with_scalar_two_doubles_point",
          "start": 12732
        },
        {
          "name": "tests::msm_sums_terms",
          "start": 12937
        },
        {
          "name": "tests::msm_with_opposite_terms_cancels",
          "start": 13167
        },
        {
          "name": "tests::msm_skips_point_at_infinity",
          "start": 13393
        },
        {
          "name": "tests::msm_skips_zero_scalar",
          "start": 13665
        },
        {
          "name": "tests::fixed_base_scalar_mul_with_one_returns_generator",
          "start": 13955
        },
        {
          "name": "tests::fixed_base_scalar_mul_with_zero_returns_infinity",
          "start": 14164
        },
        {
          "name": "tests::fixed_base_scalar_mul_matches_msm_on_generator",
          "start": 14351
        }
      ],
      "path": "std/embedded_curve_ops.nr",
      "source": "use crate::cmp::Eq;\nuse crate::hash::Hash;\nuse crate::ops::arith::{Add, Neg, Sub};\n\n/// A point on the embedded elliptic curve\n/// By definition, the base field of the embedded curve is the scalar field of the proof system curve, i.e the Noir Field.\n/// x and y denotes the Weierstrass coordinates of the point.\npub struct EmbeddedCurvePoint {\n    pub x: Field,\n    pub y: Field,\n}\n\nimpl EmbeddedCurvePoint {\n    /// Create a new point using the provided (x, y) pair\n    pub fn new(x: Field, y: Field) -> Self {\n        EmbeddedCurvePoint { x, y }\n    }\n\n    /// Elliptic curve point doubling operation\n    /// returns the doubled point of a point P, i.e P+P\n    pub fn double(self) -> EmbeddedCurvePoint {\n        embedded_curve_add(self, self)\n    }\n\n    /// Returns the null element of the curve; 'the point at infinity'\n    pub fn point_at_infinity() -> EmbeddedCurvePoint {\n        EmbeddedCurvePoint { x: 0, y: 0 }\n    }\n\n    /// Returns the curve's generator point.\n    pub fn generator() -> EmbeddedCurvePoint {\n        // Generator point for the grumpkin curve (y^2 = x^3 - 17)\n        EmbeddedCurvePoint {\n            x: 1,\n            y: 17631683881184975370165255887551781615748388533673675138860, // sqrt(-16)\n        }\n    }\n\n    /// True if this point is the point at infinity\n    pub fn is_infinite(self) -> bool {\n        (self.x == 0) & (self.y == 0)\n    }\n}\n\nimpl Add for EmbeddedCurvePoint {\n    /// Adds two points P+Q, using the curve addition formula, and also handles point at infinity\n    fn add(self, other: EmbeddedCurvePoint) -> EmbeddedCurvePoint {\n        embedded_curve_add(self, other)\n    }\n}\n\nimpl Sub for EmbeddedCurvePoint {\n    /// Points subtraction operation, using addition and negation\n    fn sub(self, other: EmbeddedCurvePoint) -> EmbeddedCurvePoint {\n        self + other.neg()\n    }\n}\n\nimpl Neg for EmbeddedCurvePoint {\n    /// Negates a point P, i.e returns -P, by negating the y coordinate.\n    /// If the point is at infinity, then the result is also at infinity.\n    fn neg(self) -> EmbeddedCurvePoint {\n        EmbeddedCurvePoint { x: self.x, y: -self.y }\n    }\n}\n\nimpl Eq for EmbeddedCurvePoint {\n    /// Checks whether two points are equal\n    fn eq(self: Self, b: EmbeddedCurvePoint) -> bool {\n        (self.x == b.x) & (self.y == b.y)\n    }\n}\n\nimpl Hash for EmbeddedCurvePoint {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: crate::hash::Hasher,\n    {\n        self.x.hash(state);\n        self.y.hash(state);\n    }\n}\n\n/// Scalar for the embedded curve represented as low and high limbs\n/// By definition, the scalar field of the embedded curve is base field of the proving system curve.\n/// It may not fit into a Field element, so it is represented with two Field elements; its low and high limbs.\npub struct EmbeddedCurveScalar {\n    pub lo: Field,\n    pub hi: Field,\n}\n\nimpl EmbeddedCurveScalar {\n    /// Create a new scalar using the provided (lo, hi) pair\n    pub fn new(lo: Field, hi: Field) -> Self {\n        EmbeddedCurveScalar { lo, hi }\n    }\n\n    /// Create a scalar from the given bn254 field value\n    #[field(bn254)]\n    pub fn from_field(scalar: Field) -> EmbeddedCurveScalar {\n        let (a, b) = crate::field::bn254::decompose(scalar);\n        EmbeddedCurveScalar { lo: a, hi: b }\n    }\n}\n\nimpl Eq for EmbeddedCurveScalar {\n    fn eq(self, other: Self) -> bool {\n        (other.hi == self.hi) & (other.lo == self.lo)\n    }\n}\n\nimpl Hash for EmbeddedCurveScalar {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: crate::hash::Hasher,\n    {\n        self.hi.hash(state);\n        self.lo.hash(state);\n    }\n}\n\n/// Computes a multi scalar multiplication over the embedded curve.\n/// For bn254, We have Grumpkin.\n///\n/// The embedded curve being used is decided by the\n/// underlying proof system.\n///\n/// IMPORTANT: Prefer `multi_scalar_mul()` over repeated `embedded_curve_add()`\n/// for adding multiple points. This is significantly more efficient.\n/// For adding exactly 2 points, use `embedded_curve_add()` directly.\n// docs:start:multi_scalar_mul\npub fn multi_scalar_mul<let N: u32>(\n    points: [EmbeddedCurvePoint; N],\n    scalars: [EmbeddedCurveScalar; N],\n) -> EmbeddedCurvePoint\n// docs:end:multi_scalar_mul\n{\n    multi_scalar_mul_array_return(points, scalars, true)[0]\n}\n\n// docs:start:fixed_base_scalar_mul\npub fn fixed_base_scalar_mul(scalar: EmbeddedCurveScalar) -> EmbeddedCurvePoint\n// docs:end:fixed_base_scalar_mul\n{\n    multi_scalar_mul([EmbeddedCurvePoint::generator()], [scalar])\n}\n\n#[foreign(multi_scalar_mul)]\npub(crate) fn multi_scalar_mul_array_return<let N: u32>(\n    points: [EmbeddedCurvePoint; N],\n    scalars: [EmbeddedCurveScalar; N],\n    predicate: bool,\n) -> [EmbeddedCurvePoint; 1] {}\n\n/// Elliptic curve addition\n/// IMPORTANT: this function is expected to perform a full addition in order to handle all corner cases:\n/// - points on the curve\n/// - point doubling\n/// - point at infinity\n/// As a result, you may not get optimal performance, depending on the assumptions of your inputs.\n// docs:start:embedded_curve_add\npub fn embedded_curve_add(\n    point1: EmbeddedCurvePoint,\n    point2: EmbeddedCurvePoint,\n) -> EmbeddedCurvePoint {\n    // docs:end:embedded_curve_add\n    embedded_curve_add_array_return(point1, point2, true)[0]\n}\n\n#[foreign(embedded_curve_add)]\nfn embedded_curve_add_array_return(\n    _point1: EmbeddedCurvePoint,\n    _point2: EmbeddedCurvePoint,\n    _predicate: bool,\n) -> [EmbeddedCurvePoint; 1] {}\n\nmod tests {\n    // TODO: Allow imports from \"super\"\n    use crate::default::Default;\n    use crate::embedded_curve_ops::{\n        embedded_curve_add, EmbeddedCurvePoint, EmbeddedCurveScalar, fixed_base_scalar_mul,\n        multi_scalar_mul,\n    };\n    use crate::field::bn254::TWO_POW_128;\n    use crate::hash::Hash;\n    use crate::hash::Hasher;\n    use crate::hash::poseidon2::Poseidon2Hasher;\n\n    fn hash_point(p: EmbeddedCurvePoint) -> Field {\n        let mut hasher: Poseidon2Hasher = Default::default();\n        p.hash(&mut hasher);\n        hasher.finish()\n    }\n\n    fn hash_scalar(s: EmbeddedCurveScalar) -> Field {\n        let mut hasher: Poseidon2Hasher = Default::default();\n        s.hash(&mut hasher);\n        hasher.finish()\n    }\n\n    #[test]\n    fn point_new_sets_coordinates() {\n        let p = EmbeddedCurvePoint::new(3, 5);\n        assert_eq(p.x, 3);\n        assert_eq(p.y, 5);\n    }\n\n    #[test]\n    fn point_at_infinity_is_origin() {\n        let inf = EmbeddedCurvePoint::point_at_infinity();\n        assert_eq(inf.x, 0);\n        assert_eq(inf.y, 0);\n    }\n\n    #[test]\n    fn generator_has_documented_coordinates() {\n        let g = EmbeddedCurvePoint::generator();\n        assert_eq(g.x, 1);\n        assert_eq(g.y, 17631683881184975370165255887551781615748388533673675138860);\n    }\n\n    #[test]\n    fn is_infinite_only_true_for_origin() {\n        assert(EmbeddedCurvePoint::point_at_infinity().is_infinite());\n        assert(!EmbeddedCurvePoint::generator().is_infinite());\n        assert(!EmbeddedCurvePoint::new(1, 0).is_infinite());\n        assert(!EmbeddedCurvePoint::new(0, 1).is_infinite());\n    }\n\n    #[test]\n    fn points_with_same_coords_are_equal() {\n        let p = EmbeddedCurvePoint::new(7, 11);\n        let q = EmbeddedCurvePoint::new(7, 11);\n        assert_eq(p, q);\n    }\n\n    #[test]\n    fn points_with_different_coords_are_unequal() {\n        let p = EmbeddedCurvePoint::new(7, 11);\n        assert(p != EmbeddedCurvePoint::new(7, 12));\n        assert(p != EmbeddedCurvePoint::new(8, 11));\n        assert(p != EmbeddedCurvePoint::new(8, 12));\n    }\n\n    #[test]\n    fn neg_negates_y_coordinate() {\n        let g = EmbeddedCurvePoint::generator();\n        let neg_g = -g;\n        assert_eq(neg_g.x, g.x);\n        assert_eq(neg_g.y, -g.y);\n    }\n\n    #[test]\n    fn neg_is_involution() {\n        let g = EmbeddedCurvePoint::generator();\n        assert_eq(--g, g);\n    }\n\n    #[test]\n    fn add_with_point_at_infinity_is_identity() {\n        let g = EmbeddedCurvePoint::generator();\n        let inf = EmbeddedCurvePoint::point_at_infinity();\n        assert_eq(g + inf, g);\n        assert_eq(inf + g, g);\n    }\n\n    #[test]\n    fn add_of_two_infinities_is_infinity() {\n        let inf = EmbeddedCurvePoint::point_at_infinity();\n        assert((inf + inf).is_infinite());\n    }\n\n    #[test]\n    fn add_with_negation_is_point_at_infinity() {\n        let g = EmbeddedCurvePoint::generator();\n        assert((g + (-g)).is_infinite());\n    }\n\n    #[test]\n    fn add_is_commutative() {\n        let g = EmbeddedCurvePoint::generator();\n        let g2 = g.double();\n        assert_eq(g + g2, g2 + g);\n    }\n\n    #[test]\n    fn add_is_associative() {\n        let g = EmbeddedCurvePoint::generator();\n        let g2 = g.double();\n        let g3 = g + g2;\n        assert_eq((g + g2) + g3, g + (g2 + g3));\n    }\n\n    #[test]\n    fn sub_of_a_point_with_itself_is_infinity() {\n        let g = EmbeddedCurvePoint::generator();\n        assert((g - g).is_infinite());\n    }\n\n    #[test]\n    fn sub_with_point_at_infinity_is_identity() {\n        let g = EmbeddedCurvePoint::generator();\n        let inf = EmbeddedCurvePoint::point_at_infinity();\n        assert_eq(g - inf, g);\n    }\n\n    #[test]\n    fn sub_inverts_add() {\n        let g = EmbeddedCurvePoint::generator();\n        let g2 = g.double();\n        assert_eq((g + g2) - g2, g);\n        assert_eq((g + g2) - g, g2);\n    }\n\n    #[test]\n    fn double_equals_self_plus_self() {\n        let g = EmbeddedCurvePoint::generator();\n        assert_eq(g.double(), g + g);\n    }\n\n    #[test]\n    fn double_of_point_at_infinity_is_infinity() {\n        assert(EmbeddedCurvePoint::point_at_infinity().double().is_infinite());\n    }\n\n    #[test]\n    fn embedded_curve_add_matches_add_operator() {\n        let g = EmbeddedCurvePoint::generator();\n        let g2 = g.double();\n        assert_eq(embedded_curve_add(g, g2), g + g2);\n    }\n\n    #[test]\n    fn point_hash_is_consistent_for_equal_points() {\n        let p = EmbeddedCurvePoint::new(3, 5);\n        let q = EmbeddedCurvePoint::new(3, 5);\n        assert_eq(hash_point(p), hash_point(q));\n    }\n\n    #[test]\n    fn point_hash_differs_for_distinct_points() {\n        let p = EmbeddedCurvePoint::new(3, 5);\n        assert(hash_point(p) != hash_point(EmbeddedCurvePoint::new(3, 7)));\n        assert(hash_point(p) != hash_point(EmbeddedCurvePoint::new(4, 5)));\n        // Distinguishes (x, y) from (y, x) - order of writes matters.\n        assert(hash_point(p) != hash_point(EmbeddedCurvePoint::new(5, 3)));\n    }\n\n    #[test]\n    fn scalar_new_sets_limbs() {\n        let s = EmbeddedCurveScalar::new(3, 5);\n        assert_eq(s.lo, 3);\n        assert_eq(s.hi, 5);\n    }\n\n    #[test]\n    fn scalars_with_same_limbs_are_equal() {\n        let s = EmbeddedCurveScalar::new(7, 11);\n        let t = EmbeddedCurveScalar::new(7, 11);\n        assert_eq(s, t);\n    }\n\n    #[test]\n    fn scalars_with_different_limbs_are_unequal() {\n        let s = EmbeddedCurveScalar::new(7, 11);\n        assert(s != EmbeddedCurveScalar::new(7, 12));\n        assert(s != EmbeddedCurveScalar::new(8, 11));\n    }\n\n    #[test]\n    fn scalar_from_field_decomposes_zero() {\n        assert_eq(EmbeddedCurveScalar::from_field(0), EmbeddedCurveScalar::new(0, 0));\n    }\n\n    #[test]\n    fn scalar_from_field_decomposes_small_value() {\n        let s = EmbeddedCurveScalar::from_field(0x1234567890);\n        assert_eq(s, EmbeddedCurveScalar::new(0x1234567890, 0));\n    }\n\n    #[test]\n    fn scalar_from_field_decomposes_two_pow_128() {\n        let s = EmbeddedCurveScalar::from_field(TWO_POW_128);\n        assert_eq(s, EmbeddedCurveScalar::new(0, 1));\n    }\n\n    #[test]\n    fn scalar_hash_is_consistent_for_equal_scalars() {\n        let s = EmbeddedCurveScalar::new(7, 11);\n        let t = EmbeddedCurveScalar::new(7, 11);\n        assert_eq(hash_scalar(s), hash_scalar(t));\n    }\n\n    #[test]\n    fn scalar_hash_differs_for_distinct_scalars() {\n        let s = EmbeddedCurveScalar::new(7, 11);\n        assert(hash_scalar(s) != hash_scalar(EmbeddedCurveScalar::new(7, 12)));\n        assert(hash_scalar(s) != hash_scalar(EmbeddedCurveScalar::new(8, 11)));\n        // Distinguishes (lo, hi) from (hi, lo) - limb order matters.\n        assert(hash_scalar(s) != hash_scalar(EmbeddedCurveScalar::new(11, 7)));\n    }\n\n    #[test]\n    fn msm_with_scalar_one_returns_point() {\n        let g = EmbeddedCurvePoint::generator();\n        let one = EmbeddedCurveScalar::new(1, 0);\n        assert_eq(multi_scalar_mul([g], [one]), g);\n    }\n\n    #[test]\n    fn msm_with_scalar_zero_returns_infinity() {\n        let g = EmbeddedCurvePoint::generator();\n        let zero = EmbeddedCurveScalar::new(0, 0);\n        assert(multi_scalar_mul([g], [zero]).is_infinite());\n    }\n\n    #[test]\n    fn msm_with_scalar_two_doubles_point() {\n        let g = EmbeddedCurvePoint::generator();\n        let two = EmbeddedCurveScalar::new(2, 0);\n        assert_eq(multi_scalar_mul([g], [two]), g.double());\n    }\n\n    #[test]\n    fn msm_sums_terms() {\n        let g = EmbeddedCurvePoint::generator();\n        let one = EmbeddedCurveScalar::new(1, 0);\n        assert_eq(multi_scalar_mul([g, g], [one, one]), g.double());\n    }\n\n    #[test]\n    fn msm_with_opposite_terms_cancels() {\n        let g = EmbeddedCurvePoint::generator();\n        let one = EmbeddedCurveScalar::new(1, 0);\n        assert(multi_scalar_mul([g, -g], [one, one]).is_infinite());\n    }\n\n    #[test]\n    fn msm_skips_point_at_infinity() {\n        let g = EmbeddedCurvePoint::generator();\n        let inf = EmbeddedCurvePoint::point_at_infinity();\n        let one = EmbeddedCurveScalar::new(1, 0);\n        assert_eq(multi_scalar_mul([inf, g], [one, one]), g);\n    }\n\n    #[test]\n    fn msm_skips_zero_scalar() {\n        let g = EmbeddedCurvePoint::generator();\n        let one = EmbeddedCurveScalar::new(1, 0);\n        let zero = EmbeddedCurveScalar::new(0, 0);\n        assert_eq(multi_scalar_mul([g, g], [zero, one]), g);\n    }\n\n    #[test]\n    fn fixed_base_scalar_mul_with_one_returns_generator() {\n        let one = EmbeddedCurveScalar::new(1, 0);\n        assert_eq(fixed_base_scalar_mul(one), EmbeddedCurvePoint::generator());\n    }\n\n    #[test]\n    fn fixed_base_scalar_mul_with_zero_returns_infinity() {\n        let zero = EmbeddedCurveScalar::new(0, 0);\n        assert(fixed_base_scalar_mul(zero).is_infinite());\n    }\n\n    #[test]\n    fn fixed_base_scalar_mul_matches_msm_on_generator() {\n        let s = EmbeddedCurveScalar::new(2, 0);\n        assert_eq(\n            fixed_base_scalar_mul(s),\n            multi_scalar_mul([EmbeddedCurvePoint::generator()], [s]),\n        );\n    }\n}\n"
    },
    "140": {
      "function_locations": [
        {
          "name": "do_sync_state",
          "start": 7269
        },
        {
          "name": "do_sync_state_without_handshake_discovery",
          "start": 8106
        },
        {
          "name": "sync_state_with_secrets",
          "start": 8798
        },
        {
          "name": "test::do_sync_state_does_not_panic_on_empty_logs",
          "start": 11420
        },
        {
          "name": "test::dummy_compute_note_hash",
          "start": 13514
        },
        {
          "name": "test::dummy_compute_note_nullifier",
          "start": 13875
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/discovery/mod.nr",
      "source": "use crate::ephemeral::EphemeralArray;\nuse crate::logging::{aztecnr_debug_log, aztecnr_debug_log_format, aztecnr_warn_log_format};\nuse crate::messages::{\n    delivery::handshake::{get_handshake_secrets, PROVIDED_SECRETS_ARRAY_BASE_SLOT},\n    processing::provided_secret::ProvidedSecret,\n};\nuse crate::partial_notes;\nuse crate::protocol::address::AztecAddress;\n\npub(crate) mod nonce_discovery;\npub(crate) mod private_events;\npub mod private_notes;\npub mod process_message;\n\nuse crate::{\n    messages::{\n        discovery::process_message::process_message_ciphertext,\n        encoding::MAX_MESSAGE_CONTENT_LEN,\n        logs::note::MAX_NOTE_PACKED_LEN,\n        processing::{\n            offchain::OffchainInboxSync, OffchainMessageWithTx, pending_tagged_log::PendingTaggedLog, ResolvedTx,\n            validate_and_store_enqueued_notes_and_events,\n        },\n    },\n    oracle::message_processing,\n    utils::array,\n};\n\npub struct NoteHashAndNullifier {\n    /// The result of [`crate::note::note_interface::NoteHash::compute_note_hash`].\n    pub note_hash: Field,\n    /// The result of [`crate::note::note_interface::NoteHash::compute_nullifier_unconstrained`].\n    ///\n    /// This value is unconstrained, as all of message discovery is unconstrained. It is `None` if the nullifier\n    /// cannot be computed (e.g. because the nullifier hiding key is not available).\n    pub inner_nullifier: Option<Field>,\n}\n\n/// A contract's way of computing note hashes.\n///\n/// Each contract in the network is free to compute their note's hash as they see fit - the hash function itself is not\n/// enshrined or standardized. Some aztec-nr functions however do need to know the details of this computation (e.g.\n/// when finding new notes), which is what this type represents.\n///\n/// This function takes a note's packed content, storage slot, note type ID, address of the emitting contract and\n/// randomness, and attempts to compute its inner note hash (not siloed by address nor uniqued by nonce).\n///\n/// ## Transient Notes\n///\n/// This function is meant to always be used on **settled** notes, i.e. those that have been inserted into the trees\n/// and for which the nonce is known. It is never invoked in the context of a transient note, as those are not involved\n/// in message processing.\n///\n/// ## Automatic Implementation\n///\n/// The [`[#aztec]`](crate::macros::aztec::aztec) macro automatically creates a correct implementation of this function\n/// for each contract by inspecting all note types in use and the storage layout. This injected function is a\n/// `#[contract_library_method]` called `_compute_note_hash`, and it looks something like this:\n///\n/// ```noir\n/// |packed_note, owner, storage_slot, note_type_id, _contract_address, randomness| {\n///     if note_type_id == MyNoteType::get_id() {\n///         if packed_note.len() != MY_NOTE_TYPE_SERIALIZATION_LENGTH {\n///             Option::none()\n///         } else {\n///             let note = MyNoteType::unpack(aztec::utils::array::subarray(packed_note.storage(), 0));\n///             Option::some(note.compute_note_hash(owner, storage_slot, randomness))\n///         }\n///     } else if note_type_id == MyOtherNoteType::get_id() {\n///           ... // Similar to above but calling MyOtherNoteType::unpack\n///     } else {\n///         Option::none() // Unknown note type ID\n///     };\n/// }\n/// ```\npub type ComputeNoteHash = unconstrained fn(/* packed_note */BoundedVec<Field, MAX_NOTE_PACKED_LEN>, /*\n owner */ AztecAddress, /* storage_slot */ Field, /* note_type_id */ Field, /* contract_address */ AztecAddress, /*\nrandomness */ Field) -> Option<Field>;\n\n/// A contract's way of computing note nullifiers.\n///\n/// Like [`ComputeNoteHash`], each contract is free to derive nullifiers as they see fit. This function takes the\n/// unique note hash (used as the note hash for nullification for settled notes), plus the note's packed content and\n/// metadata, and attempts to compute the inner nullifier (not siloed by address).\n///\n/// ## Automatic Implementation\n///\n/// The [`[#aztec]`](crate::macros::aztec::aztec) macro automatically creates a correct implementation of this function\n/// for each contract called `_compute_note_nullifier`. It dispatches on `note_type_id` similarly to\n/// [`ComputeNoteHash`], then calls the note's\n/// [`compute_nullifier_unconstrained`](crate::note::note_interface::NoteHash::compute_nullifier_unconstrained) method.\npub type ComputeNoteNullifier = unconstrained fn(/* unique_note_hash */Field, /* packed_note */ BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n/* owner */ AztecAddress, /* storage_slot */ Field, /* note_type_id */ Field, /* contract_address */ AztecAddress,\n/* randomness */ Field) -> Option<Field>;\n\n/// Deprecated: use [`ComputeNoteHash`] and [`ComputeNoteNullifier`] instead.\npub type ComputeNoteHashAndNullifier<Env> = unconstrained fn[Env](/* packed_note */BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n/* owner */ AztecAddress, /* storage_slot */ Field, /* note_type_id */ Field, /* contract_address */ AztecAddress,\n/*randomness */ Field, /* note nonce */ Field) -> Option<NoteHashAndNullifier>;\n\n/// A handler for custom messages.\n///\n/// Contracts that emit custom messages (i.e. any with a message type that is not in [`crate::messages::msg_type`])\n/// need to use [`crate::macros::AztecConfig::custom_message_handler`] with a function of this type in order to\n/// process them. They will otherwise be **silently ignored**.\npub type CustomMessageHandler = unconstrained fn(\n/* contract_address */AztecAddress,\n/* msg_type_id */ u64,\n/* msg_metadata */ u64,\n/* msg_content */ BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n/* resolved_tx */ ResolvedTx,\n/* scope */ AztecAddress);\n\n/// Custom state synchronization handler.\n///\n/// When set via [`crate::macros::AztecConfig::custom_sync_state`], the generated `sync_state` function will call\n/// this handler instead of [`do_sync_state`]. It receives all of the same parameters, so it can run custom logic\n/// (e.g. fetching and decrypting custom logs) before, after, or instead of calling [`do_sync_state`].\npub type CustomSyncHandler = unconstrained fn(\n/* contract_address */AztecAddress,\n/* compute_note_hash */ ComputeNoteHash,\n/* compute_note_nullifier */ ComputeNoteNullifier,\n/* process_custom_message */ Option<CustomMessageHandler>,\n/* offchain_inbox_sync */ Option<OffchainInboxSync>,\n/* scope */ AztecAddress);\n\n/// Synchronizes the contract's private state with the network.\n///\n/// As blocks are mined, it is possible for a contract's private state to change (e.g. with new notes being created),\n/// but because these changes are private they will be invisible to most actors. This is the function that processes\n/// new transactions in order to discover new notes, events, and other kinds of private state changes.\n///\n/// The private state will be synchronized up to the block that will be used for private transactions (i.e. the anchor\n/// block. This will typically be close to the tip of the chain.\npub unconstrained fn do_sync_state(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    process_custom_message: Option<CustomMessageHandler>,\n    offchain_inbox_sync: Option<OffchainInboxSync>,\n    scope: AztecAddress,\n) {\n    let provided_secrets = get_handshake_secrets(contract_address, scope);\n    sync_state_with_secrets(\n        contract_address,\n        compute_note_hash,\n        compute_note_nullifier,\n        process_custom_message,\n        offchain_inbox_sync,\n        scope,\n        provided_secrets,\n    );\n}\n\n/// Variant of [`do_sync_state`] that skips handshake secret discovery. Used by the HandshakeRegistry to avoid\n/// infinite recursion (the registry discovers handshakes for other contracts, not for itself).\npub unconstrained fn do_sync_state_without_handshake_discovery(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    process_custom_message: Option<CustomMessageHandler>,\n    offchain_inbox_sync: Option<OffchainInboxSync>,\n    scope: AztecAddress,\n) {\n    let provided_secrets = EphemeralArray::<ProvidedSecret>::empty_at(PROVIDED_SECRETS_ARRAY_BASE_SLOT);\n    sync_state_with_secrets(\n        contract_address,\n        compute_note_hash,\n        compute_note_nullifier,\n        process_custom_message,\n        offchain_inbox_sync,\n        scope,\n        provided_secrets,\n    );\n}\n\nunconstrained fn sync_state_with_secrets(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    process_custom_message: Option<CustomMessageHandler>,\n    offchain_inbox_sync: Option<OffchainInboxSync>,\n    scope: AztecAddress,\n    provided_secrets: EphemeralArray<ProvidedSecret>,\n) {\n    aztecnr_debug_log!(\"Performing state synchronization\");\n\n    let logs = message_processing::get_pending_tagged_logs(scope, provided_secrets);\n    logs.for_each(|_i, pending_tagged_log: PendingTaggedLog| {\n        if pending_tagged_log.log.len() == 0 {\n            aztecnr_warn_log_format!(\"Skipping empty log from tx {0}\")([pending_tagged_log.context.tx_hash]);\n        } else {\n            aztecnr_debug_log_format!(\"Processing log with tag {0}\")([pending_tagged_log.log.get(0)]);\n\n            // We remove the tag from the pending tagged log and process the message ciphertext contained in it.\n            let message_ciphertext = array::subbvec(pending_tagged_log.log, 1);\n\n            process_message_ciphertext(\n                contract_address,\n                compute_note_hash,\n                compute_note_nullifier,\n                process_custom_message,\n                message_ciphertext,\n                pending_tagged_log.context,\n                scope,\n            );\n        }\n    });\n\n    if offchain_inbox_sync.is_some() {\n        let msgs = offchain_inbox_sync.unwrap()(contract_address, scope);\n        msgs.for_each(|_i, msg: OffchainMessageWithTx| {\n            process_message_ciphertext(\n                contract_address,\n                compute_note_hash,\n                compute_note_nullifier,\n                process_custom_message,\n                msg.message_ciphertext,\n                msg.resolved_tx,\n                scope,\n            );\n        });\n    }\n\n    // Then we process all pending partial notes, regardless of whether they were found in the current or previous\n    // executions.\n    partial_notes::sync(\n        contract_address,\n        compute_note_hash,\n        compute_note_nullifier,\n        scope,\n    );\n\n    // Finally we validate all notes and events that were found as part of the previous processes, resulting in them\n    // being added to PXE's database and retrievable via oracles (get_notes) and our TS API (PXE::getPrivateEvents).\n    validate_and_store_enqueued_notes_and_events(scope);\n}\n\nmod test {\n    use crate::ephemeral::EphemeralArray;\n    use crate::messages::{\n        delivery::handshake::HandshakePage,\n        discovery::{CustomMessageHandler, do_sync_state},\n        logs::note::MAX_NOTE_PACKED_LEN,\n        processing::{offchain::OffchainInboxSync, pending_tagged_log::PendingTaggedLog},\n    };\n    use crate::protocol::{address::AztecAddress, traits::Serialize};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use std::test::OracleMock;\n\n    #[test]\n    unconstrained fn do_sync_state_does_not_panic_on_empty_logs() {\n        let mut env = TestEnvironment::new();\n        let scope = env.create_light_account();\n\n        let contract_address = AztecAddress { inner: 0xdeadbeef };\n\n        env.utility_context_at(contract_address, |_| {\n            // get_handshake_secrets calls the HandshakeRegistry during sync; return an empty page so\n            // no tagging secrets are produced.\n            let empty_page = HandshakePage { items: BoundedVec::new(), total_count: 0 };\n            let _ = OracleMock::mock(\"aztec_utl_callUtilityFunction\").returns(empty_page.serialize());\n\n            // Mock the oracle call to return a known base slot, then populate an ephemeral\n            // array at that slot so do_sync_state processes a non-empty log list.\n            let base_slot = 42;\n            let mock = std::test::OracleMock::mock(\"aztec_utl_getPendingTaggedLogsV2\");\n            let _ = mock.returns(base_slot);\n\n            let logs: EphemeralArray<PendingTaggedLog> = EphemeralArray::at(base_slot);\n            logs.push(PendingTaggedLog { log: BoundedVec::new(), context: std::mem::zeroed() });\n            assert_eq(logs.len(), 1);\n\n            let no_handler: Option<CustomMessageHandler> = Option::none();\n            let no_inbox_sync: Option<OffchainInboxSync> = Option::none();\n            do_sync_state(\n                contract_address,\n                dummy_compute_note_hash,\n                dummy_compute_note_nullifier,\n                no_handler,\n                no_inbox_sync,\n                scope,\n            );\n\n            // Guards against the mocked oracle name going stale: if sync stops calling it, the crafted empty log\n            // above is never consumed and the test silently stops covering the empty-payload path.\n            assert_eq(mock.times_called(), 1);\n        });\n    }\n\n    unconstrained fn dummy_compute_note_hash(\n        _packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        _owner: AztecAddress,\n        _storage_slot: Field,\n        _note_type_id: Field,\n        _contract_address: AztecAddress,\n        _randomness: Field,\n    ) -> Option<Field> {\n        Option::none()\n    }\n\n    unconstrained fn dummy_compute_note_nullifier(\n        _unique_note_hash: Field,\n        _packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        _owner: AztecAddress,\n        _storage_slot: Field,\n        _note_type_id: Field,\n        _contract_address: AztecAddress,\n        _randomness: Field,\n    ) -> Option<Field> {\n        Option::none()\n    }\n}\n"
    },
    "141": {
      "function_locations": [
        {
          "name": "attempt_note_nonce_discovery",
          "start": 1866
        },
        {
          "name": "bvec_filter",
          "start": 7210
        },
        {
          "name": "test::compute_note_hash",
          "start": 8458
        },
        {
          "name": "test::compute_note_nullifier",
          "start": 9107
        },
        {
          "name": "test::no_note_hashes",
          "start": 9764
        },
        {
          "name": "test::failed_hash_computation_is_ignored",
          "start": 10362
        },
        {
          "name": "test::failed_nullifier_computation_is_ignored",
          "start": 10959
        },
        {
          "name": "test::construct_note",
          "start": 12052
        },
        {
          "name": "test::single_note",
          "start": 13085
        },
        {
          "name": "test::multiple_notes_same_preimage",
          "start": 14249
        },
        {
          "name": "test::single_note_misaligned_nonce",
          "start": 16275
        },
        {
          "name": "test::single_note_nonce_with_index_past_note_hashes_in_tx",
          "start": 17515
        },
        {
          "name": "test::duplicate_unique_note_hashes",
          "start": 18937
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/discovery/nonce_discovery.nr",
      "source": "use crate::messages::{discovery::{ComputeNoteHash, ComputeNoteNullifier}, logs::note::MAX_NOTE_PACKED_LEN};\n\nuse crate::logging::{aztecnr_debug_log_format, aztecnr_warn_log_format};\nuse crate::protocol::{\n    address::AztecAddress,\n    constants::MAX_NOTE_HASHES_PER_TX,\n    hash::{compute_note_hash_nonce, compute_siloed_note_hash, compute_unique_note_hash},\n    traits::ToField,\n};\n\n/// A struct with the discovered information of a complete note, required for delivery to PXE. Note that this is *not*\n/// the complete note information, since it does not include content, storage slot, etc.\npub(crate) struct DiscoveredNoteInfo {\n    pub(crate) note_nonce: Field,\n    pub(crate) note_hash: Field,\n    pub(crate) inner_nullifier: Field,\n}\n\n/// Searches for note nonces that will result in a note that was emitted in a transaction. While rare, it is possible\n/// for multiple notes to have the exact same packed content and storage slot but different nonces, resulting in\n/// different unique note hashes. Because of this this function returns a *vector* of discovered notes, though in most\n/// cases it will contain a single element.\n///\n/// Due to how nonces are computed, this function requires knowledge of the transaction in which the note was created,\n/// more specifically the list of all unique note hashes in it plus the value of its first nullifier.\npub(crate) unconstrained fn attempt_note_nonce_discovery(\n    unique_note_hashes_in_tx: BoundedVec<Field, MAX_NOTE_HASHES_PER_TX>,\n    first_nullifier_in_tx: Field,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    contract_address: AztecAddress,\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n    note_type_id: Field,\n    packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n) -> BoundedVec<DiscoveredNoteInfo, MAX_NOTE_HASHES_PER_TX> {\n    let discovered_notes = &mut BoundedVec::new();\n\n    aztecnr_debug_log_format!(\n        \"Attempting nonce discovery on {0} potential notes on contract {1} for storage slot {2}\",\n    )(\n        [unique_note_hashes_in_tx.len() as Field, contract_address.to_field(), storage_slot],\n    );\n\n    let maybe_note_hash = compute_note_hash(\n        packed_note,\n        owner,\n        storage_slot,\n        note_type_id,\n        contract_address,\n        randomness,\n    );\n\n    if maybe_note_hash.is_none() {\n        aztecnr_warn_log_format!(\n            \"Unable to compute note hash for note of id {0} with packed length {1}, skipping nonce discovery\",\n        )(\n            [note_type_id, packed_note.len() as Field],\n        );\n    } else {\n        let note_hash = maybe_note_hash.unwrap();\n        let siloed_note_hash = compute_siloed_note_hash(contract_address, note_hash);\n\n        // We need to find nonces (typically just one) that result in the siloed note hash that being uniqued into one\n        // of the transaction's effects.\n        // The nonce is meant to be derived from the index of the note hash in the transaction effects array. However,\n        // due to an issue in the kernels the nonce might actually use any of the possible note hash indices - not\n        // necessarily the one that corresponds to the note hash. Hence, we need to try them all.\n        for i in 0..MAX_NOTE_HASHES_PER_TX {\n            let nonce_for_i = compute_note_hash_nonce(first_nullifier_in_tx, i);\n            let unique_note_hash_for_i = compute_unique_note_hash(nonce_for_i, siloed_note_hash);\n\n            let matching_notes = bvec_filter(\n                unique_note_hashes_in_tx,\n                |unique_note_hash_in_tx| unique_note_hash_in_tx == unique_note_hash_for_i,\n            );\n            if matching_notes.len() > 1 {\n                let identical_note_hashes = matching_notes.len();\n                // Note that we don't actually check that the note hashes array contains unique values, only that the\n                // note we found is unique. We don't expect for this to ever happen (it'd indicate a malicious node or\n                // PXE, which are both assumed to be cooperative) so testing for it just in case is unnecessary, but we\n                // _do_ need to handle it if we find a duplicate.\n                panic(\n                    f\"Received {identical_note_hashes} identical note hashes for a transaction - these should all be unique\",\n                )\n            } else if matching_notes.len() == 1 {\n                let maybe_inner_nullifier_for_i = compute_note_nullifier(\n                    unique_note_hash_for_i,\n                    packed_note,\n                    owner,\n                    storage_slot,\n                    note_type_id,\n                    contract_address,\n                    randomness,\n                );\n\n                if maybe_inner_nullifier_for_i.is_none() {\n                    // TODO: down the line we want to be able to store notes for which we don't know their nullifier,\n                    // e.g. notes that belong to someone that is not us (and for which we therefore don't know their\n                    // associated app-siloed nullifer hiding secret key).\n                    // https://linear.app/aztec-labs/issue/F-265/store-external-notes\n                    aztecnr_warn_log_format!(\n                        \"Unable to compute nullifier of unique note {0} with note type id {1} and owner {2}, skipping PXE insertion\",\n                    )(\n                        [unique_note_hash_for_i, note_type_id, owner.to_field()],\n                    );\n                } else {\n                    // Note that while we did check that the note hash is the preimage of a unique note hash, we\n                    // perform no validations on the nullifier - we fundamentally cannot, since only the application\n                    // knows how to compute nullifiers. We simply trust it to have provided the correct one: if it\n                    // hasn't, then PXE may fail to realize that a given note has been nullified already, and calls to\n                    // the application could result in invalid transactions (with duplicate nullifiers). This is not a\n                    // concern because an application already has more direct means of making a call to it fail the\n                    // transaction.\n                    discovered_notes.push(\n                        DiscoveredNoteInfo {\n                            note_nonce: nonce_for_i,\n                            note_hash,\n                            inner_nullifier: maybe_inner_nullifier_for_i.unwrap(),\n                        },\n                    );\n                }\n                // We don't exit the loop - it is possible (though rare) for the exact same note content to be present\n                // multiple times in the same transaction with different nonces. This typically doesn't happen due to\n                // notes containing random values in order to hide their contents.\n            }\n        }\n    }\n\n    *discovered_notes\n}\n\n// There is no BoundedVec::filter in the stdlib, so we use this until that is implemented.\nunconstrained fn bvec_filter<Env, T, let MAX_LEN: u32>(\n    bvec: BoundedVec<T, MAX_LEN>,\n    filter: fn[Env](T) -> bool,\n) -> BoundedVec<T, MAX_LEN> {\n    let filtered = &mut BoundedVec::new();\n\n    bvec.for_each(|value| {\n        if filter(value) {\n            filtered.push(value);\n        }\n    });\n\n    *filtered\n}\n\nmod test {\n    use crate::{\n        messages::logs::note::MAX_NOTE_PACKED_LEN,\n        note::{\n            note_interface::{NoteHash, NoteType},\n            note_metadata::SettledNoteMetadata,\n            utils::compute_note_hash_for_nullification,\n        },\n        oracle::random::random,\n        test::mocks::mock_note::MockNote,\n        utils::array,\n    };\n\n    use crate::protocol::{\n        address::AztecAddress,\n        hash::{compute_note_hash_nonce, compute_siloed_note_hash, compute_unique_note_hash},\n        traits::{FromField, Packable},\n    };\n\n    use super::attempt_note_nonce_discovery;\n\n    // This implementation could be simpler, but this serves as a nice example of the expected flow in a real\n    // implementation, and as a sanity check that the interface is sufficient.\n\n    unconstrained fn compute_note_hash(\n        packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        owner: AztecAddress,\n        storage_slot: Field,\n        note_type_id: Field,\n        _contract_address: AztecAddress,\n        randomness: Field,\n    ) -> Option<Field> {\n        if (note_type_id == MockNote::get_id()) & (packed_note.len() == <MockNote as Packable>::N) {\n            let note = MockNote::unpack(array::subarray(packed_note.storage(), 0));\n            Option::some(note.compute_note_hash(owner, storage_slot, randomness))\n        } else {\n            Option::none()\n        }\n    }\n\n    unconstrained fn compute_note_nullifier(\n        unique_note_hash: Field,\n        packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        owner: AztecAddress,\n        _storage_slot: Field,\n        note_type_id: Field,\n        _contract_address: AztecAddress,\n        _randomness: Field,\n    ) -> Option<Field> {\n        if (note_type_id == MockNote::get_id()) & (packed_note.len() == <MockNote as Packable>::N) {\n            let note = MockNote::unpack(array::subarray(packed_note.storage(), 0));\n            note.compute_nullifier_unconstrained(owner, unique_note_hash)\n        } else {\n            Option::none()\n        }\n    }\n\n    global VALUE: Field = 7;\n    global FIRST_NULLIFIER_IN_TX: Field = 47;\n    global CONTRACT_ADDRESS: AztecAddress = AztecAddress::from_field(13);\n    global OWNER: AztecAddress = AztecAddress::from_field(14);\n    global STORAGE_SLOT: Field = 99;\n    global RANDOMNESS: Field = 99;\n\n    #[test]\n    unconstrained fn no_note_hashes() {\n        let unique_note_hashes_in_tx = BoundedVec::new();\n        let packed_note = BoundedVec::new();\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            packed_note,\n        );\n\n        assert_eq(discovered_notes.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn failed_hash_computation_is_ignored() {\n        let unique_note_hashes_in_tx = BoundedVec::from_array([random()]);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            |_, _, _, _, _, _| Option::none(),\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::new(),\n        );\n\n        assert_eq(discovered_notes.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn failed_nullifier_computation_is_ignored() {\n        let note_index_in_tx = 2;\n        let note_and_data = construct_note(VALUE, note_index_in_tx);\n\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n        unique_note_hashes_in_tx.set(note_index_in_tx, note_and_data.unique_note_hash);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            |_, _, _, _, _, _, _| Option::none(),\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(note_and_data.note.pack()),\n        );\n\n        assert_eq(discovered_notes.len(), 0);\n    }\n\n    struct NoteAndData {\n        note: MockNote,\n        note_nonce: Field,\n        note_hash: Field,\n        unique_note_hash: Field,\n        inner_nullifier: Field,\n    }\n\n    unconstrained fn construct_note(value: Field, note_index_in_tx: u32) -> NoteAndData {\n        let note_nonce = compute_note_hash_nonce(FIRST_NULLIFIER_IN_TX, note_index_in_tx);\n\n        let hinted_note = MockNote::new(value)\n            .contract_address(CONTRACT_ADDRESS)\n            .owner(OWNER)\n            .randomness(RANDOMNESS)\n            .storage_slot(STORAGE_SLOT)\n            .note_metadata(SettledNoteMetadata::new(note_nonce).into())\n            .build_hinted_note();\n        let note = hinted_note.note;\n\n        let note_hash = note.compute_note_hash(OWNER, STORAGE_SLOT, RANDOMNESS);\n        let unique_note_hash = compute_unique_note_hash(\n            note_nonce,\n            compute_siloed_note_hash(CONTRACT_ADDRESS, note_hash),\n        );\n        let inner_nullifier = note\n            .compute_nullifier_unconstrained(OWNER, compute_note_hash_for_nullification(hinted_note))\n            .expect(f\"Could not compute nullifier for note owned by {OWNER}\");\n\n        NoteAndData { note, note_nonce, note_hash, unique_note_hash, inner_nullifier }\n    }\n\n    #[test]\n    unconstrained fn single_note() {\n        let note_index_in_tx = 2;\n        let note_and_data = construct_note(VALUE, note_index_in_tx);\n\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n        unique_note_hashes_in_tx.set(note_index_in_tx, note_and_data.unique_note_hash);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(note_and_data.note.pack()),\n        );\n\n        assert_eq(discovered_notes.len(), 1);\n        let discovered_note = discovered_notes.get(0);\n\n        assert_eq(discovered_note.note_nonce, note_and_data.note_nonce);\n        assert_eq(discovered_note.note_hash, note_and_data.note_hash);\n        assert_eq(discovered_note.inner_nullifier, note_and_data.inner_nullifier);\n    }\n\n    #[test]\n    unconstrained fn multiple_notes_same_preimage() {\n        let first_note_index_in_tx = 3;\n        let first_note_and_data = construct_note(VALUE, first_note_index_in_tx);\n\n        let second_note_index_in_tx = 5;\n        let second_note_and_data = construct_note(VALUE, second_note_index_in_tx);\n\n        // Both notes have the same preimage (and therefore packed representation), so both should be found in the same\n        // call.\n        assert_eq(first_note_and_data.note, second_note_and_data.note);\n        let packed_note = first_note_and_data.note.pack();\n\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n        unique_note_hashes_in_tx.set(first_note_index_in_tx, first_note_and_data.unique_note_hash);\n        unique_note_hashes_in_tx.set(second_note_index_in_tx, second_note_and_data.unique_note_hash);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(packed_note),\n        );\n\n        assert_eq(discovered_notes.len(), 2);\n\n        assert(discovered_notes.any(|discovered_note| {\n            (discovered_note.note_nonce == first_note_and_data.note_nonce)\n                & (discovered_note.note_hash == first_note_and_data.note_hash)\n                & (discovered_note.inner_nullifier == first_note_and_data.inner_nullifier)\n        }));\n\n        assert(discovered_notes.any(|discovered_note| {\n            (discovered_note.note_nonce == second_note_and_data.note_nonce)\n                & (discovered_note.note_hash == second_note_and_data.note_hash)\n                & (discovered_note.inner_nullifier == second_note_and_data.inner_nullifier)\n        }));\n    }\n\n    #[test]\n    unconstrained fn single_note_misaligned_nonce() {\n        let note_index_in_tx = 2;\n        let note_and_data = construct_note(VALUE, note_index_in_tx);\n\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n\n        // The note is not at the correct index\n        unique_note_hashes_in_tx.set(note_index_in_tx + 1, note_and_data.unique_note_hash);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(note_and_data.note.pack()),\n        );\n\n        assert_eq(discovered_notes.len(), 1);\n        let discovered_note = discovered_notes.get(0);\n\n        assert_eq(discovered_note.note_nonce, note_and_data.note_nonce);\n        assert_eq(discovered_note.note_hash, note_and_data.note_hash);\n        assert_eq(discovered_note.inner_nullifier, note_and_data.inner_nullifier);\n    }\n\n    #[test]\n    unconstrained fn single_note_nonce_with_index_past_note_hashes_in_tx() {\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n\n        // The nonce is computed with an index that does not exist in the tx\n        let note_index_in_tx = unique_note_hashes_in_tx.len() + 5;\n        let note_and_data = construct_note(VALUE, note_index_in_tx);\n\n        // The note is inserted at an arbitrary index - its true index is out of the array's bounds\n        unique_note_hashes_in_tx.set(2, note_and_data.unique_note_hash);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(note_and_data.note.pack()),\n        );\n\n        assert_eq(discovered_notes.len(), 1);\n        let discovered_note = discovered_notes.get(0);\n\n        assert_eq(discovered_note.note_nonce, note_and_data.note_nonce);\n        assert_eq(discovered_note.note_hash, note_and_data.note_hash);\n        assert_eq(discovered_note.inner_nullifier, note_and_data.inner_nullifier);\n    }\n\n    #[test(should_fail_with = \"identical note hashes for a transaction\")]\n    unconstrained fn duplicate_unique_note_hashes() {\n        let note_index_in_tx = 2;\n        let note_and_data = construct_note(VALUE, note_index_in_tx);\n\n        let mut unique_note_hashes_in_tx = BoundedVec::from_array([\n            random(), random(), random(), random(), random(), random(), random(),\n        ]);\n\n        // The same unique note hash is present in two indices in the array, which is not allowed. Note that we don't\n        // test all note hashes for uniqueness, only those that we actually find.\n        unique_note_hashes_in_tx.set(note_index_in_tx, note_and_data.unique_note_hash);\n        unique_note_hashes_in_tx.set(note_index_in_tx + 1, note_and_data.unique_note_hash);\n\n        let _ = attempt_note_nonce_discovery(\n            unique_note_hashes_in_tx,\n            FIRST_NULLIFIER_IN_TX,\n            compute_note_hash,\n            compute_note_nullifier,\n            CONTRACT_ADDRESS,\n            OWNER,\n            STORAGE_SLOT,\n            RANDOMNESS,\n            MockNote::get_id(),\n            BoundedVec::from_array(note_and_data.note.pack()),\n        );\n    }\n}\n"
    },
    "142": {
      "function_locations": [
        {
          "name": "process_private_event_msg",
          "start": 547
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/discovery/private_events.nr",
      "source": "use crate::{\n    event::event_interface::compute_private_serialized_event_commitment,\n    logging::aztecnr_warn_log_format,\n    messages::{\n        encoding::MAX_MESSAGE_CONTENT_LEN, logs::event::decode_private_event_message,\n        processing::enqueue_event_for_validation,\n    },\n};\nuse crate::protocol::{address::AztecAddress, traits::ToField};\n\npub(crate) unconstrained fn process_private_event_msg(\n    contract_address: AztecAddress,\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n    tx_hash: Field,\n) {\n    let decoded = decode_private_event_message(msg_metadata, msg_content);\n\n    if decoded.is_some() {\n        let (event_type_id, randomness, serialized_event) = decoded.unwrap();\n\n        let event_commitment =\n            compute_private_serialized_event_commitment(serialized_event, randomness, event_type_id.to_field());\n\n        enqueue_event_for_validation(\n            contract_address,\n            event_type_id,\n            randomness,\n            serialized_event,\n            event_commitment,\n            tx_hash,\n        );\n    } else {\n        aztecnr_warn_log_format!(\n            \"Could not decode private event message from tx {0}, ignoring\",\n        )(\n            [tx_hash],\n        );\n    }\n}\n"
    },
    "143": {
      "function_locations": [
        {
          "name": "process_private_note_msg",
          "start": 2292
        },
        {
          "name": "attempt_note_discovery",
          "start": 3612
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/discovery/private_notes.nr",
      "source": "use crate::{\n    logging::{aztecnr_debug_log_format, aztecnr_warn_log_format},\n    messages::{\n        discovery::{ComputeNoteHash, ComputeNoteNullifier, nonce_discovery::attempt_note_nonce_discovery},\n        encoding::MAX_MESSAGE_CONTENT_LEN,\n        logs::note::{decode_private_note_message, MAX_NOTE_PACKED_LEN},\n        processing::enqueue_note_for_validation,\n    },\n    protocol::{address::AztecAddress, constants::MAX_NOTE_HASHES_PER_TX, traits::ToField},\n};\n\n/// Processes a private note message, attempting to discover and enqueue any notes it contains.\n///\n/// For each note recovered from the message whose computed note hash matches a unique note hash in the transaction,\n/// a [`NoteValidationRequest`](crate::messages::processing::NoteValidationRequest) is pushed onto the ephemeral array\n/// at `NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT` via\n/// [`enqueue_note_for_validation`](crate::messages::processing::enqueue_note_for_validation). PXE later drains this\n/// array during `validate_and_store_enqueued_notes_and_events`, after which the notes are retrievable via `get_notes`.\n///\n/// Messages that fail to decode, or whose computed note hash matches nothing in the transaction, are discarded\n/// (with a debug or warning log respectively) and produce no validation requests. Decode failures are not treated\n/// as errors since messages may originate from malicious senders and we don't want them to be able to brick message\n/// processing.\n///\n/// ## Use Cases\n///\n/// This function is invoked automatically by aztec-nr when handling messages with the built-in private note type id,\n/// so contracts do not normally need to call it directly. It is exposed for use by custom message handlers (see\n/// [`CustomMessageHandler`](crate::messages::discovery::CustomMessageHandler)) that might want to use the standard\n/// note message processing pipeline while extending it with custom logic.\npub unconstrained fn process_private_note_msg(\n    contract_address: AztecAddress,\n    tx_hash: Field,\n    unique_note_hashes_in_tx: BoundedVec<Field, MAX_NOTE_HASHES_PER_TX>,\n    first_nullifier_in_tx: Field,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n) {\n    let decoded = decode_private_note_message(msg_metadata, msg_content);\n\n    if decoded.is_some() {\n        let (note_type_id, owner, storage_slot, randomness, packed_note) = decoded.unwrap();\n\n        attempt_note_discovery(\n            contract_address,\n            tx_hash,\n            unique_note_hashes_in_tx,\n            first_nullifier_in_tx,\n            compute_note_hash,\n            compute_note_nullifier,\n            owner,\n            storage_slot,\n            randomness,\n            note_type_id,\n            packed_note,\n        );\n    } else {\n        aztecnr_warn_log_format!(\n            \"Could not decode private note message from tx {0}, ignoring\",\n        )(\n            [tx_hash],\n        );\n    }\n}\n\n/// Attempts discovery of a note given information about its contents and the transaction in which it is suspected the\n/// note was created.\nunconstrained fn attempt_note_discovery(\n    contract_address: AztecAddress,\n    tx_hash: Field,\n    unique_note_hashes_in_tx: BoundedVec<Field, MAX_NOTE_HASHES_PER_TX>,\n    first_nullifier_in_tx: Field,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n    note_type_id: Field,\n    packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n) {\n    let discovered_notes = attempt_note_nonce_discovery(\n        unique_note_hashes_in_tx,\n        first_nullifier_in_tx,\n        compute_note_hash,\n        compute_note_nullifier,\n        contract_address,\n        owner,\n        storage_slot,\n        randomness,\n        note_type_id,\n        packed_note,\n    );\n\n    if discovered_notes.len() == 0 {\n        // A private note message that results in no discovered notes means none of the computed note hashes matched\n        // any unique note hash in the transaction. This could indicate a malformed or malicious message (e.g. a sender\n        // providing bogus note content).\n        aztecnr_warn_log_format!(\n            \"Discarding private note message from tx {0} for contract {1}: no matching note hash found in the tx\",\n        )(\n            [tx_hash, contract_address.to_field()],\n        );\n    } else {\n        aztecnr_debug_log_format!(\n            \"Discovered {0} notes from a private message for contract {1}\",\n        )(\n            [discovered_notes.len() as Field, contract_address.to_field()],\n        );\n    }\n\n    discovered_notes.for_each(|discovered_note| {\n        enqueue_note_for_validation(\n            contract_address,\n            owner,\n            storage_slot,\n            randomness,\n            discovered_note.note_nonce,\n            packed_note,\n            discovered_note.note_hash,\n            discovered_note.inner_nullifier,\n            tx_hash,\n        );\n    });\n}\n"
    },
    "144": {
      "function_locations": [
        {
          "name": "process_message_ciphertext",
          "start": 1924
        },
        {
          "name": "process_message_plaintext",
          "start": 2851
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/discovery/process_message.nr",
      "source": "use crate::messages::{\n    discovery::{\n        ComputeNoteHash, ComputeNoteNullifier, CustomMessageHandler, private_events::process_private_event_msg,\n        private_notes::process_private_note_msg,\n    },\n    encoding::{decode_message, MESSAGE_CIPHERTEXT_LEN, MESSAGE_PLAINTEXT_LEN},\n    encryption::{aes128::AES128, message_encryption::MessageEncryption},\n    msg_type::{\n        MIN_CUSTOM_MSG_TYPE_ID, PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID, PRIVATE_EVENT_MSG_TYPE_ID, PRIVATE_NOTE_MSG_TYPE_ID,\n    },\n    processing::ResolvedTx,\n};\n\nuse crate::logging::{aztecnr_debug_log, aztecnr_warn_log_format};\nuse crate::partial_notes::process_partial_note_private_msg;\nuse crate::protocol::address::AztecAddress;\n\n/// Processes a message that can contain notes, partial notes, or events.\n///\n/// Notes result in nonce discovery being performed prior to delivery, which requires knowledge of the transaction hash\n/// in which the notes would've been created (typically the same transaction in which the log was emitted), along with\n/// the list of unique note hashes in said transaction and the `compute_note_hash` and `compute_note_nullifier`\n/// functions. Once discovered, the notes are enqueued for validation.\n///\n/// Partial notes result in a pending partial note entry being stored in a PXE capsule, which will later be retrieved\n/// to search for the note's completion public log.\n///\n/// Events are processed by computing an event commitment from the serialized event data and its randomness field, then\n/// enqueueing the event data and commitment for validation.\npub unconstrained fn process_message_ciphertext(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    process_custom_message: Option<CustomMessageHandler>,\n    message_ciphertext: BoundedVec<Field, MESSAGE_CIPHERTEXT_LEN>,\n    resolved_tx: ResolvedTx,\n    recipient: AztecAddress,\n) {\n    let message_plaintext_option = AES128::decrypt(message_ciphertext, recipient, contract_address);\n\n    if message_plaintext_option.is_some() {\n        process_message_plaintext(\n            contract_address,\n            compute_note_hash,\n            compute_note_nullifier,\n            process_custom_message,\n            message_plaintext_option.unwrap(),\n            resolved_tx,\n            recipient,\n        );\n    } else {\n        aztecnr_warn_log_format!(\"Could not decrypt message ciphertext from tx {0}, ignoring\")([resolved_tx.tx_hash]);\n    }\n}\n\npub(crate) unconstrained fn process_message_plaintext(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    process_custom_message: Option<CustomMessageHandler>,\n    message_plaintext: BoundedVec<Field, MESSAGE_PLAINTEXT_LEN>,\n    resolved_tx: ResolvedTx,\n    recipient: AztecAddress,\n) {\n    // The first thing to do after decrypting the message is to determine what type of message we're processing. We\n    // have 3 message types: private notes, partial notes and events.\n\n    // We decode the message to obtain the message type id, metadata and content.\n    let decoded = decode_message(message_plaintext);\n\n    if decoded.is_some() {\n        let (msg_type_id, msg_metadata, msg_content) = decoded.unwrap();\n\n        if msg_type_id == PRIVATE_NOTE_MSG_TYPE_ID {\n            aztecnr_debug_log!(\"Processing private note msg\");\n\n            process_private_note_msg(\n                contract_address,\n                resolved_tx.tx_hash,\n                resolved_tx.unique_note_hashes_in_tx,\n                resolved_tx.first_nullifier_in_tx,\n                compute_note_hash,\n                compute_note_nullifier,\n                msg_metadata,\n                msg_content,\n            );\n        } else if msg_type_id == PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID {\n            aztecnr_debug_log!(\"Processing partial note private msg\");\n\n            process_partial_note_private_msg(\n                contract_address,\n                msg_metadata,\n                msg_content,\n                resolved_tx,\n                recipient,\n            );\n        } else if msg_type_id == PRIVATE_EVENT_MSG_TYPE_ID {\n            aztecnr_debug_log!(\"Processing private event msg\");\n\n            process_private_event_msg(\n                contract_address,\n                msg_metadata,\n                msg_content,\n                resolved_tx.tx_hash,\n            );\n        } else if msg_type_id < MIN_CUSTOM_MSG_TYPE_ID {\n            // The message type ID falls in the range reserved for aztec.nr built-in types but wasn't matched above.\n            // This most likely means the message is malformed or a custom message was incorrectly assigned a reserved\n            // ID. Custom message types must use IDs allocated via `custom_msg_type_id`.\n            aztecnr_warn_log_format!(\n                \"Message type ID {0} is in the reserved range but is not recognized, ignoring. See https://docs.aztec.network/errors/3\",\n            )(\n                [msg_type_id as Field],\n            );\n        } else if process_custom_message.is_some() {\n            process_custom_message.unwrap()(\n                contract_address,\n                msg_type_id,\n                msg_metadata,\n                msg_content,\n                resolved_tx,\n                recipient,\n            );\n        } else {\n            // A custom message was received but no handler is configured. This likely means the contract emits custom\n            // messages but forgot to register a handler via `AztecConfig::custom_message_handler`.\n            aztecnr_warn_log_format!(\n                \"Received custom message with type id {0} but no handler is configured, ignoring. See https://docs.aztec.network/errors/2\",\n            )(\n                [msg_type_id as Field],\n            );\n        }\n    } else {\n        aztecnr_warn_log_format!(\"Could not decode message plaintext from tx {0}, ignoring\")([resolved_tx.tx_hash]);\n    }\n}\n"
    },
    "145": {
      "function_locations": [
        {
          "name": "encode_message",
          "start": 4136
        },
        {
          "name": "decode_message",
          "start": 5594
        },
        {
          "name": "to_expanded_metadata",
          "start": 6617
        },
        {
          "name": "from_expanded_metadata",
          "start": 7131
        },
        {
          "name": "tests::encode_decode_empty_message",
          "start": 7894
        },
        {
          "name": "tests::encode_decode_short_message",
          "start": 8444
        },
        {
          "name": "tests::encode_decode_full_message",
          "start": 9090
        },
        {
          "name": "tests::to_expanded_metadata_packing",
          "start": 9628
        },
        {
          "name": "tests::from_expanded_metadata_packing",
          "start": 10713
        },
        {
          "name": "tests::to_from_expanded_metadata",
          "start": 11770
        },
        {
          "name": "tests::encode_decode_max_size_message",
          "start": 12151
        },
        {
          "name": "tests::encode_oversized_message_fails",
          "start": 12934
        },
        {
          "name": "tests::decode_empty_message_returns_none",
          "start": 13123
        },
        {
          "name": "tests::decode_message_with_oversized_metadata_returns_none",
          "start": 13280
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/encoding.nr",
      "source": "// TODO(#12750): don't make these values assume we're using AES.\nuse crate::protocol::constants::PRIVATE_LOG_CIPHERTEXT_LEN;\nuse crate::utils::array;\n\n// We reassign to the constant here to communicate the distinction between a log and a message. In Aztec.nr, unlike in\n// protocol circuits, we have a concept of a message that can be emitted either as a private log or as an offchain\n// message. Message is a piece of data that is to be eventually delivered to a contract via the `process_message(...)`\n// utility function function that is injected by the #[aztec] macro. Note: PRIVATE_LOG_CIPHERTEXT_LEN is an amount of\n// fields, so MESSAGE_CIPHERTEXT_LEN is the size of the message in fields.\npub global MESSAGE_CIPHERTEXT_LEN: u32 = PRIVATE_LOG_CIPHERTEXT_LEN;\n\n// TODO(#12750): The global variables below should not be here as they are AES128 specific.\n// The header plaintext is 2 bytes (ciphertext length), padded to the 16-byte AES block size by PKCS#7.\npub(crate) global HEADER_CIPHERTEXT_SIZE_IN_BYTES: u32 = 16;\n// AES PKCS#7 always adds at least one byte of padding. Since each plaintext field is 32 bytes (a multiple of the\n// 16-byte AES block size), a full 16-byte padding block is always appended.\npub(crate) global AES128_PKCS7_EXPANSION_IN_BYTES: u32 = 16;\n\npub global EPH_PK_X_SIZE_IN_FIELDS: u32 = 1;\n\n// (15 - 1) * 31 - 16 - 16 = 402. Note: We multiply by 31 because ciphertext bytes are stored in fields using\n// encode_bytes_as_fields, which packs 31 bytes per field (since a Field is ~254 bits and can safely store 31 whole\n// bytes).\npub(crate) global MESSAGE_PLAINTEXT_SIZE_IN_BYTES: u32 = (MESSAGE_CIPHERTEXT_LEN - EPH_PK_X_SIZE_IN_FIELDS) * 31\n    - HEADER_CIPHERTEXT_SIZE_IN_BYTES\n    - AES128_PKCS7_EXPANSION_IN_BYTES;\n// The plaintext bytes represent Field values that were originally serialized using encode_fields_as_bytes, which\n// converts each Field to 32 bytes. To convert the plaintext bytes back to fields, we divide by 32. 402 / 32 = 12\npub global MESSAGE_PLAINTEXT_LEN: u32 = MESSAGE_PLAINTEXT_SIZE_IN_BYTES / 32;\n\npub global MESSAGE_EXPANDED_METADATA_LEN: u32 = 1;\n\n// The standard message layout is composed of:\n//  - an initial field called the 'expanded metadata'\n//  - an arbitrary number of fields following that called the 'message content'\n//\n// ```\n// message: [ msg_expanded_metadata, ...msg_content ]\n// ```\n//\n// The expanded metadata itself is interpreted as a u128, of which:\n//  - the upper 64 bits are the message type id\n//  - the lower 64 bits are called the 'message metadata'\n//\n// ```\n// msg_expanded_metadata: [  msg_type_id    |  msg_metadata  ]\n//                        <---  64 bits --->|<--- 64 bits --->\n// ```\n//\n// The meaning of the message metadata and message content depend on the value of the message type id. Note that there\n// is nothing special about the message metadata, it _can_ be considered part of the content. It just has a different\n// name to make it distinct from the message content given that it is not a full field.\n\n/// The maximum length of a message's content, i.e. not including the expanded message metadata.\npub global MAX_MESSAGE_CONTENT_LEN: u32 = MESSAGE_PLAINTEXT_LEN - MESSAGE_EXPANDED_METADATA_LEN;\n\n/// Encodes a message following aztec-nr's standard message encoding. This message can later be decoded with\n/// `decode_message` to retrieve the original values.\n///\n/// - The `msg_type` is an identifier that groups types of messages that are all processed the same way, e.g. private\n/// notes or events. Possible values are defined in `aztec::messages::msg_type`.\n/// - The `msg_metadata` and `msg_content` are the values stored in the message, whose meaning depends on the\n/// `msg_type`. The only special thing about `msg_metadata` that separates it from `msg_content` is that it is a u64\n/// instead of a full Field (due to details of how messages are encoded), allowing applications that can fit values\n/// into this smaller variable to achieve higher data efficiency.\npub fn encode_message<let N: u32>(\n    msg_type: u64,\n    msg_metadata: u64,\n    msg_content: [Field; N],\n) -> [Field; (N + MESSAGE_EXPANDED_METADATA_LEN)] {\n    std::static_assert(\n        msg_content.len() <= MAX_MESSAGE_CONTENT_LEN,\n        \"Invalid message content: it must have a length of at most MAX_MESSAGE_CONTENT_LEN\",\n    );\n\n    // If MESSAGE_EXPANDED_METADATA_LEN is changed, causing the assertion below to fail, then the destructuring of the\n    // message encoding below must be updated as well.\n    std::static_assert(\n        MESSAGE_EXPANDED_METADATA_LEN == 1,\n        \"unexpected value for MESSAGE_EXPANDED_METADATA_LEN\",\n    );\n    let mut message: [Field; (N + MESSAGE_EXPANDED_METADATA_LEN)] = std::mem::zeroed();\n\n    message[0] = to_expanded_metadata(msg_type, msg_metadata);\n    for i in 0..msg_content.len() {\n        message[MESSAGE_EXPANDED_METADATA_LEN + i] = msg_content[i];\n    }\n\n    message\n}\n\n/// Decodes a standard aztec-nr message, i.e. one created via `encode_message`, returning the original encoded values.\n///\n/// Returns `None` if the message is empty or has invalid (>128 bit) expanded metadata.\n///\n/// Note that `encode_message` returns a fixed size array while this function takes a `BoundedVec`: this is because\n/// prior to decoding the message type is unknown, and consequentially not known at compile time. If working with\n/// fixed-size messages, consider using `BoundedVec::from_array` to convert them.\npub unconstrained fn decode_message(\n    message: BoundedVec<Field, MESSAGE_PLAINTEXT_LEN>,\n) -> Option<(u64, u64, BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>)> {\n    Option::some(message)\n        .and_then(|message| {\n            // If MESSAGE_EXPANDED_METADATA_LEN is changed, causing the assertion below to fail, then the destructuring\n            // of the\n            // message encoding below must be updated as well.\n            std::static_assert(\n                MESSAGE_EXPANDED_METADATA_LEN == 1,\n                \"unexpected value for MESSAGE_EXPANDED_METADATA_LEN\",\n            );\n            if message.len() < MESSAGE_EXPANDED_METADATA_LEN {\n                Option::none()\n            } else {\n                Option::some(message.get(0))\n            }\n        })\n        .and_then(|msg_expanded_metadata| from_expanded_metadata(msg_expanded_metadata))\n        .map(|(msg_type_id, msg_metadata)| {\n            let msg_content = array::subbvec(message, MESSAGE_EXPANDED_METADATA_LEN);\n            (msg_type_id, msg_metadata, msg_content)\n        })\n}\n\nglobal U64_SHIFT_MULTIPLIER: Field = 2.pow_32(64);\n\nfn to_expanded_metadata(msg_type: u64, msg_metadata: u64) -> Field {\n    // We use multiplication instead of bit shifting operations to shift the type bits as bit shift operations are\n    // expensive in circuits.\n    let type_field: Field = (msg_type as Field) * U64_SHIFT_MULTIPLIER;\n    let msg_metadata_field = msg_metadata as Field;\n\n    type_field + msg_metadata_field\n}\n\nglobal TWO_POW_128: Field = 2.pow_32(128);\n\n/// Unpacks expanded metadata into (msg_type, msg_metadata). Returns `None` if `input >= 2^128`.\nfn from_expanded_metadata(input: Field) -> Option<(u64, u64)> {\n    if input.lt(TWO_POW_128) {\n        let msg_metadata = (input as u64);\n        let msg_type = ((input - (msg_metadata as Field)) / U64_SHIFT_MULTIPLIER) as u64;\n        // Use division instead of bit shift since bit shifts are expensive in circuits\n        Option::some((msg_type, msg_metadata))\n    } else {\n        Option::none()\n    }\n}\n\nmod tests {\n    use crate::utils::array::subarray::subarray;\n    use super::{\n        decode_message, encode_message, from_expanded_metadata, MAX_MESSAGE_CONTENT_LEN, to_expanded_metadata,\n        TWO_POW_128,\n    };\n\n    global U64_MAX: u64 = (2.pow_32(64) - 1) as u64;\n    global U128_MAX: Field = (2.pow_32(128) - 1);\n\n    #[test]\n    unconstrained fn encode_decode_empty_message(msg_type: u64, msg_metadata: u64) {\n        let encoded = encode_message(msg_type, msg_metadata, []);\n        let (decoded_msg_type, decoded_msg_metadata, decoded_msg_content) =\n            decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(decoded_msg_type, msg_type);\n        assert_eq(decoded_msg_metadata, msg_metadata);\n        assert_eq(decoded_msg_content.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn encode_decode_short_message(\n        msg_type: u64,\n        msg_metadata: u64,\n        msg_content: [Field; MAX_MESSAGE_CONTENT_LEN / 2],\n    ) {\n        let encoded = encode_message(msg_type, msg_metadata, msg_content);\n        let (decoded_msg_type, decoded_msg_metadata, decoded_msg_content) =\n            decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(decoded_msg_type, msg_type);\n        assert_eq(decoded_msg_metadata, msg_metadata);\n        assert_eq(decoded_msg_content.len(), msg_content.len());\n        assert_eq(subarray(decoded_msg_content.storage(), 0), msg_content);\n    }\n\n    #[test]\n    unconstrained fn encode_decode_full_message(\n        msg_type: u64,\n        msg_metadata: u64,\n        msg_content: [Field; MAX_MESSAGE_CONTENT_LEN],\n    ) {\n        let encoded = encode_message(msg_type, msg_metadata, msg_content);\n        let (decoded_msg_type, decoded_msg_metadata, decoded_msg_content) =\n            decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(decoded_msg_type, msg_type);\n        assert_eq(decoded_msg_metadata, msg_metadata);\n        assert_eq(decoded_msg_content.len(), msg_content.len());\n        assert_eq(subarray(decoded_msg_content.storage(), 0), msg_content);\n    }\n\n    #[test]\n    unconstrained fn to_expanded_metadata_packing() {\n        // Test case 1: All bits set\n        let packed = to_expanded_metadata(U64_MAX, U64_MAX);\n        let (msg_type, msg_metadata) = from_expanded_metadata(packed).unwrap();\n        assert_eq(msg_type, U64_MAX);\n        assert_eq(msg_metadata, U64_MAX);\n\n        // Test case 2: Only log type bits set\n        let packed = to_expanded_metadata(U64_MAX, 0);\n        let (msg_type, msg_metadata) = from_expanded_metadata(packed).unwrap();\n        assert_eq(msg_type, U64_MAX);\n        assert_eq(msg_metadata, 0);\n\n        // Test case 3: Only msg_metadata bits set\n        let packed = to_expanded_metadata(0, U64_MAX);\n        let (msg_type, msg_metadata) = from_expanded_metadata(packed).unwrap();\n        assert_eq(msg_type, 0);\n        assert_eq(msg_metadata, U64_MAX);\n\n        // Test case 4: No bits set\n        let packed = to_expanded_metadata(0, 0);\n        let (msg_type, msg_metadata) = from_expanded_metadata(packed).unwrap();\n        assert_eq(msg_type, 0);\n        assert_eq(msg_metadata, 0);\n    }\n\n    #[test]\n    unconstrained fn from_expanded_metadata_packing() {\n        // Test case 1: All bits set\n        let input = U128_MAX as Field;\n        let (msg_type, msg_metadata) = from_expanded_metadata(input).unwrap();\n        assert_eq(msg_type, U64_MAX);\n        assert_eq(msg_metadata, U64_MAX);\n\n        // Test case 2: Only log type bits set\n        let input = (U128_MAX - U64_MAX as Field);\n        let (msg_type, msg_metadata) = from_expanded_metadata(input).unwrap();\n        assert_eq(msg_type, U64_MAX);\n        assert_eq(msg_metadata, 0);\n\n        // Test case 3: Only msg_metadata bits set\n        let input = U64_MAX as Field;\n        let (msg_type, msg_metadata) = from_expanded_metadata(input).unwrap();\n        assert_eq(msg_type, 0);\n        assert_eq(msg_metadata, U64_MAX);\n\n        // Test case 4: No bits set\n        let input = 0;\n        let (msg_type, msg_metadata) = from_expanded_metadata(input).unwrap();\n        assert_eq(msg_type, 0);\n        assert_eq(msg_metadata, 0);\n    }\n\n    #[test]\n    unconstrained fn to_from_expanded_metadata(original_msg_type: u64, original_msg_metadata: u64) {\n        let packed = to_expanded_metadata(original_msg_type, original_msg_metadata);\n        let (unpacked_msg_type, unpacked_msg_metadata) = from_expanded_metadata(packed).unwrap();\n\n        assert_eq(original_msg_type, unpacked_msg_type);\n        assert_eq(original_msg_metadata, unpacked_msg_metadata);\n    }\n\n    #[test]\n    unconstrained fn encode_decode_max_size_message() {\n        let msg_type_id: u64 = 42;\n        let msg_metadata: u64 = 99;\n        let mut msg_content = [0; MAX_MESSAGE_CONTENT_LEN];\n        for i in 0..MAX_MESSAGE_CONTENT_LEN {\n            msg_content[i] = i as Field;\n        }\n\n        let encoded = encode_message(msg_type_id, msg_metadata, msg_content);\n        let (decoded_type_id, decoded_metadata, decoded_content) =\n            decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(decoded_type_id, msg_type_id);\n        assert_eq(decoded_metadata, msg_metadata);\n        assert_eq(decoded_content, BoundedVec::from_array(msg_content));\n    }\n\n    #[test(should_fail_with = \"Invalid message content: it must have a length of at most MAX_MESSAGE_CONTENT_LEN\")]\n    fn encode_oversized_message_fails() {\n        let msg_content = [0; MAX_MESSAGE_CONTENT_LEN + 1];\n        let _ = encode_message(0, 0, msg_content);\n    }\n\n    #[test]\n    unconstrained fn decode_empty_message_returns_none() {\n        assert(decode_message(BoundedVec::new()).is_none());\n    }\n\n    #[test]\n    unconstrained fn decode_message_with_oversized_metadata_returns_none() {\n        let message = BoundedVec::from_array([TWO_POW_128]);\n        assert(decode_message(message).is_none());\n    }\n}\n"
    },
    "146": {
      "function_locations": [
        {
          "name": "extract_many_close_to_uniformly_random_256_bits_using_poseidon2",
          "start": 1764
        },
        {
          "name": "derive_aes_symmetric_key_and_iv_from_uniformly_random_256_bits",
          "start": 4783
        },
        {
          "name": "derive_aes_symmetric_key_and_iv_from_shared_secret",
          "start": 5332
        },
        {
          "name": "<impl MessageEncryption for AES128>::encrypt",
          "start": 10365
        },
        {
          "name": "<impl MessageEncryption for AES128>::decrypt",
          "start": 17702
        },
        {
          "name": "encode_header",
          "start": 22154
        },
        {
          "name": "extract_ciphertext_length",
          "start": 22485
        },
        {
          "name": "unmask_field",
          "start": 23070
        },
        {
          "name": "random_address_point",
          "start": 23483
        },
        {
          "name": "test::encrypt_decrypt_deterministic",
          "start": 24685
        },
        {
          "name": "test::encrypt_decrypt_random",
          "start": 27520
        },
        {
          "name": "test::encrypt_to_invalid_address",
          "start": 28366
        },
        {
          "name": "test::pkcs7_padding_always_adds_at_least_one_byte",
          "start": 28816
        },
        {
          "name": "test::encrypt_decrypt_max_size_plaintext",
          "start": 29380
        },
        {
          "name": "test::encrypt_oversized_plaintext",
          "start": 30279
        },
        {
          "name": "test::random_address_point_produces_valid_points",
          "start": 30637
        },
        {
          "name": "test::decrypt_invalid_ephemeral_public_key",
          "start": 31088
        },
        {
          "name": "test::decrypt_returns_none_on_empty_ciphertext",
          "start": 31933
        },
        {
          "name": "test::decrypt_returns_none_on_empty_header",
          "start": 32487
        },
        {
          "name": "test::decrypt_returns_none_on_oversized_ciphertext_length",
          "start": 33413
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/encryption/aes128.nr",
      "source": "use crate::protocol::{address::AztecAddress, public_keys::AddressPoint, traits::ToField};\n\nuse crate::{\n    keys::{\n        ecdh_shared_secret::{\n            compute_app_siloed_shared_secret, derive_ecdh_shared_secret, derive_shared_secret_field_mask,\n            derive_shared_secret_subkey,\n        },\n        ephemeral::generate_positive_ephemeral_key_pair,\n    },\n    logging::aztecnr_warn_log_format,\n    messages::{\n        encoding::{\n            EPH_PK_X_SIZE_IN_FIELDS, HEADER_CIPHERTEXT_SIZE_IN_BYTES, MESSAGE_CIPHERTEXT_LEN, MESSAGE_PLAINTEXT_LEN,\n            MESSAGE_PLAINTEXT_SIZE_IN_BYTES,\n        },\n        encryption::message_encryption::MessageEncryption,\n        logs::arithmetic_generics_utils::{\n            get_arr_of_size__message_bytes__from_PT, get_arr_of_size__message_bytes_padding__from_PT,\n        },\n    },\n    oracle::{aes128_decrypt::try_aes128_decrypt, random::random, shared_secret::get_shared_secret},\n    utils::{\n        array,\n        conversion::{\n            bytes_as_fields::{decode_bytes_from_fields, encode_bytes_as_fields},\n            fields_as_bytes::{encode_fields_as_bytes, try_decode_fields_from_bytes},\n        },\n        point::point_from_x_coord_and_sign,\n    },\n};\n\nuse std::aes128::aes128_encrypt;\n\n/// Computes N close-to-uniformly-random 256 bits from a given app-siloed shared secret.\n///\n/// NEVER re-use the same iv and sym_key. DO NOT call this function more than once with the same s_app.\n///\n/// This function is only known to be safe if s_app is derived from combining a random ephemeral key with an\n/// address point and a contract address. See big comment within the body of the function.\nfn extract_many_close_to_uniformly_random_256_bits_using_poseidon2<let N: u32>(s_app: Field) -> [[u8; 32]; N] {\n    /*\n     * Unsafe because of https://eprint.iacr.org/2010/264.pdf Page 13, Lemma 2 (and the two paragraphs below it).\n    *\n    * If you call this function, you need to be careful and aware of how the arg `s_app` has been derived.\n    *\n    * The paper says that the way you derive aes keys and IVs should be fine with poseidon2 (modelled as a RO),\n    * as long as you _don't_ use Poseidon2 as a PRG to generate the two exponents x & y which multiply to the\n    * shared secret S:\n    *\n    * S = [x*y]*G.\n    *\n    * (Otherwise, you would have to \"key\" poseidon2, i.e. generate a uniformly string K which can be public and\n    * compute Hash(x) as poseidon(K,x)).\n    * In that lemma, k would be 2*254=508, and m would be the number of points on the grumpkin curve (which is\n    * close to r according to the Hasse bound).\n    *\n    * Our shared secret S is [esk * address_sk] * G, and the question is: Can we compute hash(S) using poseidon2\n    * instead of sha256?\n    *\n    * Well, esk is random and not generated with poseidon2, so that's good.\n    * What about address_sk?\n    * Well, address_sk = poseidon2(stuff) + ivsk, so there was some discussion about whether address_sk is\n    * independent of poseidon2. Given that ivsk is random and independent of poseidon2, the address_sk is also\n    * independent of poseidon2.\n    *\n    * Tl;dr: we believe it's safe to hash S = [esk * address_sk] * G using poseidon2, in order to derive a\n    * symmetric key.\n    *\n    * If you're calling this function for a differently-derived `s_app`, be careful.\n    */\n    \n\n    /* The output of this function needs to be 32 random bytes.\n     * A single field won't give us 32 bytes of entropy. So we compute two \"random\" fields, by poseidon-hashing\n    * with two different indices. We then extract the last 16 (big endian) bytes of each \"random\" field.\n    * Note: we use to_be_bytes because it's slightly more efficient. But we have to be careful not to take bytes\n    * from the \"big end\", because the \"big\" byte is not uniformly random over the byte: it only has < 6 bits of\n    * randomness, because it's the big end of a 254-bit field element.\n    */\n\n    let mut all_bytes: [[u8; 32]; N] = std::mem::zeroed();\n    std::static_assert(N < 256, \"N too large\");\n    for k in 0..N {\n        let rand1: Field = derive_shared_secret_subkey(s_app, 2 * k);\n        let rand2: Field = derive_shared_secret_subkey(s_app, 2 * k + 1);\n\n        let rand1_bytes: [u8; 32] = rand1.to_be_bytes();\n        let rand2_bytes: [u8; 32] = rand2.to_be_bytes();\n\n        let mut bytes: [u8; 32] = [0; 32];\n        for i in 0..16 {\n            // We take bytes from the \"little end\" of the be-bytes arrays:\n            let j = 32 - i - 1;\n            bytes[i] = rand1_bytes[j];\n            bytes[16 + i] = rand2_bytes[j];\n        }\n\n        all_bytes[k] = bytes;\n    }\n\n    all_bytes\n}\n\nfn derive_aes_symmetric_key_and_iv_from_uniformly_random_256_bits<let N: u32>(\n    many_random_256_bits: [[u8; 32]; N],\n) -> [([u8; 16], [u8; 16]); N] {\n    // Many (sym_key, iv) pairs:\n    let mut many_pairs: [([u8; 16], [u8; 16]); N] = std::mem::zeroed();\n    for k in 0..N {\n        let random_256_bits = many_random_256_bits[k];\n        let mut sym_key = [0; 16];\n        let mut iv = [0; 16];\n        for i in 0..16 {\n            sym_key[i] = random_256_bits[i];\n            iv[i] = random_256_bits[i + 16];\n        }\n        many_pairs[k] = (sym_key, iv);\n    }\n\n    many_pairs\n}\n\npub fn derive_aes_symmetric_key_and_iv_from_shared_secret<let N: u32>(s_app: Field) -> [([u8; 16], [u8; 16]); N] {\n    let many_random_256_bits: [[u8; 32]; N] = extract_many_close_to_uniformly_random_256_bits_using_poseidon2(s_app);\n\n    derive_aes_symmetric_key_and_iv_from_uniformly_random_256_bits(many_random_256_bits)\n}\n\npub struct AES128 {}\n\nimpl MessageEncryption for AES128 {\n\n    /// AES128-CBC encryption for Aztec protocol messages.\n    ///\n    /// ## Overview\n    ///\n    /// The plaintext is an array of up to `MESSAGE_PLAINTEXT_LEN` (12) fields. The output is always exactly\n    /// `MESSAGE_CIPHERTEXT_LEN` (15) fields, regardless of plaintext size. All output fields except the\n    /// ephemeral public key are uniformly random `Field` values to any observer without knowledge of the\n    /// shared secret, making all encrypted messages indistinguishable by size or content.\n    ///\n    /// ## PKCS#7 Padding\n    ///\n    /// AES operates on 16-byte blocks, so the plaintext must be padded to a multiple of 16. PKCS#7 padding always\n    /// adds at least 1 byte (so the receiver can always detect and strip it), which means:\n    /// - 1 B plaintext  -> 15 B padding -> 16 B total\n    /// - 15 B plaintext ->  1 B padding -> 16 B total\n    /// - 16 B plaintext -> 16 B padding -> 32 B total (full extra block)\n    ///\n    /// In general: if the plaintext is already a multiple of 16, a full 16-byte padding block is appended.\n    ///\n    /// ## Encryption Steps\n    ///\n    /// **1. Body encryption.** The plaintext fields are serialized to bytes (32 bytes per field) and AES-128-CBC\n    /// encrypted. Since 32 is a multiple of 16, PKCS#7 always adds a full 16-byte padding block (see above):\n    ///\n    /// ```text\n    /// +---------------------------------------------+\n    /// |                   body ct                    |\n    /// |            PlaintextLen*32 + 16 B            |\n    /// +-------------------------------+--------------+\n    /// | encrypted plaintext fields    | PKCS#7 (16B) |\n    /// | (serialized at 32 B each)     |              |\n    /// +-------------------------------+--------------+\n    /// ```\n    ///\n    /// **2. Header encryption.** The byte length of `body_ct` is stored as a 2-byte big-endian integer. This 2-byte\n    /// header plaintext is then AES-encrypted; PKCS#7 pads the remaining 14 bytes to fill one 16-byte AES block,\n    /// producing a 16-byte header ciphertext:\n    ///\n    /// ```text\n    /// +---------------------------+\n    /// |         header ct         |\n    /// |            16 B           |\n    /// +--------+------------------+\n    /// | body ct| PKCS#7 (14B)     |\n    /// | length |                  |\n    /// | (2 B)  |                  |\n    /// +--------+------------------+\n    /// ```\n    ///\n    /// ## Wire Format\n    ///\n    /// Messages are transmitted as fields, not bytes. A field is ~254 bits and can safely store 31 whole bytes, so\n    /// we need to pack our byte data into 31-byte chunks. This packing drives the wire format.\n    ///\n    /// **Step 1 -- Assemble bytes.** The ciphertexts are laid out in a byte array, padded with zero bytes to a\n    /// multiple of 31 so it divides evenly into fields:\n    ///\n    /// ```text\n    /// +------------+-------------------------+---------+\n    /// | header ct  |        body ct          | byte pad|\n    /// |   16 B     | PlaintextLen*32 + 16 B  | (zeros) |\n    /// +------------+-------------------------+---------+\n    /// |<-------- padded to a multiple of 31 B -------->|\n    /// ```\n    ///\n    /// **Step 2 -- Pack and mask.** The byte array is split into 31-byte chunks, each stored in one field. A\n    /// Poseidon2-derived mask (see `derive_shared_secret_field_mask`) is added to each so that the resulting\n    /// fields appear as uniformly random `Field` values to any observer without knowledge of the shared secret,\n    /// hiding the fact that the underlying ciphertext consists of 128-bit AES blocks.\n    ///\n    /// **Step 3 -- Assemble ciphertext.** The ephemeral public key x-coordinate is prepended and random field padding\n    /// is appended to fill to 15 fields:\n    ///\n    /// ```text\n    /// +----------+-------------------------+-------------------+\n    /// | eph_pk.x |  masked message fields   | random field pad  |\n    /// |          | (packed 31 B per field)  |  (fills to 15)    |\n    /// +----------+-------------------------+-------------------+\n    /// |<---------- MESSAGE_CIPHERTEXT_LEN = 15 fields -------->|\n    /// ```\n    ///\n    /// ## Key Derivation\n    ///\n    /// The raw ECDH shared secret point is first app-siloed into a scalar `s_app` by hashing with the contract\n    /// address (see\n    /// [`compute_app_siloed_shared_secret`](crate::keys::ecdh_shared_secret::compute_app_siloed_shared_secret)).\n    /// Two (key, IV) pairs are then derived from `s_app` via indexed Poseidon2 hashing: one pair for the body\n    /// ciphertext and one for the header ciphertext.\n    fn encrypt<let PlaintextLen: u32>(\n        plaintext: [Field; PlaintextLen],\n        recipient: AztecAddress,\n        contract_address: AztecAddress,\n    ) -> [Field; MESSAGE_CIPHERTEXT_LEN] {\n        std::static_assert(\n            PlaintextLen <= MESSAGE_PLAINTEXT_LEN,\n            \"Plaintext length exceeds MESSAGE_PLAINTEXT_LEN\",\n        );\n\n        // AES 128 operates on bytes, not fields, so we need to convert the fields to bytes. (This process is then\n        // reversed when processing the message in `process_message_ciphertext`)\n        let plaintext_bytes = encode_fields_as_bytes(plaintext);\n\n        // Derive ECDH shared secret with recipient using a fresh ephemeral keypair.\n        let (eph_sk, eph_pk) = generate_positive_ephemeral_key_pair();\n\n        let raw_shared_secret = derive_ecdh_shared_secret(\n            eph_sk,\n            recipient\n                .to_address_point()\n                .unwrap_or_else(|| {\n                    aztecnr_warn_log_format!(\n                        \"Attempted to encrypt message for an invalid recipient ({0})\",\n                    )(\n                        [recipient.to_field()],\n                    );\n\n                    // Safety: if the recipient is an invalid address, then it is not possible to encrypt a message for\n                    // them because we cannot establish a shared secret. This is never expected to occur during normal\n                    // operation. However, it is technically possible for us to receive an invalid address, and we must\n                    // therefore handle it. We could simply fail, but that'd introduce a potential security issue in\n                    // which an attacker forces a contract to encrypt a message for an invalid address, resulting in an\n                    // impossible transaction - this is sometimes called a 'king of the hill' attack. We choose instead\n                    // to not fail and encrypt the plaintext regardless using the shared secret that results from a\n                    // random valid address. The sender is free to choose this address and hence shared secret, but\n                    // this has no security implications as they already know not only the full plaintext but also the\n                    // ephemeral private key anyway.\n                    unsafe {\n                        random_address_point()\n                    }\n                })\n                .inner,\n        );\n\n        let s_app = compute_app_siloed_shared_secret(raw_shared_secret, contract_address);\n\n        // It is safe to derive AES keys from `s_app` using Poseidon2 because `s_app` was derived from an ECDH shared\n        // secret using an AztecAddress (the recipient). See the block comment in\n        // `extract_many_close_to_uniformly_random_256_bits_using_poseidon2` for more info.\n        let pairs = derive_aes_symmetric_key_and_iv_from_shared_secret::<2>(s_app);\n        let (body_sym_key, body_iv) = pairs[0];\n        let (header_sym_key, header_iv) = pairs[1];\n\n        let ciphertext_bytes = aes128_encrypt(plaintext_bytes, body_iv, body_sym_key);\n\n        // Each plaintext field is 32 bytes (a multiple of the 16-byte AES block\n        // size), so PKCS#7 always appends a full 16-byte padding block:\n        //   |ciphertext| = PlaintextLen*32 + 16 = 16 * (1 + PlaintextLen*32 / 16)\n        std::static_assert(\n            ciphertext_bytes.len() == 16 * (1 + (PlaintextLen * 32) / 16),\n            \"unexpected ciphertext length\",\n        );\n\n        // Encrypt a 2-byte header containing the body ciphertext length.\n        let header_plaintext = encode_header(ciphertext_bytes.len());\n\n        // Note: the aes128_encrypt builtin fn automatically appends bytes to the input, according to pkcs#7; hence why\n        // the output `header_ciphertext_bytes` is 16 bytes larger than the input in this case.\n        let header_ciphertext_bytes = aes128_encrypt(header_plaintext, header_iv, header_sym_key);\n        // Verify expected header ciphertext size at compile time.\n        std::static_assert(\n            header_ciphertext_bytes.len() == HEADER_CIPHERTEXT_SIZE_IN_BYTES,\n            \"unexpected ciphertext header length\",\n        );\n\n        // Assemble the message byte array:\n        //  [header_ct (16B)] [body_ct] [padding to mult of 31]\n        let message_bytes_padding_to_mult_31 = get_arr_of_size__message_bytes_padding__from_PT::<PlaintextLen * 32>();\n\n        let mut message_bytes = get_arr_of_size__message_bytes__from_PT::<PlaintextLen * 32>();\n\n        std::static_assert(\n            message_bytes.len() % 31 == 0,\n            \"Unexpected error: message_bytes.len() should be divisible by 31, by construction.\",\n        );\n\n        let mut offset = 0;\n        for i in 0..header_ciphertext_bytes.len() {\n            message_bytes[offset + i] = header_ciphertext_bytes[i];\n        }\n        offset += header_ciphertext_bytes.len();\n\n        for i in 0..ciphertext_bytes.len() {\n            message_bytes[offset + i] = ciphertext_bytes[i];\n        }\n        offset += ciphertext_bytes.len();\n\n        for i in 0..message_bytes_padding_to_mult_31.len() {\n            message_bytes[offset + i] = message_bytes_padding_to_mult_31[i];\n        }\n        offset += message_bytes_padding_to_mult_31.len();\n\n        // Ideally we would be able to have a static assert where we check that the offset would be such that we've\n        // written to the entire log_bytes array, but we cannot since Noir does not treat the offset as a comptime\n        // value (despite the values that it goes through being known at each stage). We instead check that the\n        // computation used to obtain the offset computes the expected value (which we _can_ do in a static check), and\n        // then add a cheap runtime check to also validate that the offset matches this.\n        std::static_assert(\n            header_ciphertext_bytes.len() + ciphertext_bytes.len() + message_bytes_padding_to_mult_31.len()\n                == message_bytes.len(),\n            \"unexpected message length\",\n        );\n        assert(offset == message_bytes.len(), \"unexpected encrypted message length\");\n\n        // Pack message bytes into fields (31 bytes per field) and prepend eph_pk.x.\n        let message_bytes_as_fields = encode_bytes_as_fields(message_bytes);\n\n        let mut ciphertext: [Field; MESSAGE_CIPHERTEXT_LEN] = [0; MESSAGE_CIPHERTEXT_LEN];\n\n        ciphertext[0] = eph_pk.x;\n\n        // Mask each content field with a Poseidon2-derived value, so that they appear as uniformly random `Field`\n        // values\n        let mut offset = 1;\n        for i in 0..message_bytes_as_fields.len() {\n            let mask = derive_shared_secret_field_mask(s_app, i as u32);\n            ciphertext[offset + i] = message_bytes_as_fields[i] + mask;\n        }\n        offset += message_bytes_as_fields.len();\n\n        // Pad with random fields so that padding is indistinguishable from masked data fields.\n        for i in offset..MESSAGE_CIPHERTEXT_LEN {\n            // Safety: we assume that the sender wants for the message to be private - a malicious one could simply\n            // reveal its contents publicly. It is therefore fine to trust the sender to provide random padding.\n            ciphertext[i] = unsafe { random() };\n        }\n\n        ciphertext\n    }\n\n    unconstrained fn decrypt(\n        ciphertext: BoundedVec<Field, MESSAGE_CIPHERTEXT_LEN>,\n        recipient: AztecAddress,\n        contract_address: AztecAddress,\n    ) -> Option<BoundedVec<Field, MESSAGE_PLAINTEXT_LEN>> {\n        // Extract the ephemeral public key x-coordinate and masked fields, returning None for empty ciphertext.\n        if ciphertext.len() > 0 {\n            let masked_fields: BoundedVec<Field, MESSAGE_CIPHERTEXT_LEN - EPH_PK_X_SIZE_IN_FIELDS> =\n                array::subbvec(ciphertext, EPH_PK_X_SIZE_IN_FIELDS);\n            Option::some((ciphertext.get(0), masked_fields))\n        } else {\n            Option::none()\n        }\n            .and_then(|(eph_pk_x, masked_fields)| {\n                // With the x-coordinate of the ephemeral public key we can reconstruct the point as we know that the\n                // y-coordinate must be positive. This may fail however, as not all x-coordinates are on the curve. In\n                // that case, we simply return `Option::none`. Secret derivation may also fail when the PXE does not\n                // hold the recipient's keys (e.g. when syncing the scope of an address we don't control), in which\n                // case the message is undecryptable and equally skipped.\n                point_from_x_coord_and_sign(eph_pk_x, true)\n                    .and_then(|eph_pk| get_shared_secret(recipient, eph_pk, contract_address))\n                    .and_then(|s_app| {\n                        let unmasked_fields = masked_fields.mapi(|i, field| {\n                            let unmasked = unmask_field(s_app, i, field);\n                            // If we failed to unmask the field, we are dealing with the random padding. We'll ignore it\n                            // later, so we can simply set it to 0\n                            unmasked.unwrap_or(0)\n                        });\n                        let ciphertext_without_eph_pk_x = decode_bytes_from_fields(unmasked_fields);\n\n                        // Derive symmetric keys:\n                        let pairs = derive_aes_symmetric_key_and_iv_from_shared_secret::<2>(s_app);\n                        let (body_sym_key, body_iv) = pairs[0];\n                        let (header_sym_key, header_iv) = pairs[1];\n\n                        // Extract the header ciphertext\n                        let header_start = 0;\n                        let header_ciphertext: [u8; HEADER_CIPHERTEXT_SIZE_IN_BYTES] =\n                            array::subarray(ciphertext_without_eph_pk_x.storage(), header_start);\n                        // We need to convert the array to a BoundedVec because the oracle expects a BoundedVec as it's\n                        // designed to work with messages with unknown length at compile time. This would not be\n                        // necessary here as the header ciphertext length is fixed. But we do it anyway to not have to\n                        // have duplicate oracles.\n                        let header_ciphertext_bvec =\n                            BoundedVec::<u8, HEADER_CIPHERTEXT_SIZE_IN_BYTES>::from_array(header_ciphertext);\n\n                        try_aes128_decrypt(header_ciphertext_bvec, header_iv, header_sym_key)\n                        // Extract ciphertext length from header (2 bytes, big-endian)\n                        .and_then(|header_plaintext| extract_ciphertext_length(header_plaintext))\n                            .filter(|ciphertext_length| ciphertext_length <= MESSAGE_PLAINTEXT_SIZE_IN_BYTES)\n                            .map(|ciphertext_length| {\n                                // Extract and decrypt main ciphertext\n                                let ciphertext_start = header_start + HEADER_CIPHERTEXT_SIZE_IN_BYTES;\n                                let ciphertext_with_padding: [u8; MESSAGE_PLAINTEXT_SIZE_IN_BYTES] =\n                                    array::subarray(ciphertext_without_eph_pk_x.storage(), ciphertext_start);\n                                BoundedVec::from_parts(ciphertext_with_padding, ciphertext_length)\n                            })\n                            // Decrypt main ciphertext and return it\n                            .and_then(|ciphertext| try_aes128_decrypt(ciphertext, body_iv, body_sym_key))\n                            // Convert bytes back to fields (32 bytes per field). Returns None if the actual bytes are\n                            // not valid.\n                            .and_then(|plaintext_bytes| try_decode_fields_from_bytes(plaintext_bytes))\n                    })\n            })\n    }\n}\n\n/// Encodes the body ciphertext length into a 2-byte big-endian header.\nfn encode_header(ciphertext_length: u32) -> [u8; 2] {\n    [(ciphertext_length >> 8) as u8, ciphertext_length as u8]\n}\n\n/// Extracts the body ciphertext length from a decrypted header as a 2-byte big-endian integer.\n///\n/// Returns `Option::none()` if the header has fewer than 2 bytes.\nunconstrained fn extract_ciphertext_length<let N: u32>(header: BoundedVec<u8, N>) -> Option<u32> {\n    if header.len() >= 2 {\n        Option::some(((header.get(0) as u32) << 8) | (header.get(1) as u32))\n    } else {\n        Option::none()\n    }\n}\n\n/// 2^248: upper bound for values that fit in 31 bytes\nglobal TWO_POW_248: Field = 2.pow_32(248);\n\n/// Removes the Poseidon2-derived mask from a ciphertext field. Returns the unmasked value if it fits in 31 bytes\n/// (a content field), or `None` if it doesn't (random padding). Unconstrained to prevent accidental use in\n/// constrained context.\nunconstrained fn unmask_field(s_app: Field, index: u32, masked: Field) -> Option<Field> {\n    let unmasked = masked - derive_shared_secret_field_mask(s_app, index);\n    if unmasked.lt(TWO_POW_248) {\n        Option::some(unmasked)\n    } else {\n        Option::none()\n    }\n}\n\n/// Produces a random valid address point, i.e. one that is on the curve. This is equivalent to calling\n/// [`AztecAddress::to_address_point`] on a random valid address.\nunconstrained fn random_address_point() -> AddressPoint {\n    let mut result = std::mem::zeroed();\n\n    loop {\n        // We simply produce random x coordinates until we find one that is on the curve. About half of the x\n        // coordinates fulfill this condition, so this should only take a few iterations at most.\n        let x_coord = random();\n        let point = point_from_x_coord_and_sign(x_coord, true);\n        if point.is_some() {\n            result = AddressPoint { inner: point.unwrap() };\n            break;\n        }\n    }\n\n    result\n}\n\nmod test {\n    use crate::{\n        ephemeral::EphemeralArray,\n        keys::ecdh_shared_secret::{compute_app_siloed_shared_secret, derive_ecdh_shared_secret},\n        messages::{\n            encoding::{HEADER_CIPHERTEXT_SIZE_IN_BYTES, MESSAGE_PLAINTEXT_LEN, MESSAGE_PLAINTEXT_SIZE_IN_BYTES},\n            encryption::message_encryption::MessageEncryption,\n        },\n        test::helpers::test_environment::TestEnvironment,\n    };\n    use crate::protocol::{address::AztecAddress, traits::FromField};\n    use super::{AES128, encode_header, random_address_point};\n    use std::{embedded_curve_ops::EmbeddedCurveScalar, test::OracleMock};\n\n    #[test]\n    unconstrained fn encrypt_decrypt_deterministic() {\n        let env = TestEnvironment::new();\n\n        // Message decryption requires oracles that are only available during private execution\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let plaintext = [1, 2, 3];\n\n            let recipient = AztecAddress::from_field(\n                0x25afb798ea6d0b8c1618e50fdeafa463059415013d3b7c75d46abf5e242be70c,\n            );\n\n            // Mock random values for deterministic test\n            let eph_sk = 0x1358d15019d4639393d62b97e1588c095957ce74a1c32d6ec7d62fe6705d9538;\n            let _ = OracleMock::mock(\"aztec_misc_getRandomField\").returns(eph_sk).times(1);\n\n            let randomness = 0x0101010101010101010101010101010101010101010101010101010101010101;\n            let _ = OracleMock::mock(\"aztec_misc_getRandomField\").returns(randomness).times(1000000);\n\n            // Encrypt the message\n            let encrypted_message = BoundedVec::from_array(AES128::encrypt(plaintext, recipient, contract_address));\n\n            // Compute the same app-siloed shared secret that the oracle would return\n            let raw_shared_secret = derive_ecdh_shared_secret(\n                EmbeddedCurveScalar::from_field(eph_sk),\n                recipient.to_address_point().unwrap().inner,\n            );\n            let s_app = compute_app_siloed_shared_secret(raw_shared_secret, contract_address);\n\n            // The shared-secrets oracle is batched: it returns a slot pointing at an EphemeralArray\n            // populated with the per-key results. Set up that array with the single expected `s_app`\n            // and mock the oracle to return its slot.\n            let response_slot: Field = 99;\n            let response_array: EphemeralArray<Field> = EphemeralArray::at(response_slot);\n            response_array.push(s_app);\n            let _ = OracleMock::mock(\"aztec_utl_getSharedSecrets\").returns(response_slot);\n\n            // Decrypt the message\n            let decrypted = AES128::decrypt(encrypted_message, recipient, contract_address).unwrap();\n\n            // The decryption function spits out a BoundedVec because it's designed to work with messages with unknown\n            // length at compile time. For this reason we need to convert the original input to a BoundedVec.\n            let plaintext_bvec = BoundedVec::<Field, MESSAGE_PLAINTEXT_LEN>::from_array(plaintext);\n\n            // Verify decryption matches original plaintext\n            assert_eq(decrypted, plaintext_bvec, \"Decrypted bytes should match original plaintext\");\n\n            // The following is a workaround of \"struct is never constructed\" Noir compilation error (we only ever use\n            // static methods of the struct).\n            let _ = AES128 {};\n        });\n    }\n\n    #[test]\n    unconstrained fn encrypt_decrypt_random() {\n        // Same as `encrypt_decrypt_deterministic`, except we don't mock any of the oracles and rely on\n        // `TestEnvironment` instead.\n        let mut env = TestEnvironment::new();\n\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let plaintext = [1, 2, 3];\n            let ciphertext = AES128::encrypt(plaintext, recipient, contract_address);\n\n            assert_eq(\n                AES128::decrypt(\n                    BoundedVec::from_array(ciphertext),\n                    recipient,\n                    contract_address,\n                )\n                    .unwrap(),\n                BoundedVec::from_array(plaintext),\n            );\n        });\n    }\n\n    #[test]\n    unconstrained fn encrypt_to_invalid_address() {\n        // x = 3 is a non-residue for this curve, resulting in an invalid address\n        let invalid_address = AztecAddress { inner: 3 };\n        let contract_address = AztecAddress { inner: 42 };\n\n        let _ = AES128::encrypt([1, 2, 3, 4], invalid_address, contract_address);\n    }\n\n    // Documents the PKCS#7 padding behavior that `encrypt` relies on (see its static_assert).\n    #[test]\n    fn pkcs7_padding_always_adds_at_least_one_byte() {\n        let key = [0 as u8; 16];\n        let iv = [0 as u8; 16];\n\n        // 1 byte input + 15 bytes padding = 16 bytes\n        assert_eq(std::aes128::aes128_encrypt([0; 1], iv, key).len(), 16);\n\n        // 15 bytes input + 1 byte padding = 16 bytes\n        assert_eq(std::aes128::aes128_encrypt([0; 15], iv, key).len(), 16);\n\n        // 16 bytes input (block-aligned) + full 16-byte padding block = 32 bytes\n        assert_eq(std::aes128::aes128_encrypt([0; 16], iv, key).len(), 32);\n    }\n\n    #[test]\n    unconstrained fn encrypt_decrypt_max_size_plaintext() {\n        let mut env = TestEnvironment::new();\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let mut plaintext = [0; MESSAGE_PLAINTEXT_LEN];\n            for i in 0..MESSAGE_PLAINTEXT_LEN {\n                plaintext[i] = i as Field;\n            }\n            let ciphertext = AES128::encrypt(plaintext, recipient, contract_address);\n\n            assert_eq(\n                AES128::decrypt(\n                    BoundedVec::from_array(ciphertext),\n                    recipient,\n                    contract_address,\n                )\n                    .unwrap(),\n                BoundedVec::from_array(plaintext),\n            );\n        });\n    }\n\n    #[test(should_fail_with = \"Plaintext length exceeds MESSAGE_PLAINTEXT_LEN\")]\n    unconstrained fn encrypt_oversized_plaintext() {\n        let address = AztecAddress { inner: 3 };\n        let contract_address = AztecAddress { inner: 42 };\n        let plaintext: [Field; MESSAGE_PLAINTEXT_LEN + 1] = [0; MESSAGE_PLAINTEXT_LEN + 1];\n        let _ = AES128::encrypt(plaintext, address, contract_address);\n    }\n\n    #[test]\n    unconstrained fn random_address_point_produces_valid_points() {\n        // About half of random addresses are invalid, so testing just a couple gives us high confidence that\n        // `random_address_point` is indeed producing valid addresses.\n        for _ in 0..10 {\n            let random_address = AztecAddress { inner: random_address_point().inner.x };\n            assert(random_address.to_address_point().is_some());\n        }\n    }\n\n    #[test]\n    unconstrained fn decrypt_invalid_ephemeral_public_key() {\n        let mut env = TestEnvironment::new();\n\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let plaintext = [1, 2, 3, 4];\n            let ciphertext = AES128::encrypt(plaintext, recipient, contract_address);\n\n            // The first field of the ciphertext is the x-coordinate of the ephemeral public key. We set it to a known\n            // non-residue (3), causing `decrypt` to fail to produce a decryption shared secret.\n            let mut bad_ciphertext = BoundedVec::from_array(ciphertext);\n            bad_ciphertext.set(0, 3);\n\n            assert(AES128::decrypt(bad_ciphertext, recipient, contract_address).is_none());\n        });\n    }\n\n    #[test]\n    unconstrained fn decrypt_returns_none_on_empty_ciphertext() {\n        let mut env = TestEnvironment::new();\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            assert(AES128::decrypt(BoundedVec::new(), recipient, contract_address).is_none());\n        });\n    }\n\n    // Mocks the header AES decrypt oracle to return an empty result. The TS oracle never throws on invalid\n    // input: it decrypts to garbage bytes or returns empty\n    #[test]\n    unconstrained fn decrypt_returns_none_on_empty_header() {\n        let mut env = TestEnvironment::new();\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let plaintext = [1, 2, 3];\n            let ciphertext = BoundedVec::from_array(AES128::encrypt(plaintext, recipient, contract_address));\n\n            let empty_header = BoundedVec::<u8, HEADER_CIPHERTEXT_SIZE_IN_BYTES>::new();\n            let _ = OracleMock::mock(\"aztec_utl_decryptAes128\").returns(Option::some(empty_header)).times(1);\n\n            assert(AES128::decrypt(ciphertext, recipient, contract_address).is_none());\n        });\n    }\n\n    // Mocks the header oracle to return a 2-byte header that decodes to a ciphertext_length one past the maximum\n    // allowed value, verifying the edge case is handled correctly.\n    #[test]\n    unconstrained fn decrypt_returns_none_on_oversized_ciphertext_length() {\n        let mut env = TestEnvironment::new();\n        let recipient = env.create_light_account();\n\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let plaintext = [1, 2, 3];\n            let ciphertext = BoundedVec::from_array(AES128::encrypt(plaintext, recipient, contract_address));\n\n            let bad_header = BoundedVec::<u8, HEADER_CIPHERTEXT_SIZE_IN_BYTES>::from_array(encode_header(\n                MESSAGE_PLAINTEXT_SIZE_IN_BYTES + 1,\n            ));\n            let _ = OracleMock::mock(\"aztec_utl_decryptAes128\").returns(Option::some(bad_header)).times(1);\n\n            assert(AES128::decrypt(ciphertext, recipient, contract_address).is_none());\n        });\n    }\n\n}\n"
    },
    "15": {
      "function_locations": [
        {
          "name": "compute_decomposition",
          "start": 456
        },
        {
          "name": "decompose_hint",
          "start": 818
        },
        {
          "name": "lte_hint",
          "start": 906
        },
        {
          "name": "assert_gt_limbs",
          "start": 1116
        },
        {
          "name": "decompose",
          "start": 1725
        },
        {
          "name": "assert_gt",
          "start": 2431
        },
        {
          "name": "assert_lt",
          "start": 2837
        },
        {
          "name": "gt",
          "start": 2901
        },
        {
          "name": "lt",
          "start": 3405
        },
        {
          "name": "tests::check_decompose",
          "start": 3678
        },
        {
          "name": "tests::check_lte_hint",
          "start": 3928
        },
        {
          "name": "tests::check_gt",
          "start": 4261
        },
        {
          "name": "tests::check_plo_phi",
          "start": 4591
        },
        {
          "name": "tests::check_decompose_edge_cases",
          "start": 5086
        },
        {
          "name": "tests::check_decompose_large_values",
          "start": 5446
        },
        {
          "name": "tests::check_lt_comprehensive",
          "start": 5807
        }
      ],
      "path": "std/field/bn254.nr",
      "source": "use crate::field::field_less_than;\nuse crate::runtime::is_unconstrained;\n\n// The low and high decomposition of the field modulus\npub(crate) global PLO: Field = 53438638232309528389504892708671455233;\npub(crate) global PHI: Field = 64323764613183177041862057485226039389;\n\npub(crate) global TWO_POW_128: Field = 0x100000000000000000000000000000000;\n\n// Decomposes a single field into two 16 byte fields.\nfn compute_decomposition(x: Field) -> (Field, Field) {\n    // Here's we're taking advantage of truncating 128 bit limbs from the input field\n    // and then subtracting them from the input such the field division is equivalent to integer division.\n    let low = (x as u128) as Field;\n    let high = (x - low) / TWO_POW_128;\n\n    (low, high)\n}\n\npub(crate) unconstrained fn decompose_hint(x: Field) -> (Field, Field) {\n    compute_decomposition(x)\n}\n\nunconstrained fn lte_hint(x: Field, y: Field) -> bool {\n    if x == y {\n        true\n    } else {\n        field_less_than(x, y)\n    }\n}\n\n// Assert that (alo > blo && ahi >= bhi) || (alo <= blo && ahi > bhi)\nfn assert_gt_limbs(a: (Field, Field), b: (Field, Field)) {\n    let (alo, ahi) = a;\n    let (blo, bhi) = b;\n    // Safety: borrow is enforced to be boolean due to its type.\n    // if borrow is 0, it asserts that (alo > blo && ahi >= bhi)\n    // if borrow is 1, it asserts that (alo <= blo && ahi > bhi)\n    unsafe {\n        let borrow = lte_hint(alo, blo);\n\n        let rlo = alo - blo - 1 + (borrow as Field) * TWO_POW_128;\n        let rhi = ahi - bhi - (borrow as Field);\n\n        rlo.assert_max_bit_size::<128>();\n        rhi.assert_max_bit_size::<128>();\n    }\n}\n\n/// Decompose a single field into two 16 byte fields.\npub fn decompose(x: Field) -> (Field, Field) {\n    if is_unconstrained() {\n        compute_decomposition(x)\n    } else {\n        // Safety: decomposition is properly checked below\n        unsafe {\n            // Take hints of the decomposition\n            let (xlo, xhi) = decompose_hint(x);\n\n            // Range check the limbs\n            xlo.assert_max_bit_size::<128>();\n            xhi.assert_max_bit_size::<128>();\n\n            // Check that the decomposition is correct\n            assert_eq(x, xlo + TWO_POW_128 * xhi);\n\n            // Assert that the decomposition of P is greater than the decomposition of x\n            assert_gt_limbs((PLO, PHI), (xlo, xhi));\n            (xlo, xhi)\n        }\n    }\n}\n\npub fn assert_gt(a: Field, b: Field) {\n    if is_unconstrained() {\n        assert(\n            // Safety: already unconstrained\n            unsafe { field_less_than(b, a) },\n        );\n    } else {\n        // Decompose a and b\n        let a_limbs = decompose(a);\n        let b_limbs = decompose(b);\n\n        // Assert that a_limbs is greater than b_limbs\n        assert_gt_limbs(a_limbs, b_limbs)\n    }\n}\n\npub fn assert_lt(a: Field, b: Field) {\n    assert_gt(b, a);\n}\n\npub fn gt(a: Field, b: Field) -> bool {\n    if is_unconstrained() {\n        // Safety: unsafe in unconstrained\n        unsafe {\n            field_less_than(b, a)\n        }\n    } else if a == b {\n        false\n    } else {\n        // Safety: Take a hint of the comparison and verify it\n        unsafe {\n            if field_less_than(a, b) {\n                assert_gt(b, a);\n                false\n            } else {\n                assert_gt(a, b);\n                true\n            }\n        }\n    }\n}\n\npub fn lt(a: Field, b: Field) -> bool {\n    gt(b, a)\n}\n\nmod tests {\n    // TODO: Allow imports from \"super\"\n    use crate::field::bn254::{assert_gt, decompose, gt, lt, lte_hint, PHI, PLO, TWO_POW_128};\n    use crate::internal::test_unconstrained;\n    use super::assert_lt;\n\n    #[test]\n    fn check_decompose() {\n        assert_eq(decompose(TWO_POW_128), (0, 1));\n        assert_eq(decompose(TWO_POW_128 + 0x1234567890), (0x1234567890, 1));\n        assert_eq(decompose(0x1234567890), (0x1234567890, 0));\n    }\n\n    #[test]\n    unconstrained fn check_lte_hint() {\n        assert(lte_hint(0, 1));\n        assert(lte_hint(0, 0x100));\n        assert(lte_hint(0x100, TWO_POW_128 - 1));\n        assert(!lte_hint(0 - 1, 0));\n\n        assert(lte_hint(0, 0));\n        assert(lte_hint(0x100, 0x100));\n        assert(lte_hint(0 - 1, 0 - 1));\n    }\n\n    #[test]\n    #[test_unconstrained]\n    fn check_gt() {\n        assert(gt(1, 0));\n        assert(gt(0x100, 0));\n        assert(gt((0 - 1), (0 - 2)));\n        assert(gt(TWO_POW_128, 0));\n        assert(!gt(0, 0));\n        assert(!gt(0, 0x100));\n        assert(gt(0 - 1, 0 - 2));\n        assert(!gt(0 - 2, 0 - 1));\n        assert_gt(0 - 1, 0);\n    }\n\n    #[test]\n    fn check_plo_phi() {\n        assert_eq(PLO + PHI * TWO_POW_128, 0);\n        let p_bytes = crate::field::modulus_le_bytes();\n        let mut p_low: Field = 0;\n        let mut p_high: Field = 0;\n\n        let mut offset = 1;\n        for i in 0..16 {\n            p_low += (p_bytes[i] as Field) * offset;\n            p_high += (p_bytes[i + 16] as Field) * offset;\n            offset *= 256;\n        }\n        assert_eq(p_low, PLO);\n        assert_eq(p_high, PHI);\n    }\n\n    #[test]\n    fn check_decompose_edge_cases() {\n        assert_eq(decompose(0), (0, 0));\n        assert_eq(decompose(TWO_POW_128 - 1), (TWO_POW_128 - 1, 0));\n        assert_eq(decompose(TWO_POW_128 + 1), (1, 1));\n        assert_eq(decompose(TWO_POW_128 * 2), (0, 2));\n        assert_eq(decompose(TWO_POW_128 * 2 + 0x1234567890), (0x1234567890, 2));\n    }\n\n    #[test]\n    fn check_decompose_large_values() {\n        let large_field = 0xffffffffffffffff;\n        let (lo, hi) = decompose(large_field);\n        assert_eq(large_field, lo + TWO_POW_128 * hi);\n\n        let large_value = large_field - TWO_POW_128;\n        let (lo2, hi2) = decompose(large_value);\n        assert_eq(large_value, lo2 + TWO_POW_128 * hi2);\n    }\n\n    #[test]\n    fn check_lt_comprehensive() {\n        assert(lt(0, 1));\n        assert_lt(0, 1);\n        assert(!lt(1, 0));\n        assert(!lt(0, 0));\n        assert(!lt(42, 42));\n\n        assert(lt(TWO_POW_128 - 1, TWO_POW_128));\n        assert(!lt(TWO_POW_128, TWO_POW_128 - 1));\n    }\n}\n"
    },
    "150": {
      "function_locations": [
        {
          "name": "get_arr_of_size__full_plaintext",
          "start": 1146
        },
        {
          "name": "get_arr_of_size__plaintext_aes_padding",
          "start": 1318
        },
        {
          "name": "get_arr_of_size__ciphertext",
          "start": 1564
        },
        {
          "name": "get_arr_of_size__message_bytes_without_padding",
          "start": 1892
        },
        {
          "name": "get_arr_of_size__message_bytes_padding",
          "start": 2401
        },
        {
          "name": "get_arr_of_size__message_bytes",
          "start": 2746
        },
        {
          "name": "get_arr_of_size__message_bytes_padding__from_PT",
          "start": 3200
        },
        {
          "name": "get_arr_of_size__message_bytes__from_PT",
          "start": 3996
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/logs/arithmetic_generics_utils.nr",
      "source": "use crate::messages::encoding::HEADER_CIPHERTEXT_SIZE_IN_BYTES;\n\n/// *****************************************************\n// Disgusting arithmetic on generics\n/// *****************************************************\n\n// In this section, instead of initializing arrays with very complicated generic arithmetic, such as: let my_arr: [u8;\n// (((Pt + (16 - (Pt % 16))) + (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1)) + ((((((Pt + (16 - (Pt % 16))) +\n// (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1)) + 30) / 31) * 31) - ((Pt + (16 - (Pt % 16))) +\n// (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1))))] = [0; (((Pt + (16 - (Pt % 16))) + (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1)) +\n// ((((((Pt + (16 - (Pt % 16))) + (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1)) + 30) / 31) * 31) - ((Pt + (16 - (Pt % 16))) +\n// (HEADER_CIPHERTEXT_SIZE_IN_BYTES + 1))))]; ... we instead do the arithmetic a little bit at a time, so that the\n// computation can be audited and understood. Now, we can't do arithmetic on generics in the body of a function, so we\n// abusing functions in the following way:\n\n// |full_pt| = |pt| = (N * 32) + 64\nfn get_arr_of_size__full_plaintext<let Pt: u32>() -> [u8; Pt] {\n    [0; Pt]\n}\n\n// |pt_aes_padding| = 16 - (|full_pt| % 16)\nfn get_arr_of_size__plaintext_aes_padding<let FullPt: u32>(_full_pt: [u8; FullPt]) -> [u8; 16 - (FullPt % 16)] {\n    [0; 16 - (FullPt % 16)]\n}\n\n// |ct| = |full_pt| + |pt_aes_padding|\nfn get_arr_of_size__ciphertext<let FullPt: u32, let PtAesPadding: u32>(\n    _full_pt: [u8; FullPt],\n    _pt_aes_padding: [u8; PtAesPadding],\n) -> [u8; FullPt + PtAesPadding] {\n    [0; FullPt + PtAesPadding]\n}\n\n// Ok, so we have the following bytes: header_ciphertext, ciphertext: Let mbwop =\n// HEADER_CIPHERTEXT_SIZE_IN_BYTES + |ct| // aka message bytes without padding\nfn get_arr_of_size__message_bytes_without_padding<let Ct: u32>(\n    _ct: [u8; Ct],\n) -> [u8; HEADER_CIPHERTEXT_SIZE_IN_BYTES + Ct] {\n    [0; HEADER_CIPHERTEXT_SIZE_IN_BYTES + Ct]\n}\n\n// Recall:\n//   mbwop := HEADER_CIPHERTEXT_SIZE_IN_BYTES + |ct| // aka message bytes without padding\n// We now want to pad b to the next multiple of 31, so as to \"fill\" fields. Let p be that padding. p = 31 * ceil(mbwop\n// / 31) - mbwop\n//   = 31 * ((mbwop + 30) // 31) - mbwop\n//     (because ceil(x / y) = (x + y - 1) // y ).\nfn get_arr_of_size__message_bytes_padding<let Mbwop: u32>(\n    _mbwop: [u8; Mbwop],\n) -> [u8; (31 * ((Mbwop + 30) / 31)) - Mbwop] {\n    [0; (31 * ((Mbwop + 30) / 31)) - Mbwop]\n}\n\n// |message_bytes| = HEADER_CIPHERTEXT_SIZE_IN_BYTES + |ct| + p // aka message bytes (with\n// padding) Recall:\n//   mbwop := HEADER_CIPHERTEXT_SIZE_IN_BYTES + |ct| p is the padding\nfn get_arr_of_size__message_bytes<let MBWOP: u32, let P: u32>(_mbwop: [u8; MBWOP], _p: [u8; P]) -> [u8; MBWOP + P] {\n    [0; MBWOP + P]\n}\n\n// The return type is pasted from the LSP's expectation, because it was too difficult to match its weird way of doing\n// algebra. It doesn't know all rules of arithmetic. Pt is the plaintext length.\npub(crate) fn get_arr_of_size__message_bytes_padding__from_PT<let Pt: u32>() -> [u8; ((((((Pt + (16 - (Pt % 16))) + HEADER_CIPHERTEXT_SIZE_IN_BYTES) + 30) / 31) * 31) - ((Pt + (16 - (Pt % 16))) + HEADER_CIPHERTEXT_SIZE_IN_BYTES))] {\n    let full_pt = get_arr_of_size__full_plaintext::<Pt>();\n    let pt_aes_padding = get_arr_of_size__plaintext_aes_padding(full_pt);\n    let ct = get_arr_of_size__ciphertext(full_pt, pt_aes_padding);\n    let mbwop = get_arr_of_size__message_bytes_without_padding(ct);\n    let p = get_arr_of_size__message_bytes_padding(mbwop);\n    p\n}\n\n// The return type is pasted from the LSP's expectation, because it was too difficult to match its weird way of doing\n// algebra. It doesn't know all rules of arithmetic.\npub(crate) fn get_arr_of_size__message_bytes__from_PT<let Pt: u32>() -> [u8; (((Pt + (16 - (Pt % 16))) + HEADER_CIPHERTEXT_SIZE_IN_BYTES) + ((((((Pt + (16 - (Pt % 16))) + HEADER_CIPHERTEXT_SIZE_IN_BYTES) + 30) / 31) * 31) - ((Pt + (16 - (Pt % 16))) + HEADER_CIPHERTEXT_SIZE_IN_BYTES)))] {\n    let full_pt = get_arr_of_size__full_plaintext::<Pt>();\n    let pt_aes_padding = get_arr_of_size__plaintext_aes_padding(full_pt);\n    let ct = get_arr_of_size__ciphertext(full_pt, pt_aes_padding);\n    let mbwop = get_arr_of_size__message_bytes_without_padding(ct);\n    let p = get_arr_of_size__message_bytes_padding(mbwop);\n    let message_bytes = get_arr_of_size__message_bytes(mbwop, p);\n    message_bytes\n}\n"
    },
    "151": {
      "function_locations": [
        {
          "name": "encode_private_event_message",
          "start": 1377
        },
        {
          "name": "decode_private_event_message",
          "start": 3780
        },
        {
          "name": "test::encode_decode",
          "start": 5181
        },
        {
          "name": "test::<impl EventInterface for EmptyEvent>::get_event_type_id",
          "start": 5994
        },
        {
          "name": "test::encode_decode_empty_event",
          "start": 6116
        },
        {
          "name": "test::decode_empty_content_returns_none",
          "start": 6775
        },
        {
          "name": "test::decode_succeeds_with_only_reserved_fields",
          "start": 6966
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/logs/event.nr",
      "source": "use crate::{\n    event::{event_interface::EventInterface, EventSelector},\n    messages::{\n        encoding::{encode_message, MAX_MESSAGE_CONTENT_LEN, MESSAGE_EXPANDED_METADATA_LEN},\n        msg_type::PRIVATE_EVENT_MSG_TYPE_ID,\n    },\n    utils::array,\n};\nuse crate::protocol::traits::{FromField, Serialize, ToField};\n\n/// The number of fields in a private event message content that are not the event's serialized representation (1 field\n/// for randomness).\npub(crate) global PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN: u32 = 1;\npub(crate) global PRIVATE_EVENT_MSG_PLAINTEXT_RANDOMNESS_INDEX: u32 = 0;\n\n/// The maximum length of the packed representation of an event's contents. This is limited by private log size,\n/// encryption overhead and extra fields in the message (e.g. message type id, randomness, etc.).\npub global MAX_EVENT_SERIALIZED_LEN: u32 = MAX_MESSAGE_CONTENT_LEN - PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN;\n\n/// Creates the plaintext for a private event message (i.e. one of type [`PRIVATE_EVENT_MSG_TYPE_ID`]).\n///\n/// This plaintext is meant to be decoded via [`decode_private_event_message`].\npub fn encode_private_event_message<Event>(\n    event: Event,\n    randomness: Field,\n) -> [Field; PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <Event as Serialize>::N + MESSAGE_EXPANDED_METADATA_LEN]\nwhere\n    Event: EventInterface + Serialize,\n{\n    std::static_assert(\n        <Event as Serialize>::N <= MAX_EVENT_SERIALIZED_LEN,\n        \"event's serialized length exceeds the maximum allowed for private events\",\n    );\n\n    // We use `Serialize` because we want for events to be processable by off-chain actors, e.g. block explorers,\n    // wallets and apps, without having to rely on contract invocation. If we used `Packable` we'd need to call utility\n    // functions in order to unpack events, which would introduce a level of complexity we don't currently think is\n    // worth the savings in DA (for public events) and proving time (when encrypting private event messages).\n    let serialized_event = event.serialize();\n\n    // If PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN is changed, causing the assertion below to fail, then the\n    // encoding below must be updated as well.\n    std::static_assert(\n        PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 1,\n        \"unexpected value for PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN\",\n    );\n\n    let mut msg_plaintext = [0; PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <Event as Serialize>::N];\n    msg_plaintext[PRIVATE_EVENT_MSG_PLAINTEXT_RANDOMNESS_INDEX] = randomness;\n\n    for i in 0..serialized_event.len() {\n        msg_plaintext[PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + i] = serialized_event[i];\n    }\n\n    // The event type id is stored in the message metadata\n    encode_message(\n        PRIVATE_EVENT_MSG_TYPE_ID,\n        Event::get_event_type_id().to_field() as u64,\n        msg_plaintext,\n    )\n}\n\n/// Decodes the plaintext from a private event message (i.e. one of type [`PRIVATE_EVENT_MSG_TYPE_ID`]).\n///\n/// Returns `None` if `msg_content` is too short to contain the reserved fields. This plaintext is meant to have\n/// originated from [`encode_private_event_message`].\n///\n/// Note that while [`encode_private_event_message`] returns a fixed-size array, this function takes a [`BoundedVec`]\n/// instead. This is because when decoding we're typically processing runtime-sized plaintexts, more specifically,\n/// those that originate from [`crate::messages::encryption::message_encryption::MessageEncryption::decrypt`].\npub(crate) unconstrained fn decode_private_event_message(\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n) -> Option<(EventSelector, Field, BoundedVec<Field, MAX_EVENT_SERIALIZED_LEN>)> {\n    if msg_content.len() < PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN {\n        Option::none()\n    } else {\n        let event_type_id = EventSelector::from_field(msg_metadata as Field);\n\n        // If PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN is changed, causing the assertion below to fail, then the\n        // destructuring of the private event message encoding below must be updated as well.\n        std::static_assert(\n            PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 1,\n            \"unexpected value for PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN\",\n        );\n\n        let randomness = msg_content.get(PRIVATE_EVENT_MSG_PLAINTEXT_RANDOMNESS_INDEX);\n        let serialized_event = array::subbvec(msg_content, PRIVATE_EVENT_MSG_PLAINTEXT_RESERVED_FIELDS_LEN);\n\n        Option::some((event_type_id, randomness, serialized_event))\n    }\n}\n\nmod test {\n    use crate::{\n        event::{event_interface::EventInterface, EventSelector},\n        messages::{\n            encoding::decode_message,\n            logs::event::{decode_private_event_message, encode_private_event_message},\n            msg_type::PRIVATE_EVENT_MSG_TYPE_ID,\n        },\n    };\n    use crate::protocol::traits::{FromField, Serialize};\n    use crate::test::mocks::mock_event::MockEvent;\n\n    global VALUE: Field = 7;\n    global RANDOMNESS: Field = 10;\n\n    #[test]\n    unconstrained fn encode_decode() {\n        let event = MockEvent::new(VALUE).build_event();\n\n        let message_plaintext = encode_private_event_message(event, RANDOMNESS);\n\n        let (msg_type_id, msg_metadata, msg_content) =\n            decode_message(BoundedVec::from_array(message_plaintext)).unwrap();\n\n        assert_eq(msg_type_id, PRIVATE_EVENT_MSG_TYPE_ID);\n\n        let (event_type_id, randomness, serialized_event) =\n            decode_private_event_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(event_type_id, MockEvent::get_event_type_id());\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(serialized_event, BoundedVec::from_array(event.serialize()));\n    }\n\n    #[derive(Serialize)]\n    struct EmptyEvent {}\n\n    impl EventInterface for EmptyEvent {\n        fn get_event_type_id() -> EventSelector {\n            EventSelector::from_field(90)\n        }\n    }\n\n    #[test]\n    unconstrained fn encode_decode_empty_event() {\n        let message_plaintext = encode_private_event_message(EmptyEvent {}, RANDOMNESS);\n\n        let (msg_type_id, msg_metadata, msg_content) =\n            decode_message(BoundedVec::from_array(message_plaintext)).unwrap();\n\n        assert_eq(msg_type_id, PRIVATE_EVENT_MSG_TYPE_ID);\n\n        let (event_type_id, randomness, serialized_event) =\n            decode_private_event_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(event_type_id, EmptyEvent::get_event_type_id());\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(serialized_event.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn decode_empty_content_returns_none() {\n        let empty = BoundedVec::new();\n        assert(decode_private_event_message(0, empty).is_none());\n    }\n\n    #[test]\n    unconstrained fn decode_succeeds_with_only_reserved_fields() {\n        let content = BoundedVec::from_array([RANDOMNESS]);\n\n        let (_, randomness, serialized_event) = decode_private_event_message(0, content).unwrap();\n\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(serialized_event.len(), 0);\n    }\n}\n"
    },
    "153": {
      "function_locations": [
        {
          "name": "encode_private_note_message_with_msg_type_id",
          "start": 1652
        },
        {
          "name": "encode_private_note_message",
          "start": 3078
        },
        {
          "name": "decode_private_note_message",
          "start": 4094
        },
        {
          "name": "test::encode_decode",
          "start": 5790
        },
        {
          "name": "test::<impl NoteType for MaxSizeNote>::get_id",
          "start": 6713
        },
        {
          "name": "test::encode_decode_max_size_note",
          "start": 6809
        },
        {
          "name": "test::<impl NoteType for OversizedNote>::get_id",
          "start": 7825
        },
        {
          "name": "test::encode_oversized_note_fails",
          "start": 8011
        },
        {
          "name": "test::<impl NoteType for EmptyNote>::get_id",
          "start": 8289
        },
        {
          "name": "test::encode_decode_empty_note",
          "start": 8382
        },
        {
          "name": "test::decode_empty_content_returns_none",
          "start": 9102
        },
        {
          "name": "test::decode_with_fewer_than_reserved_fields_returns_none",
          "start": 9302
        },
        {
          "name": "test::decode_succeeds_with_only_reserved_fields",
          "start": 9509
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/logs/note.nr",
      "source": "use crate::{\n    messages::{\n        encoding::{encode_message, MAX_MESSAGE_CONTENT_LEN, MESSAGE_EXPANDED_METADATA_LEN},\n        msg_type::PRIVATE_NOTE_MSG_TYPE_ID,\n    },\n    note::note_interface::NoteType,\n    utils::array,\n};\nuse crate::protocol::{address::AztecAddress, traits::{FromField, Packable, ToField}};\n\n/// The number of fields in a private note message content that are not the note's packed representation.\npub(crate) global PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN: u32 = 3;\n\npub(crate) global PRIVATE_NOTE_MSG_PLAINTEXT_OWNER_INDEX: u32 = 0;\npub(crate) global PRIVATE_NOTE_MSG_PLAINTEXT_STORAGE_SLOT_INDEX: u32 = 1;\npub(crate) global PRIVATE_NOTE_MSG_PLAINTEXT_RANDOMNESS_INDEX: u32 = 2;\n\n/// The maximum length of the packed representation of a note's contents. This is limited by private log size,\n/// encryption overhead and extra fields in the message (e.g. message type id, storage slot, randomness, etc.).\npub global MAX_NOTE_PACKED_LEN: u32 = MAX_MESSAGE_CONTENT_LEN - PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN;\n\n/// Creates the plaintext for a private note message with the given `msg_type_id`.\n///\n/// Shared encoder used by [`encode_private_note_message`] and by custom message handlers that use the same format as\n/// standard private note message but perform additional validation logic.\npub fn encode_private_note_message_with_msg_type_id<Note>(\n    msg_type_id: u64,\n    note: Note,\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n) -> [Field; PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <Note as Packable>::N + MESSAGE_EXPANDED_METADATA_LEN]\nwhere\n    Note: NoteType + Packable,\n{\n    let packed_note = note.pack();\n\n    // If PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN is changed, causing the assertion below to fail, then the\n    // encoding below must be updated as well.\n    std::static_assert(\n        PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 3,\n        \"unexpected value for PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN\",\n    );\n\n    let mut msg_content = [0; PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <Note as Packable>::N];\n    msg_content[PRIVATE_NOTE_MSG_PLAINTEXT_OWNER_INDEX] = owner.to_field();\n    msg_content[PRIVATE_NOTE_MSG_PLAINTEXT_STORAGE_SLOT_INDEX] = storage_slot;\n    msg_content[PRIVATE_NOTE_MSG_PLAINTEXT_RANDOMNESS_INDEX] = randomness;\n    for i in 0..packed_note.len() {\n        msg_content[PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + i] = packed_note[i];\n    }\n\n    // Notes use the note type id for metadata\n    encode_message(msg_type_id, Note::get_id() as u64, msg_content)\n}\n\n/// Creates the plaintext for a private note message (i.e. one of type [`PRIVATE_NOTE_MSG_TYPE_ID`]).\n///\n/// This plaintext is meant to be decoded via [`decode_private_note_message`].\npub fn encode_private_note_message<Note>(\n    note: Note,\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n) -> [Field; PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <Note as Packable>::N + MESSAGE_EXPANDED_METADATA_LEN]\nwhere\n    Note: NoteType + Packable,\n{\n    encode_private_note_message_with_msg_type_id(\n        PRIVATE_NOTE_MSG_TYPE_ID,\n        note,\n        owner,\n        storage_slot,\n        randomness,\n    )\n}\n\n/// Decodes the plaintext from a private note message (i.e. one of type [`PRIVATE_NOTE_MSG_TYPE_ID`]).\n///\n/// Returns `None` if `msg_content` is too short to contain the reserved fields. This plaintext is meant to have\n/// originated from [`encode_private_note_message`].\n///\n/// Note that while [`encode_private_note_message`] returns a fixed-size array, this function takes a [`BoundedVec`]\n/// instead. This is because when decoding we're typically processing runtime-sized plaintexts, more specifically,\n/// those that originate from [`crate::messages::encryption::message_encryption::MessageEncryption::decrypt`].\npub(crate) unconstrained fn decode_private_note_message(\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n) -> Option<(Field, AztecAddress, Field, Field, BoundedVec<Field, MAX_NOTE_PACKED_LEN>)> {\n    if msg_content.len() < PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN {\n        Option::none()\n    } else {\n        let note_type_id = msg_metadata as Field; // TODO: make note type id not be a full field\n\n        // If PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN is changed, causing the assertion below to fail, then the\n        // decoding below must be updated as well.\n        std::static_assert(\n            PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 3,\n            \"unexpected value for PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN\",\n        );\n\n        let owner = AztecAddress::from_field(msg_content.get(PRIVATE_NOTE_MSG_PLAINTEXT_OWNER_INDEX));\n        let storage_slot = msg_content.get(PRIVATE_NOTE_MSG_PLAINTEXT_STORAGE_SLOT_INDEX);\n        let randomness = msg_content.get(PRIVATE_NOTE_MSG_PLAINTEXT_RANDOMNESS_INDEX);\n        let packed_note = array::subbvec(msg_content, PRIVATE_NOTE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN);\n\n        Option::some((note_type_id, owner, storage_slot, randomness, packed_note))\n    }\n}\n\nmod test {\n    use crate::{\n        messages::{\n            encoding::decode_message,\n            logs::note::{decode_private_note_message, encode_private_note_message, MAX_NOTE_PACKED_LEN},\n            msg_type::PRIVATE_NOTE_MSG_TYPE_ID,\n        },\n        note::note_interface::NoteType,\n    };\n    use crate::protocol::{address::AztecAddress, traits::{FromField, Packable, ToField}};\n    use crate::test::mocks::mock_note::MockNote;\n\n    global VALUE: Field = 7;\n    global OWNER: AztecAddress = AztecAddress::from_field(8);\n    global STORAGE_SLOT: Field = 9;\n    global RANDOMNESS: Field = 10;\n\n    #[test]\n    unconstrained fn encode_decode() {\n        let note = MockNote::new(VALUE).build_note();\n\n        let message_plaintext = encode_private_note_message(note, OWNER, STORAGE_SLOT, RANDOMNESS);\n\n        let (msg_type_id, msg_metadata, msg_content) =\n            decode_message(BoundedVec::from_array(message_plaintext)).unwrap();\n\n        assert_eq(msg_type_id, PRIVATE_NOTE_MSG_TYPE_ID);\n\n        let (note_type_id, owner, storage_slot, randomness, packed_note) =\n            decode_private_note_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(note_type_id, MockNote::get_id());\n        assert_eq(owner, OWNER);\n        assert_eq(storage_slot, STORAGE_SLOT);\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(packed_note, BoundedVec::from_array(note.pack()));\n    }\n\n    #[derive(Packable)]\n    struct MaxSizeNote {\n        data: [Field; MAX_NOTE_PACKED_LEN],\n    }\n\n    impl NoteType for MaxSizeNote {\n        fn get_id() -> Field {\n            0\n        }\n    }\n\n    #[test]\n    unconstrained fn encode_decode_max_size_note() {\n        let mut data = [0; MAX_NOTE_PACKED_LEN];\n        for i in 0..MAX_NOTE_PACKED_LEN {\n            data[i] = i as Field;\n        }\n        let note = MaxSizeNote { data };\n\n        let encoded = encode_private_note_message(note, OWNER, STORAGE_SLOT, RANDOMNESS);\n        let (msg_type_id, msg_metadata, msg_content) = decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(msg_type_id, PRIVATE_NOTE_MSG_TYPE_ID);\n\n        let (note_type_id, owner, storage_slot, randomness, packed_note) =\n            decode_private_note_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(note_type_id, MaxSizeNote::get_id());\n        assert_eq(owner, OWNER);\n        assert_eq(storage_slot, STORAGE_SLOT);\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(packed_note, BoundedVec::from_array(data));\n    }\n\n    #[derive(Packable)]\n    struct OversizedNote {\n        data: [Field; MAX_NOTE_PACKED_LEN + 1],\n    }\n\n    impl NoteType for OversizedNote {\n        fn get_id() -> Field {\n            0\n        }\n    }\n\n    #[test(should_fail_with = \"Invalid message content: it must have a length of at most MAX_MESSAGE_CONTENT_LEN\")]\n    fn encode_oversized_note_fails() {\n        let note = OversizedNote { data: [0; MAX_NOTE_PACKED_LEN + 1] };\n        let _ = encode_private_note_message(note, OWNER, STORAGE_SLOT, RANDOMNESS);\n    }\n\n    #[derive(Packable)]\n    struct EmptyNote {}\n\n    impl NoteType for EmptyNote {\n        fn get_id() -> Field {\n            0\n        }\n    }\n\n    #[test]\n    unconstrained fn encode_decode_empty_note() {\n        let encoded = encode_private_note_message(EmptyNote {}, OWNER, STORAGE_SLOT, RANDOMNESS);\n        let (msg_type_id, msg_metadata, msg_content) = decode_message(BoundedVec::from_array(encoded)).unwrap();\n\n        assert_eq(msg_type_id, PRIVATE_NOTE_MSG_TYPE_ID);\n\n        let (note_type_id, owner, storage_slot, randomness, packed_note) =\n            decode_private_note_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(note_type_id, EmptyNote::get_id());\n        assert_eq(owner, OWNER);\n        assert_eq(storage_slot, STORAGE_SLOT);\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(packed_note.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn decode_empty_content_returns_none() {\n        let empty = BoundedVec::new();\n        assert(decode_private_note_message(0, empty).is_none());\n    }\n\n    #[test]\n    unconstrained fn decode_with_fewer_than_reserved_fields_returns_none() {\n        let content = BoundedVec::from_array([0, 0]);\n        assert(decode_private_note_message(0, content).is_none());\n    }\n\n    #[test]\n    unconstrained fn decode_succeeds_with_only_reserved_fields() {\n        let content = BoundedVec::from_array([OWNER.to_field(), STORAGE_SLOT, RANDOMNESS]);\n\n        let (_, owner, storage_slot, randomness, packed_note) = decode_private_note_message(0, content).unwrap();\n\n        assert_eq(owner, OWNER);\n        assert_eq(storage_slot, STORAGE_SLOT);\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(packed_note.len(), 0);\n    }\n}\n"
    },
    "154": {
      "function_locations": [
        {
          "name": "encode_partial_note_private_message",
          "start": 1715
        },
        {
          "name": "decode_partial_note_private_message",
          "start": 3810
        },
        {
          "name": "test::encode_decode",
          "start": 6022
        },
        {
          "name": "test::decode_empty_content_returns_none",
          "start": 6999
        },
        {
          "name": "test::decode_succeeds_with_only_reserved_fields",
          "start": 7197
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/logs/partial_note.nr",
      "source": "use crate::{\n    messages::{\n        encoding::{encode_message, MAX_MESSAGE_CONTENT_LEN, MESSAGE_EXPANDED_METADATA_LEN},\n        msg_type::PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID,\n    },\n    note::note_interface::NoteType,\n    utils::array,\n};\nuse crate::protocol::{address::AztecAddress, traits::{FromField, Packable, ToField}};\n\n/// The number of fields in a private note message content that are not the note's packed representation.\npub(crate) global PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN: u32 = 3;\npub(crate) global PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_OWNER_INDEX: u32 = 0;\npub(crate) global PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RANDOMNESS_INDEX: u32 = 1;\npub(crate) global PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NOTE_COMPLETION_LOG_TAG_INDEX: u32 = 2;\n\n/// Partial notes have a maximum packed length of their private fields bound by extra content in their private message\n/// (e.g. the storage slot, note completion log tag, etc.).\npub global MAX_PARTIAL_NOTE_PRIVATE_PACKED_LEN: u32 =\n    MAX_MESSAGE_CONTENT_LEN - PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN;\n\n/// Creates the plaintext for a partial note private message (i.e. one of type [`PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID`]).\n///\n/// This plaintext is meant to be decoded via [`decode_partial_note_private_message`].\npub fn encode_partial_note_private_message<PartialNotePrivateContent>(\n    partial_note_private_content: PartialNotePrivateContent,\n    owner: AztecAddress,\n    randomness: Field,\n    note_completion_log_tag: Field,\n    ) -> [Field; PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <PartialNotePrivateContent as Packable>::N + MESSAGE_EXPANDED_METADATA_LEN]\nwhere\n    PartialNotePrivateContent: NoteType + Packable,\n{\n    let packed_private_content = partial_note_private_content.pack();\n\n    // If PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NON_NOTE_FIELDS_LEN is changed, causing the assertion below to fail, then\n    // the encoding below must be updated as well.\n    std::static_assert(\n        PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 3,\n        \"unexpected value for PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NON_NOTE_FIELDS_LEN\",\n    );\n\n    let mut msg_content =\n        [0; PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + <PartialNotePrivateContent as Packable>::N];\n    msg_content[PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_OWNER_INDEX] = owner.to_field();\n    msg_content[PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RANDOMNESS_INDEX] = randomness;\n    msg_content[PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NOTE_COMPLETION_LOG_TAG_INDEX] = note_completion_log_tag;\n\n    for i in 0..packed_private_content.len() {\n        msg_content[PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN + i] = packed_private_content[i];\n    }\n\n    encode_message(\n        PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID,\n        // Notes use the note type id for metadata\n        PartialNotePrivateContent::get_id() as u64,\n        msg_content,\n    )\n}\n\n/// Decodes the plaintext from a partial note private message (i.e. one of type\n/// [`PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID`]).\n///\n/// Returns `None` if `msg_content` has too few fields. This plaintext is meant to have originated\n/// from [`encode_partial_note_private_message`].\n///\n/// Note that while [`encode_partial_note_private_message`] returns a fixed-size array, this function takes a\n/// [`BoundedVec`] instead. This is because when decoding we're typically processing runtime-sized plaintexts, more\n/// specifically, those that originate from\n/// [`crate::messages::encryption::message_encryption::MessageEncryption::decrypt`].\npub(crate) unconstrained fn decode_partial_note_private_message(\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n) -> Option<(AztecAddress, Field, Field, Field, BoundedVec<Field, MAX_PARTIAL_NOTE_PRIVATE_PACKED_LEN>)> {\n    if msg_content.len() < PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN {\n        Option::none()\n    } else {\n        let note_type_id: Field = msg_metadata as Field; // TODO: make note type id not be a full field\n\n        // If PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NON_NOTE_FIELDS_LEN is changed, causing the assertion below to fail,\n        // then the destructuring of the partial note private message encoding below must be updated as well.\n        std::static_assert(\n            PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN == 3,\n            \"unexpected value for PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NON_NOTE_FIELDS_LEN\",\n        );\n\n        // We currently have three fields that are not the partial note's packed representation, which are the owner,\n        // the randomness, and the note completion log tag.\n        let owner = AztecAddress::from_field(\n            msg_content.get(PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_OWNER_INDEX),\n        );\n        let randomness = msg_content.get(PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RANDOMNESS_INDEX);\n        let note_completion_log_tag = msg_content.get(PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_NOTE_COMPLETION_LOG_TAG_INDEX);\n\n        let packed_private_note_content: BoundedVec<Field, MAX_PARTIAL_NOTE_PRIVATE_PACKED_LEN> = array::subbvec(\n            msg_content,\n            PARTIAL_NOTE_PRIVATE_MSG_PLAINTEXT_RESERVED_FIELDS_LEN,\n        );\n\n        Option::some(\n            (owner, randomness, note_completion_log_tag, note_type_id, packed_private_note_content),\n        )\n    }\n}\n\nmod test {\n    use crate::{\n        messages::{\n            encoding::decode_message,\n            logs::partial_note::{decode_partial_note_private_message, encode_partial_note_private_message},\n            msg_type::PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID,\n        },\n        note::note_interface::NoteType,\n    };\n    use crate::protocol::{address::AztecAddress, traits::{FromField, Packable}};\n    use crate::test::mocks::mock_note::MockNote;\n\n    global VALUE: Field = 7;\n    global OWNER: AztecAddress = AztecAddress::from_field(8);\n    global RANDOMNESS: Field = 10;\n    global NOTE_COMPLETION_LOG_TAG: Field = 11;\n\n    #[test]\n    unconstrained fn encode_decode() {\n        // Note that here we use MockNote as the private fields of a partial note\n        let note = MockNote::new(VALUE).build_note();\n\n        let message_plaintext = encode_partial_note_private_message(note, OWNER, RANDOMNESS, NOTE_COMPLETION_LOG_TAG);\n\n        let (msg_type_id, msg_metadata, msg_content) =\n            decode_message(BoundedVec::from_array(message_plaintext)).unwrap();\n\n        assert_eq(msg_type_id, PARTIAL_NOTE_PRIVATE_MSG_TYPE_ID);\n\n        let (owner, randomness, note_completion_log_tag, note_type_id, packed_note) =\n            decode_partial_note_private_message(msg_metadata, msg_content).unwrap();\n\n        assert_eq(note_type_id, MockNote::get_id());\n        assert_eq(owner, OWNER);\n        assert_eq(randomness, RANDOMNESS);\n        assert_eq(note_completion_log_tag, NOTE_COMPLETION_LOG_TAG);\n        assert_eq(packed_note, BoundedVec::from_array(note.pack()));\n    }\n\n    #[test]\n    unconstrained fn decode_empty_content_returns_none() {\n        let empty = BoundedVec::new();\n        assert(decode_partial_note_private_message(0, empty).is_none());\n    }\n\n    #[test]\n    unconstrained fn decode_succeeds_with_only_reserved_fields() {\n        let content = BoundedVec::from_array([0, 0, 0]);\n        let (_, _, _, _, packed_note) = decode_partial_note_private_message(0, content).unwrap();\n        assert_eq(packed_note.len(), 0);\n    }\n}\n"
    },
    "16": {
      "function_locations": [
        {
          "name": "Field::assert_max_bit_size",
          "start": 380
        },
        {
          "name": "Field::to_le_bits",
          "start": 1196
        },
        {
          "name": "Field::to_be_bits",
          "start": 2387
        },
        {
          "name": "Field::to_le_bytes",
          "start": 3562
        },
        {
          "name": "Field::to_be_bytes",
          "start": 5033
        },
        {
          "name": "Field::to_le_radix",
          "start": 5904
        },
        {
          "name": "Field::to_be_radix",
          "start": 6362
        },
        {
          "name": "Field::pow_32",
          "start": 7053
        },
        {
          "name": "Field::sgn0",
          "start": 7455
        },
        {
          "name": "Field::lt",
          "start": 7538
        },
        {
          "name": "Field::from_le_bytes",
          "start": 8073
        },
        {
          "name": "Field::from_be_bytes",
          "start": 8820
        },
        {
          "name": "Field::from_le_bytes_checked",
          "start": 9611
        },
        {
          "name": "Field::from_be_bytes_checked",
          "start": 10620
        },
        {
          "name": "__assert_max_bit_size",
          "start": 11202
        },
        {
          "name": "__to_le_radix",
          "start": 11330
        },
        {
          "name": "__to_be_radix",
          "start": 11458
        },
        {
          "name": "__to_le_bits",
          "start": 12179
        },
        {
          "name": "__to_be_bits",
          "start": 12897
        },
        {
          "name": "modulus_num_bits",
          "start": 12972
        },
        {
          "name": "modulus_be_bits",
          "start": 13048
        },
        {
          "name": "modulus_le_bits",
          "start": 13124
        },
        {
          "name": "modulus_be_bytes",
          "start": 13200
        },
        {
          "name": "modulus_le_bytes",
          "start": 13276
        },
        {
          "name": "__field_less_than",
          "start": 13437
        },
        {
          "name": "field_less_than",
          "start": 13513
        },
        {
          "name": "lt_fallback",
          "start": 13589
        },
        {
          "name": "tests::test_to_be_bits",
          "start": 14551
        },
        {
          "name": "tests::test_to_le_bits",
          "start": 14824
        },
        {
          "name": "tests::test_to_be_bytes",
          "start": 15099
        },
        {
          "name": "tests::test_to_le_bytes",
          "start": 15405
        },
        {
          "name": "tests::test_to_be_radix",
          "start": 15711
        },
        {
          "name": "tests::test_to_le_radix",
          "start": 16293
        },
        {
          "name": "tests::test_to_le_radix_1",
          "start": 16893
        },
        {
          "name": "tests::test_to_le_radix_brillig_1",
          "start": 17346
        },
        {
          "name": "tests::test_to_le_radix_3",
          "start": 17700
        },
        {
          "name": "tests::test_to_le_radix_brillig_3",
          "start": 18011
        },
        {
          "name": "tests::test_to_le_radix_512",
          "start": 18439
        },
        {
          "name": "tests::not_enough_limbs_brillig",
          "start": 18848
        },
        {
          "name": "tests::not_enough_limbs",
          "start": 19044
        },
        {
          "name": "tests::non_zero_field_to_le_bytes_zero_limbs",
          "start": 19274
        },
        {
          "name": "tests::non_zero_field_to_be_bytes_zero_limbs",
          "start": 19469
        },
        {
          "name": "tests::test_field_less_than",
          "start": 19576
        },
        {
          "name": "tests::test_large_field_values_unconstrained",
          "start": 19831
        },
        {
          "name": "tests::test_large_field_values",
          "start": 20284
        },
        {
          "name": "tests::test_decomposition_edge_cases",
          "start": 20731
        },
        {
          "name": "tests::test_pow_32",
          "start": 21321
        },
        {
          "name": "tests::test_sgn0",
          "start": 21650
        },
        {
          "name": "tests::test_bit_decomposition_overflow",
          "start": 22072
        },
        {
          "name": "tests::test_byte_decomposition_overflow",
          "start": 22354
        },
        {
          "name": "tests::test_to_from_be_bytes_bn254_edge_cases",
          "start": 22571
        },
        {
          "name": "tests::test_to_from_le_bytes_bn254_edge_cases",
          "start": 24522
        },
        {
          "name": "tests::test_from_le_bytes_checked_accepts_modulus_minus_one",
          "start": 26457
        },
        {
          "name": "tests::test_from_le_bytes_checked_rejects_modulus",
          "start": 26936
        },
        {
          "name": "tests::test_from_le_bytes_checked_rejects_modulus_plus_one",
          "start": 27321
        },
        {
          "name": "tests::test_from_be_bytes_checked_accepts_modulus_minus_one",
          "start": 27776
        },
        {
          "name": "tests::test_from_be_bytes_checked_rejects_modulus",
          "start": 28265
        },
        {
          "name": "tests::test_from_be_bytes_checked_rejects_modulus_plus_one",
          "start": 28650
        },
        {
          "name": "tests::test_from_bytes_checked_small_n",
          "start": 29094
        },
        {
          "name": "tests::from_le_bits",
          "start": 29739
        },
        {
          "name": "tests::from_be_bits",
          "start": 30286
        },
        {
          "name": "tests::test_to_from_be_bits_bn254_edge_cases",
          "start": 30532
        },
        {
          "name": "tests::test_to_from_le_bits_bn254_edge_cases",
          "start": 32465
        },
        {
          "name": "tests::max_bit_size_too_large",
          "start": 34397
        }
      ],
      "path": "std/field/mod.nr",
      "source": "pub mod bn254;\nuse crate::{runtime::is_unconstrained, static_assert};\nuse bn254::lt as bn254_lt;\n\nimpl Field {\n    /// Asserts that `self` can be represented in `bit_size` bits.\n    ///\n    /// # Failures\n    /// Causes a constraint failure for `Field` values exceeding `2^{bit_size}`.\n    // docs:start:assert_max_bit_size\n    pub fn assert_max_bit_size<let BIT_SIZE: u32>(self) {\n        // docs:end:assert_max_bit_size\n        static_assert(\n            BIT_SIZE < modulus_num_bits() as u32,\n            \"BIT_SIZE must be less than modulus_num_bits\",\n        );\n        __assert_max_bit_size(self, BIT_SIZE);\n    }\n\n    /// Decomposes `self` into its little endian bit decomposition as a `[bool; N]` array.\n    /// This array will be zero padded should not all bits be necessary to represent `self`.\n    ///\n    /// # Failures\n    /// Causes a constraint failure for `Field` values exceeding `2^N` as the resulting array will not\n    /// be able to represent the original `Field`.\n    ///\n    /// # Safety\n    /// The bit decomposition returned is canonical and is guaranteed to not overflow the modulus.\n    // docs:start:to_le_bits\n    pub fn to_le_bits<let N: u32>(self: Self) -> [bool; N] {\n        // docs:end:to_le_bits\n        let bits = __to_le_bits(self);\n\n        if !is_unconstrained() {\n            // Ensure that the byte decomposition does not overflow the modulus\n            let p = modulus_le_bits();\n            assert(bits.len() <= p.len());\n            let mut ok = bits.len() != p.len();\n            for i in 0..N {\n                if !ok {\n                    if (bits[N - 1 - i] != p[N - 1 - i]) {\n                        assert(p[N - 1 - i]);\n                        ok = true;\n                    }\n                }\n            }\n            assert(ok);\n        }\n        bits\n    }\n\n    /// Decomposes `self` into its big endian bit decomposition as a `[bool; N]` array.\n    /// This array will be zero padded should not all bits be necessary to represent `self`.\n    ///\n    /// # Failures\n    /// Causes a constraint failure for `Field` values exceeding `2^N` as the resulting array will not\n    /// be able to represent the original `Field`.\n    ///\n    /// # Safety\n    /// The bit decomposition returned is canonical and is guaranteed to not overflow the modulus.\n    // docs:start:to_be_bits\n    pub fn to_be_bits<let N: u32>(self: Self) -> [bool; N] {\n        // docs:end:to_be_bits\n        let bits = __to_be_bits(self);\n\n        if !is_unconstrained() {\n            // Ensure that the decomposition does not overflow the modulus\n            let p = modulus_be_bits();\n            assert(bits.len() <= p.len());\n            let mut ok = bits.len() != p.len();\n            for i in 0..N {\n                if !ok {\n                    if (bits[i] != p[i]) {\n                        assert(p[i]);\n                        ok = true;\n                    }\n                }\n            }\n            assert(ok);\n        }\n        bits\n    }\n\n    /// Decomposes `self` into its little endian byte decomposition as a `[u8;N]` array\n    /// This array will be zero padded should not all bytes be necessary to represent `self`.\n    ///\n    /// # Failures\n    ///  The length N of the array must be big enough to contain all the bytes of the 'self',\n    ///  and no more than the number of bytes required to represent the field modulus\n    ///\n    /// # Safety\n    /// The result is ensured to be the canonical decomposition of the field element\n    // docs:start:to_le_bytes\n    pub fn to_le_bytes<let N: u32>(self: Self) -> [u8; N] {\n        // docs:end:to_le_bytes\n        static_assert(\n            N <= modulus_le_bytes().len(),\n            \"N must be less than or equal to modulus_le_bytes().len()\",\n        );\n        // Compute the byte decomposition\n        let bytes = self.to_le_radix(256);\n\n        if !is_unconstrained() {\n            // Ensure that the byte decomposition does not overflow the modulus\n            let p = modulus_le_bytes();\n            assert(bytes.len() <= p.len());\n            let mut ok = bytes.len() != p.len();\n            for i in 0..N {\n                if !ok {\n                    if (bytes[N - 1 - i] != p[N - 1 - i]) {\n                        assert(bytes[N - 1 - i] < p[N - 1 - i]);\n                        ok = true;\n                    }\n                }\n            }\n            assert(ok);\n        }\n        bytes\n    }\n\n    /// Decomposes `self` into its big endian byte decomposition as a `[u8;N]` array of length required to represent the field modulus\n    /// This array will be zero padded should not all bytes be necessary to represent `self`.\n    ///\n    /// # Failures\n    ///  The length N of the array must be big enough to contain all the bytes of the 'self',\n    ///  and no more than the number of bytes required to represent the field modulus\n    ///\n    /// # Safety\n    /// The result is ensured to be the canonical decomposition of the field element\n    // docs:start:to_be_bytes\n    pub fn to_be_bytes<let N: u32>(self: Self) -> [u8; N] {\n        // docs:end:to_be_bytes\n        static_assert(\n            N <= modulus_le_bytes().len(),\n            \"N must be less than or equal to modulus_le_bytes().len()\",\n        );\n        // Compute the byte decomposition\n        let bytes = self.to_be_radix(256);\n\n        if !is_unconstrained() {\n            // Ensure that the byte decomposition does not overflow the modulus\n            let p = modulus_be_bytes();\n            assert(bytes.len() <= p.len());\n            let mut ok = bytes.len() != p.len();\n            for i in 0..N {\n                if !ok {\n                    if (bytes[i] != p[i]) {\n                        assert(bytes[i] < p[i]);\n                        ok = true;\n                    }\n                }\n            }\n            assert(ok);\n        }\n        bytes\n    }\n\n    fn to_le_radix<let N: u32>(self: Self, radix: u32) -> [u8; N] {\n        // Brillig does not need an immediate radix\n        if !crate::runtime::is_unconstrained() {\n            static_assert(1 < radix, \"radix must be greater than 1\");\n            static_assert(radix <= 256, \"radix must be less than or equal to 256\");\n            static_assert(radix & (radix - 1) == 0, \"radix must be a power of 2\");\n        }\n        __to_le_radix(self, radix)\n    }\n\n    fn to_be_radix<let N: u32>(self: Self, radix: u32) -> [u8; N] {\n        // Brillig does not need an immediate radix\n        if !crate::runtime::is_unconstrained() {\n            static_assert(1 < radix, \"radix must be greater than 1\");\n            static_assert(radix <= 256, \"radix must be less than or equal to 256\");\n            static_assert(radix & (radix - 1) == 0, \"radix must be a power of 2\");\n        }\n        __to_be_radix(self, radix)\n    }\n\n    // Returns self to the power of the given exponent value.\n    // Caution: we assume the exponent fits into 32 bits\n    // using a bigger bit size impacts negatively the performance and should be done only if the exponent does not fit in 32 bits\n    pub fn pow_32(self, exponent: Field) -> Field {\n        let mut r: Field = 1;\n        let b: [bool; 32] = exponent.to_le_bits();\n\n        for i in 1..33 {\n            r *= r;\n            r = (b[32 - i] as Field) * (r * self) + (1 - b[32 - i] as Field) * r;\n        }\n        r\n    }\n\n    // Parity of (prime) Field element, i.e. sgn0(x mod p) = false if x `elem` {0, ..., p-1} is even, otherwise sgn0(x mod p) = true.\n    pub fn sgn0(self) -> bool {\n        (self as u8) % 2 == 1\n    }\n\n    pub fn lt(self, another: Field) -> bool {\n        if crate::compat::is_bn254() {\n            bn254_lt(self, another)\n        } else {\n            lt_fallback(self, another)\n        }\n    }\n\n    /// Convert a little endian byte array to a field element.\n    /// If the provided byte array overflows the field modulus then the Field will silently wrap around.\n    ///\n    /// # Failures\n    /// `N` must be no greater than the number of bytes required to represent the field modulus\n    // docs:start:from_le_bytes\n    pub fn from_le_bytes<let N: u32>(bytes: [u8; N]) -> Field {\n        // docs:end:from_le_bytes\n        static_assert(\n            N <= modulus_le_bytes().len(),\n            \"N must be less than or equal to modulus_le_bytes().len()\",\n        );\n        let mut v = 1;\n        let mut result = 0;\n\n        for i in 0..N {\n            result += (bytes[i] as Field) * v;\n            v = v * 256;\n        }\n        result\n    }\n\n    /// Convert a big endian byte array to a field element.\n    /// If the provided byte array overflows the field modulus then the Field will silently wrap around.\n    ///\n    /// # Failures\n    /// `N` must be no greater than the number of bytes required to represent the field modulus\n    // docs:start:from_be_bytes\n    pub fn from_be_bytes<let N: u32>(bytes: [u8; N]) -> Field {\n        // docs:end:from_be_bytes\n        static_assert(\n            N <= modulus_be_bytes().len(),\n            \"N must be less than or equal to modulus_be_bytes().len()\",\n        );\n        let mut v = 1;\n        let mut result = 0;\n\n        for i in 0..N {\n            result += (bytes[N - 1 - i] as Field) * v;\n            v = v * 256;\n        }\n        result\n    }\n\n    /// Convert a little endian byte array to a field element, asserting that the input is a\n    /// canonical representation (strictly less than the field modulus).\n    ///\n    /// # Failures\n    /// Causes a constraint failure if `bytes` encodes a value greater than or equal to the\n    /// field modulus.\n    // docs:start:from_le_bytes_checked\n    pub fn from_le_bytes_checked<let N: u32>(bytes: [u8; N]) -> Field {\n        // docs:end:from_le_bytes_checked\n        let p = modulus_le_bytes();\n        let mut ok = N != p.len();\n        for i in 0..N {\n            if !ok {\n                if bytes[N - 1 - i] != p[N - 1 - i] {\n                    assert(\n                        bytes[N - 1 - i] < p[N - 1 - i],\n                        \"input bytes are not a canonical field representation\",\n                    );\n                    ok = true;\n                }\n            }\n        }\n        assert(ok, \"input bytes are not a canonical field representation\");\n        Field::from_le_bytes(bytes)\n    }\n\n    /// Convert a big endian byte array to a field element, asserting that the input is a\n    /// canonical representation (strictly less than the field modulus).\n    ///\n    /// # Failures\n    /// Causes a constraint failure if `bytes` encodes a value greater than or equal to the\n    /// field modulus.\n    // docs:start:from_be_bytes_checked\n    pub fn from_be_bytes_checked<let N: u32>(bytes: [u8; N]) -> Field {\n        // docs:end:from_be_bytes_checked\n        let p = modulus_be_bytes();\n        let mut ok = N != p.len();\n        for i in 0..N {\n            if !ok {\n                if bytes[i] != p[i] {\n                    assert(bytes[i] < p[i], \"input bytes are not a canonical field representation\");\n                    ok = true;\n                }\n            }\n        }\n        assert(ok, \"input bytes are not a canonical field representation\");\n        Field::from_be_bytes(bytes)\n    }\n}\n\n#[builtin(apply_range_constraint)]\nfn __assert_max_bit_size(value: Field, bit_size: u32) {}\n\n// `_radix` must be less than 256\n#[builtin(to_le_radix)]\nfn __to_le_radix<let N: u32>(value: Field, radix: u32) -> [u8; N] {}\n\n// `_radix` must be less than 256\n#[builtin(to_be_radix)]\nfn __to_be_radix<let N: u32>(value: Field, radix: u32) -> [u8; N] {}\n\n/// Decomposes `self` into its little endian bit decomposition as a `[bool; N]` array.\n/// This array will be zero padded should not all bits be necessary to represent `self`.\n///\n/// # Failures\n/// Causes a constraint failure for `Field` values exceeding `2^N` as the resulting array will not\n/// be able to represent the original `Field`.\n///\n/// # Safety\n/// Values of `N` equal to or greater than the number of bits necessary to represent the `Field` modulus\n/// (e.g. 254 for the BN254 field) allow for multiple bit decompositions. This is due to how the `Field` will\n/// wrap around due to overflow when verifying the decomposition.\n#[builtin(to_le_bits)]\nfn __to_le_bits<let N: u32>(value: Field) -> [bool; N] {}\n\n/// Decomposes `self` into its big endian bit decomposition as a `[bool; N]` array.\n/// This array will be zero padded should not all bits be necessary to represent `self`.\n///\n/// # Failures\n/// Causes a constraint failure for `Field` values exceeding `2^N` as the resulting array will not\n/// be able to represent the original `Field`.\n///\n/// # Safety\n/// Values of `N` equal to or greater than the number of bits necessary to represent the `Field` modulus\n/// (e.g. 254 for the BN254 field) allow for multiple bit decompositions. This is due to how the `Field` will\n/// wrap around due to overflow when verifying the decomposition.\n#[builtin(to_be_bits)]\nfn __to_be_bits<let N: u32>(value: Field) -> [bool; N] {}\n\n#[builtin(modulus_num_bits)]\npub comptime fn modulus_num_bits() -> u64 {}\n\n#[builtin(modulus_be_bits)]\npub comptime fn modulus_be_bits() -> [bool] {}\n\n#[builtin(modulus_le_bits)]\npub comptime fn modulus_le_bits() -> [bool] {}\n\n#[builtin(modulus_be_bytes)]\npub comptime fn modulus_be_bytes() -> [u8] {}\n\n#[builtin(modulus_le_bytes)]\npub comptime fn modulus_le_bytes() -> [u8] {}\n\n/// An unconstrained only built in to efficiently compare fields.\n#[builtin(field_less_than)]\nunconstrained fn __field_less_than(x: Field, y: Field) -> bool {}\n\npub(crate) unconstrained fn field_less_than(x: Field, y: Field) -> bool {\n    __field_less_than(x, y)\n}\n\nfn lt_fallback(x: Field, y: Field) -> bool {\n    if is_unconstrained() {\n        // Safety: unconstrained context\n        unsafe {\n            field_less_than(x, y)\n        }\n    } else {\n        let x_bytes: [u8; 32] = x.to_le_bytes();\n        let y_bytes: [u8; 32] = y.to_le_bytes();\n        let mut x_is_lt = false;\n        let mut done = false;\n        for i in 0..32 {\n            if (!done) {\n                let x_byte = x_bytes[32 - 1 - i] as u8;\n                let y_byte = y_bytes[32 - 1 - i] as u8;\n                let bytes_match = x_byte == y_byte;\n                if !bytes_match {\n                    x_is_lt = x_byte < y_byte;\n                    done = true;\n                }\n            }\n        }\n        x_is_lt\n    }\n}\n\nmod tests {\n    use crate::{panic::panic, runtime, static_assert};\n    use super::{\n        field_less_than, modulus_be_bits, modulus_be_bytes, modulus_le_bits, modulus_le_bytes,\n    };\n\n    #[test]\n    // docs:start:to_be_bits_example\n    fn test_to_be_bits() {\n        let field = 2;\n        let bits: [bool; 8] = field.to_be_bits();\n        assert_eq(bits, [false, false, false, false, false, false, true, false]);\n    }\n    // docs:end:to_be_bits_example\n\n    #[test]\n    // docs:start:to_le_bits_example\n    fn test_to_le_bits() {\n        let field = 2;\n        let bits: [bool; 8] = field.to_le_bits();\n        assert_eq(bits, [false, true, false, false, false, false, false, false]);\n    }\n    // docs:end:to_le_bits_example\n\n    #[test]\n    // docs:start:to_be_bytes_example\n    fn test_to_be_bytes() {\n        let field = 2;\n        let bytes: [u8; 8] = field.to_be_bytes();\n        assert_eq(bytes, [0, 0, 0, 0, 0, 0, 0, 2]);\n        assert_eq(Field::from_be_bytes::<8>(bytes), field);\n    }\n    // docs:end:to_be_bytes_example\n\n    #[test]\n    // docs:start:to_le_bytes_example\n    fn test_to_le_bytes() {\n        let field = 2;\n        let bytes: [u8; 8] = field.to_le_bytes();\n        assert_eq(bytes, [2, 0, 0, 0, 0, 0, 0, 0]);\n        assert_eq(Field::from_le_bytes::<8>(bytes), field);\n    }\n    // docs:end:to_le_bytes_example\n\n    #[test]\n    // docs:start:to_be_radix_example\n    fn test_to_be_radix() {\n        // 259, in base 256, big endian, is [1, 3].\n        // i.e. 3 * 256^0 + 1 * 256^1\n        let field = 259;\n\n        // The radix (in this example, 256) must be a power of 2.\n        // The length of the returned byte array can be specified to be\n        // >= the amount of space needed.\n        let bytes: [u8; 8] = field.to_be_radix(256);\n        assert_eq(bytes, [0, 0, 0, 0, 0, 0, 1, 3]);\n        assert_eq(Field::from_be_bytes::<8>(bytes), field);\n    }\n    // docs:end:to_be_radix_example\n\n    #[test]\n    // docs:start:to_le_radix_example\n    fn test_to_le_radix() {\n        // 259, in base 256, little endian, is [3, 1].\n        // i.e. 3 * 256^0 + 1 * 256^1\n        let field = 259;\n\n        // The radix (in this example, 256) must be a power of 2.\n        // The length of the returned byte array can be specified to be\n        // >= the amount of space needed.\n        let bytes: [u8; 8] = field.to_le_radix(256);\n        assert_eq(bytes, [3, 1, 0, 0, 0, 0, 0, 0]);\n        assert_eq(Field::from_le_bytes::<8>(bytes), field);\n    }\n    // docs:end:to_le_radix_example\n\n    #[test(should_fail_with = \"radix must be greater than 1\")]\n    fn test_to_le_radix_1() {\n        // this test should only fail in constrained mode\n        if !runtime::is_unconstrained() {\n            let field = 2;\n            let _: [u8; 8] = field.to_le_radix(1);\n        } else {\n            panic(\"radix must be greater than 1\");\n        }\n    }\n\n    // Updated test to account for Brillig restriction that radix must be greater than 2\n    #[test(should_fail_with = \"radix must be greater than 1\")]\n    fn test_to_le_radix_brillig_1() {\n        // this test should only fail in constrained mode\n        if !runtime::is_unconstrained() {\n            let field = 1;\n            let _: [u8; 8] = field.to_le_radix(1);\n        } else {\n            panic(\"radix must be greater than 1\");\n        }\n    }\n\n    #[test(should_fail_with = \"radix must be a power of 2\")]\n    fn test_to_le_radix_3() {\n        // this test should only fail in constrained mode\n        if !runtime::is_unconstrained() {\n            let field = 2;\n            let _: [u8; 8] = field.to_le_radix(3);\n        } else {\n            panic(\"radix must be a power of 2\");\n        }\n    }\n\n    #[test]\n    fn test_to_le_radix_brillig_3() {\n        // this test should only fail in constrained mode\n        if runtime::is_unconstrained() {\n            let field = 1;\n            let out: [u8; 8] = field.to_le_radix(3);\n            let mut expected = [0; 8];\n            expected[0] = 1;\n            assert(out == expected, \"unexpected result\");\n        }\n    }\n\n    #[test(should_fail_with = \"radix must be less than or equal to 256\")]\n    fn test_to_le_radix_512() {\n        // this test should only fail in constrained mode\n        if !runtime::is_unconstrained() {\n            let field = 2;\n            let _: [u8; 8] = field.to_le_radix(512);\n        } else {\n            panic(\"radix must be less than or equal to 256\")\n        }\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 16 limbs\")]\n    unconstrained fn not_enough_limbs_brillig() {\n        let _: [u8; 16] = 0x100000000000000000000000000000000.to_le_bytes();\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 16 limbs\")]\n    fn not_enough_limbs() {\n        let _: [u8; 16] = 0x100000000000000000000000000000000.to_le_bytes();\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 0 limbs\")]\n    unconstrained fn non_zero_field_to_le_bytes_zero_limbs() {\n        let _: [u8; 0] = 5.to_le_bytes();\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 0 limbs\")]\n    unconstrained fn non_zero_field_to_be_bytes_zero_limbs() {\n        let _: [u8; 0] = 5.to_be_bytes();\n    }\n\n    #[test]\n    unconstrained fn test_field_less_than() {\n        assert(field_less_than(0, 1));\n        assert(field_less_than(0, 0x100));\n        assert(field_less_than(0x100, 0 - 1));\n        assert(!field_less_than(0 - 1, 0));\n    }\n\n    #[test]\n    unconstrained fn test_large_field_values_unconstrained() {\n        let large_field = 0xffffffffffffffff;\n\n        let bits: [bool; 64] = large_field.to_le_bits();\n        assert_eq(bits[0], true);\n\n        let bytes: [u8; 8] = large_field.to_le_bytes();\n        assert_eq(Field::from_le_bytes::<8>(bytes), large_field);\n\n        let radix_bytes: [u8; 8] = large_field.to_le_radix(256);\n        assert_eq(Field::from_le_bytes::<8>(radix_bytes), large_field);\n    }\n\n    #[test]\n    fn test_large_field_values() {\n        let large_val = 0xffffffffffffffff;\n\n        let bits: [bool; 64] = large_val.to_le_bits();\n        assert_eq(bits[0], true);\n\n        let bytes: [u8; 8] = large_val.to_le_bytes();\n        assert_eq(Field::from_le_bytes::<8>(bytes), large_val);\n\n        let radix_bytes: [u8; 8] = large_val.to_le_radix(256);\n        assert_eq(Field::from_le_bytes::<8>(radix_bytes), large_val);\n    }\n\n    #[test]\n    fn test_decomposition_edge_cases() {\n        let zero_bits: [bool; 8] = 0.to_le_bits();\n        assert_eq(zero_bits, [false; 8]);\n\n        let zero_bytes: [u8; 8] = 0.to_le_bytes();\n        assert_eq(zero_bytes, [0; 8]);\n\n        let one_bits: [bool; 8] = 1.to_le_bits();\n        let expected: [bool; 8] = [true, false, false, false, false, false, false, false];\n        assert_eq(one_bits, expected);\n\n        let pow2_bits: [bool; 8] = 4.to_le_bits();\n        let expected: [bool; 8] = [false, false, true, false, false, false, false, false];\n        assert_eq(pow2_bits, expected);\n    }\n\n    #[test]\n    fn test_pow_32() {\n        assert_eq(2.pow_32(3), 8);\n        assert_eq(3.pow_32(2), 9);\n        assert_eq(5.pow_32(0), 1);\n        assert_eq(7.pow_32(1), 7);\n\n        assert_eq(2.pow_32(10), 1024);\n\n        assert_eq(0.pow_32(5), 0);\n        assert_eq(0.pow_32(0), 1);\n\n        assert_eq(1.pow_32(100), 1);\n    }\n\n    #[test]\n    fn test_sgn0() {\n        assert_eq(0.sgn0(), false);\n        assert_eq(2.sgn0(), false);\n        assert_eq(4.sgn0(), false);\n        assert_eq(100.sgn0(), false);\n\n        assert_eq(1.sgn0(), true);\n        assert_eq(3.sgn0(), true);\n        assert_eq(5.sgn0(), true);\n        assert_eq(101.sgn0(), true);\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 8 limbs\")]\n    fn test_bit_decomposition_overflow() {\n        // 8 bits can't represent large field values\n        let large_val = 0x1000000000000000;\n        let _: [bool; 8] = large_val.to_le_bits();\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 4 limbs\")]\n    fn test_byte_decomposition_overflow() {\n        // 4 bytes can't represent large field values\n        let large_val = 0x1000000000000000;\n        let _: [u8; 4] = large_val.to_le_bytes();\n    }\n\n    #[test]\n    fn test_to_from_be_bytes_bn254_edge_cases() {\n        if crate::compat::is_bn254() {\n            // checking that decrementing this byte produces the expected 32 BE bytes for (modulus - 1)\n            let mut p_minus_1_bytes: [u8; 32] = modulus_be_bytes().as_array();\n            assert(p_minus_1_bytes[32 - 1] > 0);\n            p_minus_1_bytes[32 - 1] -= 1;\n\n            let p_minus_1 = Field::from_be_bytes::<32>(p_minus_1_bytes);\n            assert_eq(p_minus_1 + 1, 0);\n\n            // checking that converting (modulus - 1) from and then to 32 BE bytes produces the same bytes\n            let p_minus_1_converted_bytes: [u8; 32] = p_minus_1.to_be_bytes();\n            assert_eq(p_minus_1_converted_bytes, p_minus_1_bytes);\n\n            // checking that incrementing this byte produces 32 BE bytes for (modulus + 1)\n            let mut p_plus_1_bytes: [u8; 32] = modulus_be_bytes().as_array();\n            assert(p_plus_1_bytes[32 - 1] < 255);\n            p_plus_1_bytes[32 - 1] += 1;\n\n            let p_plus_1 = Field::from_be_bytes::<32>(p_plus_1_bytes);\n            assert_eq(p_plus_1, 1);\n\n            // checking that converting p_plus_1 to 32 BE bytes produces the same\n            // byte set to 1 as p_plus_1_bytes and otherwise zeroes\n            let mut p_plus_1_converted_bytes: [u8; 32] = p_plus_1.to_be_bytes();\n            assert_eq(p_plus_1_converted_bytes[32 - 1], 1);\n            p_plus_1_converted_bytes[32 - 1] = 0;\n            assert_eq(p_plus_1_converted_bytes, [0; 32]);\n\n            // checking that Field::from_be_bytes::<32> on the Field modulus produces 0\n            assert_eq(modulus_be_bytes().len(), 32);\n            let p = Field::from_be_bytes::<32>(modulus_be_bytes().as_array());\n            assert_eq(p, 0);\n\n            // checking that converting 0 to 32 BE bytes produces 32 zeroes\n            let p_bytes: [u8; 32] = 0.to_be_bytes();\n            assert_eq(p_bytes, [0; 32]);\n        }\n    }\n\n    #[test]\n    fn test_to_from_le_bytes_bn254_edge_cases() {\n        if crate::compat::is_bn254() {\n            // checking that decrementing this byte produces the expected 32 LE bytes for (modulus - 1)\n            let mut p_minus_1_bytes: [u8; 32] = modulus_le_bytes().as_array();\n            assert(p_minus_1_bytes[0] > 0);\n            p_minus_1_bytes[0] -= 1;\n\n            let p_minus_1 = Field::from_le_bytes::<32>(p_minus_1_bytes);\n            assert_eq(p_minus_1 + 1, 0);\n\n            // checking that converting (modulus - 1) from and then to 32 BE bytes produces the same bytes\n            let p_minus_1_converted_bytes: [u8; 32] = p_minus_1.to_le_bytes();\n            assert_eq(p_minus_1_converted_bytes, p_minus_1_bytes);\n\n            // checking that incrementing this byte produces 32 LE bytes for (modulus + 1)\n            let mut p_plus_1_bytes: [u8; 32] = modulus_le_bytes().as_array();\n            assert(p_plus_1_bytes[0] < 255);\n            p_plus_1_bytes[0] += 1;\n\n            let p_plus_1 = Field::from_le_bytes::<32>(p_plus_1_bytes);\n            assert_eq(p_plus_1, 1);\n\n            // checking that converting p_plus_1 to 32 LE bytes produces the same\n            // byte set to 1 as p_plus_1_bytes and otherwise zeroes\n            let mut p_plus_1_converted_bytes: [u8; 32] = p_plus_1.to_le_bytes();\n            assert_eq(p_plus_1_converted_bytes[0], 1);\n            p_plus_1_converted_bytes[0] = 0;\n            assert_eq(p_plus_1_converted_bytes, [0; 32]);\n\n            // checking that Field::from_le_bytes::<32> on the Field modulus produces 0\n            assert_eq(modulus_le_bytes().len(), 32);\n            let p = Field::from_le_bytes::<32>(modulus_le_bytes().as_array());\n            assert_eq(p, 0);\n\n            // checking that converting 0 to 32 LE bytes produces 32 zeroes\n            let p_bytes: [u8; 32] = 0.to_le_bytes();\n            assert_eq(p_bytes, [0; 32]);\n        }\n    }\n\n    #[test]\n    fn test_from_le_bytes_checked_accepts_modulus_minus_one() {\n        if crate::compat::is_bn254() {\n            let mut p_minus_1_bytes: [u8; 32] = modulus_le_bytes().as_array();\n            assert(p_minus_1_bytes[0] > 0);\n            p_minus_1_bytes[0] -= 1;\n            let p_minus_1 = Field::from_le_bytes_checked::<32>(p_minus_1_bytes);\n            assert_eq(p_minus_1 + 1, 0);\n        }\n    }\n\n    #[test(should_fail_with = \"input bytes are not a canonical field representation\")]\n    fn test_from_le_bytes_checked_rejects_modulus() {\n        if crate::compat::is_bn254() {\n            let _ = Field::from_le_bytes_checked::<32>(modulus_le_bytes().as_array());\n        } else {\n            panic(\"input bytes are not a canonical field representation\");\n        }\n    }\n\n    #[test(should_fail_with = \"input bytes are not a canonical field representation\")]\n    fn test_from_le_bytes_checked_rejects_modulus_plus_one() {\n        if crate::compat::is_bn254() {\n            let mut p_plus_1_bytes: [u8; 32] = modulus_le_bytes().as_array();\n            assert(p_plus_1_bytes[0] < 255);\n            p_plus_1_bytes[0] += 1;\n            let _ = Field::from_le_bytes_checked::<32>(p_plus_1_bytes);\n        } else {\n            panic(\"input bytes are not a canonical field representation\");\n        }\n    }\n\n    #[test]\n    fn test_from_be_bytes_checked_accepts_modulus_minus_one() {\n        if crate::compat::is_bn254() {\n            let mut p_minus_1_bytes: [u8; 32] = modulus_be_bytes().as_array();\n            assert(p_minus_1_bytes[32 - 1] > 0);\n            p_minus_1_bytes[32 - 1] -= 1;\n            let p_minus_1 = Field::from_be_bytes_checked::<32>(p_minus_1_bytes);\n            assert_eq(p_minus_1 + 1, 0);\n        }\n    }\n\n    #[test(should_fail_with = \"input bytes are not a canonical field representation\")]\n    fn test_from_be_bytes_checked_rejects_modulus() {\n        if crate::compat::is_bn254() {\n            let _ = Field::from_be_bytes_checked::<32>(modulus_be_bytes().as_array());\n        } else {\n            panic(\"input bytes are not a canonical field representation\");\n        }\n    }\n\n    #[test(should_fail_with = \"input bytes are not a canonical field representation\")]\n    fn test_from_be_bytes_checked_rejects_modulus_plus_one() {\n        if crate::compat::is_bn254() {\n            let mut p_plus_1_bytes: [u8; 32] = modulus_be_bytes().as_array();\n            assert(p_plus_1_bytes[32 - 1] < 255);\n            p_plus_1_bytes[32 - 1] += 1;\n            let _ = Field::from_be_bytes_checked::<32>(p_plus_1_bytes);\n        } else {\n            panic(\"input bytes are not a canonical field representation\");\n        }\n    }\n\n    #[test]\n    fn test_from_bytes_checked_small_n() {\n        // For N < modulus_bytes().len(), the input cannot overflow the modulus, so the checked\n        // variants behave identically to the unchecked ones.\n        let le_bytes: [u8; 8] = [3, 1, 0, 0, 0, 0, 0, 0];\n        assert_eq(Field::from_le_bytes_checked::<8>(le_bytes), 259);\n        let be_bytes: [u8; 8] = [0, 0, 0, 0, 0, 0, 1, 3];\n        assert_eq(Field::from_be_bytes_checked::<8>(be_bytes), 259);\n    }\n\n    /// Convert a little endian bit array to a field element.\n    /// If the provided bit array overflows the field modulus then the Field will silently wrap around.\n    fn from_le_bits<let N: u32>(bits: [bool; N]) -> Field {\n        static_assert(\n            N <= modulus_le_bits().len(),\n            \"N must be less than or equal to modulus_le_bits().len()\",\n        );\n        let mut v = 1;\n        let mut result = 0;\n\n        for i in 0..N {\n            result += (bits[i] as Field) * v;\n            v = v * 2;\n        }\n        result\n    }\n\n    /// Convert a big endian bit array to a field element.\n    /// If the provided bit array overflows the field modulus then the Field will silently wrap around.\n    fn from_be_bits<let N: u32>(bits: [bool; N]) -> Field {\n        let mut v = 1;\n        let mut result = 0;\n\n        for i in 0..N {\n            result += (bits[N - 1 - i] as Field) * v;\n            v = v * 2;\n        }\n        result\n    }\n\n    #[test]\n    fn test_to_from_be_bits_bn254_edge_cases() {\n        if crate::compat::is_bn254() {\n            // checking that decrementing this bit produces the expected 254 BE bits for (modulus - 1)\n            let mut p_minus_1_bits: [bool; 254] = modulus_be_bits().as_array();\n            assert(p_minus_1_bits[254 - 1]);\n            p_minus_1_bits[254 - 1] = false;\n\n            let p_minus_1 = from_be_bits::<254>(p_minus_1_bits);\n            assert_eq(p_minus_1 + 1, 0);\n\n            // checking that converting (modulus - 1) from and then to 254 BE bits produces the same bits\n            let p_minus_1_converted_bits: [bool; 254] = p_minus_1.to_be_bits();\n            assert_eq(p_minus_1_converted_bits, p_minus_1_bits);\n\n            // checking that incrementing this bit produces 254 BE bits for (modulus + 4)\n            let mut p_plus_4_bits: [bool; 254] = modulus_be_bits().as_array();\n            assert(!p_plus_4_bits[254 - 3]);\n            p_plus_4_bits[254 - 3] = true;\n\n            let p_plus_4 = from_be_bits::<254>(p_plus_4_bits);\n            assert_eq(p_plus_4, 4);\n\n            // checking that converting p_plus_4 to 254 BE bits produces the same\n            // bit set to 1 as p_plus_4_bits and otherwise zeroes\n            let mut p_plus_4_converted_bits: [bool; 254] = p_plus_4.to_be_bits();\n            assert(p_plus_4_converted_bits[254 - 3]);\n            p_plus_4_converted_bits[254 - 3] = false;\n            assert_eq(p_plus_4_converted_bits, [false; 254]);\n\n            // checking that Field::from_be_bits::<254> on the Field modulus produces 0\n            assert_eq(modulus_be_bits().len(), 254);\n            let p = from_be_bits::<254>(modulus_be_bits().as_array());\n            assert_eq(p, 0);\n\n            // checking that converting 0 to 254 BE bits produces 254 false values\n            let p_bits: [bool; 254] = 0.to_be_bits();\n            assert_eq(p_bits, [false; 254]);\n        }\n    }\n\n    #[test]\n    fn test_to_from_le_bits_bn254_edge_cases() {\n        if crate::compat::is_bn254() {\n            // checking that decrementing this bit produces the expected 254 LE bits for (modulus - 1)\n            let mut p_minus_1_bits: [bool; 254] = modulus_le_bits().as_array();\n            assert(p_minus_1_bits[0]);\n            p_minus_1_bits[0] = false;\n\n            let p_minus_1 = from_le_bits::<254>(p_minus_1_bits);\n            assert_eq(p_minus_1 + 1, 0);\n\n            // checking that converting (modulus - 1) from and then to 254 BE bits produces the same bits\n            let p_minus_1_converted_bits: [bool; 254] = p_minus_1.to_le_bits();\n            assert_eq(p_minus_1_converted_bits, p_minus_1_bits);\n\n            // checking that incrementing this bit produces 254 LE bits for (modulus + 4)\n            let mut p_plus_4_bits: [bool; 254] = modulus_le_bits().as_array();\n            assert(!p_plus_4_bits[2]);\n            p_plus_4_bits[2] = true;\n\n            let p_plus_4 = from_le_bits::<254>(p_plus_4_bits);\n            assert_eq(p_plus_4, 4);\n\n            // checking that converting p_plus_4 to 254 LE bits produces the same\n            // bit set to 1 as p_plus_4_bits and otherwise zeroes\n            let mut p_plus_4_converted_bits: [bool; 254] = p_plus_4.to_le_bits();\n            assert(p_plus_4_converted_bits[2]);\n            p_plus_4_converted_bits[2] = false;\n            assert_eq(p_plus_4_converted_bits, [false; 254]);\n\n            // checking that Field::from_le_bits::<254> on the Field modulus produces 0\n            assert_eq(modulus_le_bits().len(), 254);\n            let p = from_le_bits::<254>(modulus_le_bits().as_array());\n            assert_eq(p, 0);\n\n            // checking that converting 0 to 254 LE bits produces 254 false values\n            let p_bits: [bool; 254] = 0.to_le_bits();\n            assert_eq(p_bits, [false; 254]);\n        }\n    }\n\n    #[test(should_fail_with = \"call to assert_max_bit_size\")]\n    fn max_bit_size_too_large() {\n        let x: Field = 0x010000;\n        x.assert_max_bit_size::<16>();\n    }\n\n}\n"
    },
    "161": {
      "function_locations": [
        {
          "name": "enqueue_note_for_validation",
          "start": 3676
        },
        {
          "name": "enqueue_event_for_validation",
          "start": 5039
        },
        {
          "name": "validate_and_store_enqueued_notes_and_events",
          "start": 5707
        },
        {
          "name": "get_pending_partial_notes_completion_logs",
          "start": 7003
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/processing/mod.nr",
      "source": "pub(crate) mod event_validation_request;\npub mod offchain;\n\npub use crate::oracle::tx_resolution::ResolvedTx;\n\nmod note_validation_request;\npub use note_validation_request::NoteValidationRequest;\n\npub mod log_retrieval_request;\npub mod log_retrieval_response;\npub(crate) mod pending_tagged_log;\npub(crate) mod provided_secret;\n\nuse crate::{\n    ephemeral::EphemeralArray,\n    event::EventSelector,\n    messages::{\n        encoding::MESSAGE_CIPHERTEXT_LEN,\n        logs::{event::MAX_EVENT_SERIALIZED_LEN, note::MAX_NOTE_PACKED_LEN},\n        processing::{log_retrieval_request::LogRetrievalRequest, log_retrieval_response::LogRetrievalResponse},\n    },\n    oracle::message_processing,\n    partial_notes::DeliveredPendingPartialNote,\n};\nuse crate::protocol::{\n    address::AztecAddress,\n    constants::DOM_SEP__NOTE_COMPLETION_LOG_TAG,\n    hash::{compute_log_tag, sha256_to_field},\n    traits::{Deserialize, Serialize},\n};\nuse event_validation_request::EventValidationRequest;\n\nglobal NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT: Field = sha256_to_field(\n    \"AZTEC_NR::NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT\".as_bytes(),\n);\n\nglobal EVENT_VALIDATION_REQUESTS_ARRAY_BASE_SLOT: Field = sha256_to_field(\n    \"AZTEC_NR::EVENT_VALIDATION_REQUESTS_ARRAY_BASE_SLOT\".as_bytes(),\n);\n\nglobal LOG_RETRIEVAL_REQUESTS_ARRAY_BASE_SLOT: Field = sha256_to_field(\n    \"AZTEC_NR::LOG_RETRIEVAL_REQUESTS_ARRAY_BASE_SLOT\".as_bytes(),\n);\n\n/// An offchain-delivered message with resolved context, ready for processing during sync.\n#[derive(Serialize, Deserialize)]\npub struct OffchainMessageWithTx {\n    pub message_ciphertext: BoundedVec<Field, MESSAGE_CIPHERTEXT_LEN>,\n    pub resolved_tx: ResolvedTx,\n}\n\n/// Enqueues a note for validation and storage by PXE.\n///\n/// Once validated, the note becomes retrievable via the `get_notes` oracle. The note will be scoped to\n/// `contract_address`, meaning other contracts will not be able to access it unless authorized.\n///\n/// In order for the note validation and insertion to occur, `validate_and_store_enqueued_notes_and_events` must be\n/// later called. For optimal performance, accumulate as many note validation requests as possible and then validate\n/// them all at the end (which results in PXE minimizing the number of network round-trips).\n///\n/// The `packed_note` is what `getNotes` will later return. PXE indexes notes by `storage_slot`, so this value is\n/// typically used to filter notes that correspond to different state variables. `note_hash` and `nullifier` are the\n/// inner hashes, i.e. the raw hashes returned by `NoteHash::compute_note_hash` and `NoteHash::compute_nullifier`. PXE\n/// will verify that the siloed unique note hash was inserted into the tree at `tx_hash`, and will store the nullifier\n/// to later check for nullification.\n///\n/// `owner` is the address used in note hash and nullifier computation, often requiring knowledge of their nullifier\n/// secret key.\n///\n/// `scope` is the account to which the note message was delivered (i.e. the address the message was encrypted to).\n/// This determines which PXE account can see the note - other accounts will not be able to access it (e.g. other\n/// accounts will not be able to see one another's token balance notes, even in the same PXE) unless authorized. In\n/// most cases `recipient` equals `owner`, but they can differ in scenarios like delegated discovery.\npub unconstrained fn enqueue_note_for_validation(\n    contract_address: AztecAddress,\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n    note_nonce: Field,\n    packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n    note_hash: Field,\n    nullifier: Field,\n    tx_hash: Field,\n) {\n    EphemeralArray::at(NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT).push(NoteValidationRequest::new(\n        contract_address,\n        owner,\n        storage_slot,\n        randomness,\n        note_nonce,\n        packed_note,\n        note_hash,\n        nullifier,\n        tx_hash,\n    ))\n}\n\n/// Enqueues an event for validation and storage by PXE.\n///\n/// This is the primary way for custom message handlers (registered via\n/// [`crate::macros::AztecConfig::custom_message_handler`]) to deliver reassembled events back to PXE after processing\n/// application-specific message formats.\n///\n/// In order for the event validation and insertion to occur, `validate_and_store_enqueued_notes_and_events` must be\n/// later called. For optimal performance, accumulate as many event validation requests as possible and then validate\n/// them all at the end (which results in PXE minimizing the number of network round-trips).\n///\n/// Note that `validate_and_store_enqueued_notes_and_events` is called by Aztec.nr after processing messages, so custom\n/// message processors do not need to be concerned with this.\npub unconstrained fn enqueue_event_for_validation(\n    contract_address: AztecAddress,\n    event_type_id: EventSelector,\n    randomness: Field,\n    serialized_event: BoundedVec<Field, MAX_EVENT_SERIALIZED_LEN>,\n    event_commitment: Field,\n    tx_hash: Field,\n) {\n    EphemeralArray::at(EVENT_VALIDATION_REQUESTS_ARRAY_BASE_SLOT).push(EventValidationRequest::new(\n        contract_address,\n        event_type_id,\n        randomness,\n        serialized_event,\n        event_commitment,\n        tx_hash,\n    ))\n}\n\n/// Validates and stores all enqueued notes and events.\n///\n/// Processes all requests enqueued via [`enqueue_note_for_validation`] and [`enqueue_event_for_validation`], inserting\n/// them into the note database and event store respectively, making them queryable via `get_notes` oracle and our TS\n/// API (PXE::getPrivateEvents).\npub unconstrained fn validate_and_store_enqueued_notes_and_events(scope: AztecAddress) {\n    message_processing::validate_and_store_enqueued_notes_and_events(\n        EphemeralArray::at(NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT),\n        EphemeralArray::at(EVENT_VALIDATION_REQUESTS_ARRAY_BASE_SLOT),\n        scope,\n    );\n\n    // Defensive clearing: purge the queues after processing to prevent double-processing if this function is called\n    // more than once in the same call frame. It is currently defensive because we only call this once per sync run.\n    let _ = EphemeralArray::<NoteValidationRequest>::at(NOTE_VALIDATION_REQUESTS_ARRAY_BASE_SLOT).clear();\n    let _ = EphemeralArray::<EventValidationRequest>::at(EVENT_VALIDATION_REQUESTS_ARRAY_BASE_SLOT).clear();\n}\n\n/// Efficiently queries the node for logs that result in the completion of all `DeliveredPendingPartialNote`s in an\n/// `EphemeralArray` by performing all node communication concurrently. Returns a nested `EphemeralArray`, one inner\n/// array per pending partial note, each containing all matching `LogRetrievalResponse`s (which may be empty if no\n/// logs were found).\npub(crate) unconstrained fn get_pending_partial_notes_completion_logs(\n    contract_address: AztecAddress,\n    pending_partial_notes: EphemeralArray<DeliveredPendingPartialNote>,\n) -> EphemeralArray<EphemeralArray<LogRetrievalResponse>> {\n    let log_retrieval_requests = EphemeralArray::at(LOG_RETRIEVAL_REQUESTS_ARRAY_BASE_SLOT);\n\n    pending_partial_notes.for_each(|_i, pending_partial_note| {\n        // Partial note completion logs are emitted with a domain-separated tag. To find matching logs, we apply the\n        // same domain separation to the stored raw tag.\n        let log_tag = compute_log_tag(\n            pending_partial_note.note_completion_log_tag,\n            DOM_SEP__NOTE_COMPLETION_LOG_TAG,\n        );\n        log_retrieval_requests.push(LogRetrievalRequest::new(contract_address, log_tag));\n    });\n\n    let responses = message_processing::get_logs_by_tag(log_retrieval_requests);\n\n    // Defensive clearing: prevent stale requests if this function is called more than once in the same call frame.\n    let _ = log_retrieval_requests.clear();\n\n    responses\n}\n"
    },
    "163": {
      "function_locations": [
        {
          "name": "receive",
          "start": 2673
        },
        {
          "name": "sync_inbox",
          "start": 3451
        },
        {
          "name": "test::setup",
          "start": 5230
        },
        {
          "name": "test::make_msg",
          "start": 5560
        },
        {
          "name": "test::advance_by",
          "start": 5843
        },
        {
          "name": "test::empty_inbox_returns_empty_result",
          "start": 6034
        },
        {
          "name": "test::multiple_messages_mixed_expiration",
          "start": 6422
        },
        {
          "name": "test::redelivery_is_idempotent",
          "start": 8404
        },
        {
          "name": "test::redelivery_after_processing_keeps_processed_guard",
          "start": 9269
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/processing/offchain/mod.nr",
      "source": "use crate::{\n    context::UtilityContext,\n    ephemeral::EphemeralArray,\n    messages::{encoding::MESSAGE_CIPHERTEXT_LEN, processing::OffchainMessageWithTx},\n    oracle::{contract_sync::set_contract_sync_cache_invalid, tx_resolution::get_resolved_txs},\n    protocol::{address::AztecAddress, traits::{Deserialize, Serialize}},\n};\n\nmod reception;\nuse reception::OffchainReception;\n\n/// Maximum number of offchain messages accepted by `offchain_receive` in a single call.\npub global MAX_OFFCHAIN_MESSAGES_PER_RECEIVE_CALL: u32 = 16;\n\n/// A function that manages offchain-delivered messages for processing during sync.\n///\n/// Offchain messages are messages that are not broadcasted via onchain logs. They are instead delivered to the\n/// recipient by calling the `offchain_receive` utility function (injected by the `#[aztec]` macro). Message transport\n/// is the app's responsibility. Typical examples of transport methods are: messaging apps, email, QR codes, etc.\n///\n/// Once offchain messages are delivered to the recipient's private environment via `offchain_receive`, messages are\n/// locally stored in a persistent inbox.\n///\n/// This function determines when each message in said inbox is ready for processing, when it can be safely disposed\n/// of, etc.\n///\n/// The only current implementation of an [`OffchainInboxSync`] is [`sync_inbox`], which manages an inbox with\n/// expiration and finality-based eviction and automatic transaction context resolution.\npub type OffchainInboxSync = unconstrained fn(\n/* contract_address */AztecAddress, /* scope */ AztecAddress) -> EphemeralArray<OffchainMessageWithTx>;\n\n/// Delivers offchain messages to the given contract's offchain inbox for subsequent processing.\n///\n/// Offchain messages are transaction effects that are not broadcasted via onchain logs. Instead, the sender shares the\n/// message to the recipient through an external channel (e.g. a URL accessible by the recipient). The recipient then\n/// calls this function to hand the messages to the contract so they can be processed through the same mechanisms as\n/// onchain messages.\n///\n/// Messages are processed when their originating transaction is found onchain (providing the context needed to\n/// validate resulting notes and events).\n///\n/// Messages are eventually removed from the inbox: an unprocessed message once its TTL (`anchor_block_timestamp +\n/// MAX_MSG_TTL`) elapses, and a processed message once the block its transaction was found in finalizes.\n///\n/// Processing order is not guaranteed.\npub unconstrained fn receive(\n    contract_address: AztecAddress,\n    messages: BoundedVec<OffchainMessage, MAX_OFFCHAIN_MESSAGES_PER_RECEIVE_CALL>,\n) {\n    // Offchain reception facts are scoped to the recipient. Note that because offchain messages have no integrity or\n    // authenticity checks it is not possible to verify that this is indeed the intended recipient. In this case we're\n    // assuming a cooperative environment, which is on par with other offchain delivery expectations.\n    messages.for_each(|msg| OffchainReception::init(contract_address, msg));\n\n    // Clear cache for message recipients so the next sync runs.\n    set_contract_sync_cache_invalid(contract_address, messages.map(|msg| msg.recipient));\n}\n\n/// Returns offchain-delivered messages to process during sync.\npub unconstrained fn sync_inbox(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n) -> EphemeralArray<OffchainMessageWithTx> {\n    let active_receptions = OffchainReception::load_all(contract_address, scope);\n\n    // Ask PXE to resolve each message's originating tx. We pass the tx hashes in reception order, so the resolved txs\n    // come back aligned with the reception indices and can be matched back positionally.\n    let resolved_txs = get_resolved_txs(active_receptions.map(|reception: OffchainReception| {\n        reception.read_message().tx_hash.unwrap_or(0)\n    }));\n\n    let processable_messages: EphemeralArray<OffchainMessageWithTx> = EphemeralArray::empty();\n    let now = UtilityContext::new().timestamp();\n\n    active_receptions.for_each(|i, reception| {\n        let maybe_message = reception.step(resolved_txs.get(i), now);\n        if maybe_message.is_some() {\n            processable_messages.push(maybe_message.unwrap());\n        }\n    });\n\n    processable_messages\n}\n\n/// A message delivered via the `offchain_receive` utility function.\n#[derive(Serialize, Deserialize)]\npub struct OffchainMessage {\n    /// The encrypted message payload.\n    pub ciphertext: BoundedVec<Field, MESSAGE_CIPHERTEXT_LEN>,\n    /// The intended recipient of the message.\n    pub recipient: AztecAddress,\n    /// The hash of the transaction that produced this message. `Option::none` indicates a tx-less message.\n    pub tx_hash: Option<Field>,\n    /// Anchor block timestamp at message emission.\n    pub anchor_block_timestamp: u64,\n}\n\nmod test {\n    use crate::{\n        oracle::random::random, protocol::address::AztecAddress, test::helpers::test_environment::TestEnvironment,\n    };\n    use super::{MAX_OFFCHAIN_MESSAGES_PER_RECEIVE_CALL, OffchainMessage, receive, sync_inbox};\n    use super::reception::{MAX_MSG_TTL, OffchainReception};\n\n    unconstrained fn setup() -> (TestEnvironment, AztecAddress) {\n        let mut env = TestEnvironment::new();\n        let scope = env.create_light_account();\n        (env, scope)\n    }\n\n    /// Creates an `OffchainMessage` with dummy ciphertext and the given scope as recipient.\n    fn make_msg(recipient: AztecAddress, tx_hash: Option<Field>, anchor_block_timestamp: u64) -> OffchainMessage {\n        OffchainMessage { ciphertext: BoundedVec::new(), recipient, tx_hash, anchor_block_timestamp }\n    }\n\n    /// Advances the TXE block timestamp by `offset` seconds and returns the resulting timestamp.\n    unconstrained fn advance_by(env: TestEnvironment, offset: u64) -> u64 {\n        env.advance_next_block_timestamp_by(offset);\n        env.mine_block();\n        env.last_block_timestamp()\n    }\n\n    #[test]\n    unconstrained fn empty_inbox_returns_empty_result() {\n        let (env, scope) = setup();\n        env.utility_context(|context| {\n            let address = context.this_address();\n            let result = sync_inbox(address, scope);\n\n            assert_eq(result.len(), 0);\n            assert_eq(OffchainReception::load_all(address, scope).len(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn multiple_messages_mixed_expiration() {\n        let (env, scope) = setup();\n        let anchor_ts = advance_by(env, 10);\n\n        let expired_a_tx_hash = random();\n        let survivor_tx_hash = random();\n\n        let expired_a = make_msg(scope, Option::some(expired_a_tx_hash), 0);\n        let survivor = make_msg(scope, Option::some(survivor_tx_hash), anchor_ts);\n        let expired_b = make_msg(scope, Option::none(), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            let mut msgs: BoundedVec<OffchainMessage, MAX_OFFCHAIN_MESSAGES_PER_RECEIVE_CALL> = BoundedVec::new();\n            // Message 0: tx-bound, anchor=0 so it expires quickly.\n            msgs.push(expired_a);\n            // Message 1: tx-bound, anchor_ts is recent so it survives.\n            msgs.push(survivor);\n            // Message 2: tx-less, anchor=0 so it also expires.\n            msgs.push(expired_b);\n            receive(address, msgs);\n        });\n\n        // Advance past MAX_MSG_TTL for anchor=0, but not for anchor_ts.\n        let _now = advance_by(env, MAX_MSG_TTL);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            let result = sync_inbox(address, scope);\n\n            assert_eq(result.len(), 0); // all contexts are None\n            assert(\n                !OffchainReception::is_active(address, scope, expired_a),\n                \"expired tx-bound reception should be terminated\",\n            );\n            assert(\n                !OffchainReception::is_active(address, scope, expired_b),\n                \"expired tx-less reception should be terminated\",\n            );\n            assert(OffchainReception::is_active(address, scope, survivor), \"survivor reception should stay active\");\n            assert_eq(OffchainReception::load_all(address, scope).len(), 1);\n        });\n    }\n\n    // -- Idempotent re-delivery (first-write-wins fact recording) ---------\n\n    #[test]\n    unconstrained fn redelivery_is_idempotent() {\n        let (env, scope) = setup();\n        let anchor_ts = advance_by(env, 10);\n        let msg = make_msg(scope, Option::some(random()), anchor_ts);\n\n        // First delivery, committed as its own job.\n        env.utility_context(|context| { receive(context.this_address(), BoundedVec::from_array([msg])); });\n\n        // Re-delivering the same content-addressed message must not panic and must not create a second reception.\n        env.utility_context(|context| {\n            let address = context.this_address();\n            receive(address, BoundedVec::from_array([msg]));\n\n            assert(OffchainReception::is_active(address, scope, msg), \"reception should be active\");\n            assert_eq(OffchainReception::load_all(address, scope).len(), 1);\n        });\n    }\n\n    #[test]\n    unconstrained fn redelivery_after_processing_keeps_processed_guard() {\n        let (env, scope) = setup();\n        let known_tx_hash: Field = 1;\n        let anchor_ts = advance_by(env, 10);\n        let msg = make_msg(scope, Option::some(known_tx_hash), anchor_ts);\n\n        env.utility_context(|context| { receive(context.this_address(), BoundedVec::from_array([msg])); });\n\n        let _now = advance_by(env, 100);\n\n        // First sync resolves the message and marks it as processed.\n        env.utility_context(|context| {\n            let address = context.this_address();\n            assert_eq(sync_inbox(address, scope).len(), 1);\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n        });\n\n        // Re-deliver the same message. The next sync recognizes it as already processed and does not re-push it.\n        env.utility_context(|context| {\n            let address = context.this_address();\n            receive(address, BoundedVec::from_array([msg]));\n\n            assert(\n                OffchainReception::is_processed(address, scope, msg),\n                \"re-delivery must preserve the processed guard\",\n            );\n            assert_eq(sync_inbox(address, scope).len(), 0);\n        });\n    }\n}\n"
    },
    "164": {
      "function_locations": [
        {
          "name": "OffchainReception::init",
          "start": 8657
        },
        {
          "name": "OffchainReception::load_all",
          "start": 9175
        },
        {
          "name": "OffchainReception::read_message",
          "start": 9524
        },
        {
          "name": "OffchainReception::id_for",
          "start": 10225
        },
        {
          "name": "OffchainReception::is_active",
          "start": 10544
        },
        {
          "name": "OffchainReception::step",
          "start": 11199
        },
        {
          "name": "OffchainReception::is_processed",
          "start": 12804
        },
        {
          "name": "OffchainReception::mark_processed",
          "start": 13372
        },
        {
          "name": "OffchainReception::terminate",
          "start": 13940
        },
        {
          "name": "to_payload",
          "start": 14314
        },
        {
          "name": "test::setup",
          "start": 14871
        },
        {
          "name": "test::make_msg",
          "start": 15201
        },
        {
          "name": "test::resolved_tx_at_block",
          "start": 15485
        },
        {
          "name": "test::resolved_tx",
          "start": 15876
        },
        {
          "name": "test::expired_reception_is_terminated",
          "start": 15993
        },
        {
          "name": "test::unresolved_reception_stays_active",
          "start": 16675
        },
        {
          "name": "test::resolved_reception_is_ready_to_process",
          "start": 17470
        },
        {
          "name": "test::already_processed_reception_is_not_re_pushed",
          "start": 18516
        },
        {
          "name": "test::processed_reception_terminates_once_its_origin_block_finalizes",
          "start": 19890
        },
        {
          "name": "test::unfinalized_processed_reception_survives_past_the_ttl",
          "start": 21115
        },
        {
          "name": "test::expired_reception_is_still_processed_when_its_tx_resolves",
          "start": 22505
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/messages/processing/offchain/reception.nr",
      "source": "//! The state machine of a single offchain message reception process.\n//!\n//! Offchain processing needs to handle some complexity, including the possibility of reorgs reverting message effects,\n//! and the need to reprocess messages in that case. The state chart below summarizes the current behavior.\n//!\n//! ```text\n//!                   offchain_receive() (process starts)\n//!                         |\n//!                         v\n//!                     +-----------+     tx found onchain        +-----------+\n//!                ---- |           | --------------------------> |           |\n//!  tx not found  |    |           |                             |           |     discover notes,\n//!                |--> | RECEIVED  |                             | PROCESSED | ~~> events, etc\n//!                     |           | <-------------------------- |           |\n//!                     |           |   tx block re-orged         |           |\n//!                     +-----------+                             +-----------+\n//!                         |                                         |\n//!                         |  TTL expired                            |  tx block finalized\n//!                         v                                         v\n//!                   +---------------------------------------------------------+\n//!                   |               TERMINATED (process ends)                 |\n//!                   +---------------------------------------------------------+\n//! ```\n//!\n//! ## States\n//!\n//! - **Received**: the message is stored but its originating transaction has not been found onchain yet (or the\n//!   message is tx-less; see below). While the reception process is in this state, it keeps looking for the\n//    transaction onchain.\n//! - **Processed**: the message has been handed off for processing. If there weren't reorgs, reaching this state would\n//!   be equivalent to terminating the reception process. Since reorgs are a possibility, this state is not terminal\n//!   until the block the originating transaction was found in finalizes.\n//! - **Terminated**: nothing else can be done with the message, either because its originating transaction never\n//!   appeared within the TTL, or because the block it was processed in has finalized. This is the terminal state of\n//!   this process.\n//!\n//! ## Transitions (each evaluated by [`OffchainReception::step`])\n//!\n//! - **Received -> Processed**: the originating transaction is found onchain. The message (packaged with its\n//!   transaction context) is queued to have its actual contents processed (which can lead for example to the discovery\n//!   of notes and events).\n//! - **Processed -> Received**: the block where the message transaction was originally found is re-orged out.\n//! - **Received -> Terminated**: the message TTL has elapsed (see below), so the originating transaction can no longer\n//!   appear and the message is no longer processable.\n//! - **Processed -> Terminated**: the block the originating transaction was found in has finalized, so the effects of\n//!   its processing are permanent and reorg-proof.\n//!\n//! # Message reception lifecycle and the TTL\n//!\n//! A reception expires once `now > anchor_block_timestamp + MAX_MSG_TTL`, where `MAX_MSG_TTL = MAX_TX_LIFETIME + 2h`.\n//! A transaction anchored at a given block can only be mined within\n//! [`MAX_TX_LIFETIME`](crate::protocol::constants::MAX_TX_LIFETIME) of that block, so once that\n//! window (plus a safety margin of 2 hours) has elapsed the originating transaction can no longer appear, and it is\n//! safe to stop looking for it.\n//!\n//! The TTL only matters for unprocessed messages. Already-processed message receptions complete when the block that\n//! included the originating transaction finalizes, which is exactly when the processing becomes reorg-proof.\n//!\n//! # Current limitations, future plans\n//!\n//! - Tx-less messages never reach `Processed` and are only ever removed by expiry. This will be supported in the\n//!   future.\n//!\n//! # Implementation\n//!\n//! [`OffchainReception::init`] creates a [fact collection](crate::facts::FactCollection) of type\n//! `OFFCHAIN_RECEPTION_TYPE_ID`. The fact collection is identified by a hash of the `OffchainMessage` it tracks, which\n//! makes duplicate calls to `init` idempotent.\n//!\n//! Upon reception, an `OFFCHAIN_MESSAGE_RECEIVED` [non-retractable fact](crate::facts::record_non_retractable_fact) is\n//! recorded. The fact's payload is the `OffchainMessage` itself, which persists it to be subsequently processed.\n//! A fact collection with just an `OFFCHAIN_MESSAGE_RECEIVED` fact represents an active reception process in the\n//! RECEIVED state from our state chart above.\n//!\n//! The message reception state machine is driven externally, advancing one step at a time each time\n//! [`OffchainReception::step`] is invoked. [`OffchainReception::step`] implements the rest of the reception state\n//! machine described above.\n//!\n//! When stepping, if the transaction to the message is found onchain, an `OFFCHAIN_MESSAGE_PROCESSED`\n//! [retractable fact](crate::facts::record_retractable_fact) associated to the block where the transaction was found is\n//! recorded.\n//! Note that since this fact is retractable, a reorg dropping said block would result in the fact being automatically\n//! removed by PXE, effectively pushing the reception process back to `RECEIVED` state.\n//!\n//! To determine in which state of the reception process we are we just analyze the recorded facts:\n//!\n//! - If there is an `OFFCHAIN_MESSAGE_PROCESSED` fact we are in PROCESSED state. Once that fact's origin block has\n//!   finalized the processing is reorg-proof, so the [fact collection](crate::facts::FactCollection) can (and should)\n//!   be deleted; until then there is nothing to do.\n//! - If there is only an `OFFCHAIN_MESSAGE_RECEIVED` fact we are in RECEIVED state, so we check if the message\n//!   transaction is now available onchain, and if so, exercise the RECEIVED->PROCESSED transition. Otherwise, once the\n//!   TTL has elapsed the originating transaction can no longer appear and the collection can (and should) be deleted.\n//!\n//! The PROCESSED->RECEIVED transition is transparently handled by PXE: if a re-org caused the message transaction to\n//! fall off the chain, the `OFFCHAIN_MESSAGE_PROCESSED` fact disappears, taking us back to the RECEIVED state.\n\nuse crate::{\n    ephemeral::EphemeralArray,\n    facts::{\n        delete_fact_collection, Fact, FactCollection, get_fact_collection, get_fact_collections_by_type, OriginBlock,\n        record_non_retractable_fact, record_retractable_fact,\n    },\n    messages::processing::OffchainMessageWithTx,\n    oracle::tx_resolution::ResolvedTx,\n    protocol::{\n        address::AztecAddress,\n        constants::MAX_TX_LIFETIME,\n        hash::{poseidon2_hash, sha256_to_field},\n        traits::{Deserialize, Serialize},\n    },\n};\nuse super::OffchainMessage;\n\n/// Maximum time-to-live for a tx-bound offchain message.\n///\n/// After `anchor_block_timestamp + MAX_MSG_TTL`, the message is evicted from the inbox.\n/// (7200 == 2 hours)\npub(crate) global MAX_MSG_TTL: u64 = MAX_TX_LIFETIME + 7200;\n\n/// Fact type id of the fact that stores the offchain message body inside a reception collection.\nglobal OFFCHAIN_MESSAGE_RECEIVED: Field = sha256_to_field(\"AZTEC_NR::OFFCHAIN_MESSAGE_RECEIVED\".as_bytes());\n\n/// Fact type id to mark an offchain message as processed.\n///\n/// A reception is in \"processed state\" exactly when its collection carries a fact of this type.\npub(crate) global OFFCHAIN_MESSAGE_PROCESSED: Field =\n    sha256_to_field(\"AZTEC_NR::OFFCHAIN_MESSAGE_PROCESSED\".as_bytes());\n\n/// Fact-collection type id shared by every offchain message reception in the [fact store](crate::facts).\npub(crate) global OFFCHAIN_RECEPTION_TYPE_ID: Field =\n    sha256_to_field(\"AZTEC_NR::OFFCHAIN_RECEPTION_TYPE_ID\".as_bytes());\n\n/// A single offchain message reception machine, backed by a [`FactCollection`](crate::facts::FactCollection).\n///\n/// Wraps the fact collection that tracks one message's progress through the reception state machine (see the\n/// [module documentation](super)); the [`OffchainMessage`] it carries is decoded on demand.\n#[derive(Deserialize, Serialize)]\npub(crate) struct OffchainReception {\n    collection: FactCollection,\n}\n\nimpl OffchainReception {\n    /// Initializes a new reception for a freshly received message, in the `Received` state.\n    ///\n    /// Re-initializing the same message is a no-op, which makes redelivery idempotent.\n    pub(crate) unconstrained fn init(contract_address: AztecAddress, message: OffchainMessage) {\n        record_non_retractable_fact(\n            contract_address,\n            message.recipient,\n            OFFCHAIN_RECEPTION_TYPE_ID,\n            Self::id_for(message),\n            OFFCHAIN_MESSAGE_RECEIVED,\n            to_payload(message),\n        );\n    }\n\n    /// Loads every active reception for the given contract and scope, decoding each message body.\n    pub(crate) unconstrained fn load_all(\n        contract_address: AztecAddress,\n        scope: AztecAddress,\n    ) -> EphemeralArray<OffchainReception> {\n        get_fact_collections_by_type(contract_address, scope, OFFCHAIN_RECEPTION_TYPE_ID)\n            .map(|collection: FactCollection| OffchainReception { collection })\n    }\n\n    /// Reads and returns the message this reception carries, decoding it from its fact collection.\n    pub(crate) unconstrained fn read_message(self) -> OffchainMessage {\n        let message_fact = self.collection.facts.find(|f: Fact| f.fact_type_id == OFFCHAIN_MESSAGE_RECEIVED).unwrap();\n        let n = <OffchainMessage as Deserialize>::N;\n        let mut fields = [0; <OffchainMessage as Deserialize>::N];\n        for i in 0..n {\n            fields[i] = message_fact.payload.get(i);\n        }\n        Deserialize::deserialize(fields)\n    }\n\n    /// Computes the fact-collection id that identifies a message's reception machine in the [fact store](crate::facts).\n    ///\n    /// The id is a hash of the message, which makes duplicate receptions of the same message collapse onto a single\n    /// reception.\n    pub(crate) fn id_for(message: OffchainMessage) -> Field {\n        poseidon2_hash(message.serialize())\n    }\n\n    /// Returns `true` if a reception for `message` is currently active for the given contract and scope.\n    pub(crate) unconstrained fn is_active(\n        contract_address: AztecAddress,\n        scope: AztecAddress,\n        message: OffchainMessage,\n    ) -> bool {\n        get_fact_collection(\n            contract_address,\n            scope,\n            OFFCHAIN_RECEPTION_TYPE_ID,\n            Self::id_for(message),\n        )\n            .is_some()\n    }\n\n    /// Advances this reception by one step of its state machine. See the [module documentation](super) for the\n    /// states, transitions, and expiry rules.\n    ///\n    /// Returns `Some` with the message and its resolved context when this step determines the message is ready to be\n    /// processed.\n    pub(crate) unconstrained fn step(\n        self,\n        maybe_resolved_tx: Option<ResolvedTx>,\n        now: u64,\n    ) -> Option<OffchainMessageWithTx> {\n        let message = self.read_message();\n        let processed_fact = self.collection.facts.find(|f: Fact| f.fact_type_id == OFFCHAIN_MESSAGE_PROCESSED);\n\n        if processed_fact.is_none() & maybe_resolved_tx.is_some() {\n            // Received -> Processed: the originating tx is onchain.\n            let resolved = maybe_resolved_tx.unwrap();\n            self.mark_processed(resolved.block_number, resolved.block_hash);\n            Option::some(\n                OffchainMessageWithTx { message_ciphertext: message.ciphertext, resolved_tx: resolved },\n            )\n        } else if processed_fact.is_some() {\n            if processed_fact.unwrap().origin_block.unwrap().block_state.is_finalized() {\n                // Processed -> Terminated: once the marker's origin block finalizes, the processing is reorg-proof and\n                // the reception is complete. Until then we wait: a reorg dropping that block removes the retractable\n                // marker and PXE pushes us back to Received.\n                self.terminate();\n            }\n            Option::none()\n        } else {\n            // Received -> Terminated: the TTL caps how long we keep looking for the originating tx.\n            if now > message.anchor_block_timestamp + MAX_MSG_TTL {\n                self.terminate();\n            }\n            Option::none()\n        }\n    }\n\n    /// Returns `true` if the reception for `message` has been marked processed.\n    pub(crate) unconstrained fn is_processed(\n        contract_address: AztecAddress,\n        scope: AztecAddress,\n        message: OffchainMessage,\n    ) -> bool {\n        let maybe_collection = get_fact_collection(\n            contract_address,\n            scope,\n            OFFCHAIN_RECEPTION_TYPE_ID,\n            Self::id_for(message),\n        );\n        if maybe_collection.is_some() {\n            maybe_collection.unwrap().facts.any(|f: Fact| f.fact_type_id == OFFCHAIN_MESSAGE_PROCESSED)\n        } else {\n            false\n        }\n    }\n\n    /// Records the retractable processed marker for this reception, originated at the resolved block.\n    unconstrained fn mark_processed(self, block_number: u32, block_hash: Field) {\n        let empty_payload: EphemeralArray<Field> = EphemeralArray::empty();\n        record_retractable_fact(\n            self.collection.contract_address,\n            self.collection.scope,\n            self.collection.fact_collection_type_id,\n            self.collection.fact_collection_id,\n            OFFCHAIN_MESSAGE_PROCESSED,\n            empty_payload,\n            OriginBlock { block_number, block_hash },\n        );\n    }\n\n    /// Terminates this reception by deleting its [fact collection](crate::facts::FactCollection).\n    unconstrained fn terminate(self) {\n        delete_fact_collection(\n            self.collection.contract_address,\n            self.collection.scope,\n            self.collection.fact_collection_type_id,\n            self.collection.fact_collection_id,\n        );\n    }\n}\n\n/// Serializes an [`OffchainMessage`] into a fact payload.\nunconstrained fn to_payload(message: OffchainMessage) -> EphemeralArray<Field> {\n    let fields = message.serialize();\n    let payload: EphemeralArray<Field> = EphemeralArray::empty();\n    for i in 0..fields.len() {\n        payload.push(fields[i]);\n    }\n    payload\n}\n\nmod test {\n    use crate::{\n        messages::processing::offchain::OffchainMessage,\n        oracle::{random::random, tx_resolution::ResolvedTx},\n        protocol::address::AztecAddress,\n        test::helpers::test_environment::TestEnvironment,\n    };\n    use super::{MAX_MSG_TTL, OffchainReception};\n\n    unconstrained fn setup() -> (TestEnvironment, AztecAddress) {\n        let mut env = TestEnvironment::new();\n        let scope = env.create_light_account();\n        (env, scope)\n    }\n\n    /// Creates an `OffchainMessage` with dummy ciphertext and the given scope as recipient.\n    fn make_msg(recipient: AztecAddress, tx_hash: Option<Field>, anchor_block_timestamp: u64) -> OffchainMessage {\n        OffchainMessage { ciphertext: BoundedVec::new(), recipient, tx_hash, anchor_block_timestamp }\n    }\n\n    /// Builds the resolved-tx context PXE would return for `tx_hash`, found in `block_number`.\n    fn resolved_tx_at_block(tx_hash: Field, block_number: u32) -> ResolvedTx {\n        ResolvedTx {\n            tx_hash,\n            unique_note_hashes_in_tx: BoundedVec::new(),\n            first_nullifier_in_tx: 0,\n            block_number,\n            block_hash: 0,\n        }\n    }\n\n    /// Builds a resolved-tx context found in a low block, which TXE (proven == finalized == latest) reports as\n    /// `Finalized`.\n    fn resolved_tx(tx_hash: Field) -> ResolvedTx {\n        resolved_tx_at_block(tx_hash, 1)\n    }\n\n    #[test]\n    unconstrained fn expired_reception_is_terminated() {\n        let (env, scope) = setup();\n        let msg = make_msg(scope, Option::some(random()), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n            let reception = OffchainReception::load_all(address, scope).get(0);\n\n            // Past the TTL with no resolved tx: the reception is terminated.\n            assert(reception.step(Option::none(), MAX_MSG_TTL + 1).is_none());\n            assert(!OffchainReception::is_active(address, scope, msg), \"expired reception should be terminated\");\n        });\n    }\n\n    #[test]\n    unconstrained fn unresolved_reception_stays_active() {\n        let (env, scope) = setup();\n        let msg = make_msg(scope, Option::some(random()), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n            let reception = OffchainReception::load_all(address, scope).get(0);\n\n            // Within the TTL with no resolved tx: nothing to process, the reception stays.\n            assert(reception.step(Option::none(), 100).is_none());\n            assert(OffchainReception::is_active(address, scope, msg), \"unresolved reception should stay active\");\n            assert(!OffchainReception::is_processed(address, scope, msg), \"should still be unprocessed\");\n        });\n    }\n\n    #[test]\n    unconstrained fn resolved_reception_is_ready_to_process() {\n        let (env, scope) = setup();\n        let tx_hash = random();\n        let msg = make_msg(scope, Option::some(tx_hash), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n            let reception = OffchainReception::load_all(address, scope).get(0);\n\n            // A resolved tx within the TTL: the message is handed off with its tx context attached.\n            let processable = reception.step(Option::some(resolved_tx(tx_hash)), 100);\n            assert(processable.is_some());\n            assert_eq(processable.unwrap().resolved_tx.tx_hash, tx_hash);\n\n            // It stays active for reorg safety and is now marked processed.\n            assert(OffchainReception::is_active(address, scope, msg), \"processed reception should stay active\");\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n        });\n    }\n\n    #[test]\n    unconstrained fn already_processed_reception_is_not_re_pushed() {\n        let (env, scope) = setup();\n        let tx_hash = random();\n        let msg = make_msg(scope, Option::some(tx_hash), 0);\n        // A future origin block stays unfinalized, so the reception lingers in Processed across steps.\n        let future_block = env.last_block_number() + 100;\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n\n            // First step processes the message.\n            let reception = OffchainReception::load_all(address, scope).get(0);\n            assert(reception.step(Option::some(resolved_tx_at_block(tx_hash, future_block)), 100).is_some());\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n\n            // Second step (still resolved, not finalized) recognizes it as processed and does not re-push it.\n            let reloaded = OffchainReception::load_all(address, scope).get(0);\n            assert(\n                reloaded.step(Option::some(resolved_tx_at_block(tx_hash, future_block)), 100).is_none(),\n                \"already processed\",\n            );\n            assert(OffchainReception::is_active(address, scope, msg), \"processed reception should still be active\");\n        });\n    }\n\n    #[test]\n    unconstrained fn processed_reception_terminates_once_its_origin_block_finalizes() {\n        let (env, scope) = setup();\n        let tx_hash = random();\n        let msg = make_msg(scope, Option::some(tx_hash), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n\n            // Process the message against a finalized block.\n            let reception = OffchainReception::load_all(address, scope).get(0);\n            assert(reception.step(Option::some(resolved_tx(tx_hash)), 100).is_some());\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n\n            // Next step, still well within the TTL: a finalized origin block makes the processing reorg-proof, so the\n            // reception terminates regardless of the TTL.\n            let reloaded = OffchainReception::load_all(address, scope).get(0);\n            assert(reloaded.step(Option::some(resolved_tx(tx_hash)), 100).is_none());\n            assert(\n                !OffchainReception::is_active(address, scope, msg),\n                \"finalized processed reception should be terminated\",\n            );\n        });\n    }\n\n    #[test]\n    unconstrained fn unfinalized_processed_reception_survives_past_the_ttl() {\n        let (env, scope) = setup();\n        let tx_hash = random();\n        let msg = make_msg(scope, Option::some(tx_hash), 0);\n        // A future origin block never finalizes here, so the reception must not be terminated by the TTL.\n        let future_block = env.last_block_number() + 100;\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n\n            let reception = OffchainReception::load_all(address, scope).get(0);\n            assert(reception.step(Option::some(resolved_tx_at_block(tx_hash, future_block)), 100).is_some());\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n\n            // Past the TTL, but the origin block has not finalized: the reception stays active. The TTL no longer\n            // governs an already-processed reception.\n            let reloaded = OffchainReception::load_all(address, scope).get(0);\n            assert(reloaded.step(Option::some(resolved_tx_at_block(tx_hash, future_block)), MAX_MSG_TTL + 1).is_none());\n            assert(\n                OffchainReception::is_active(address, scope, msg),\n                \"unfinalized processed reception should survive past the TTL\",\n            );\n        });\n    }\n\n    #[test]\n    unconstrained fn expired_reception_is_still_processed_when_its_tx_resolves() {\n        let (env, scope) = setup();\n        let tx_hash = random();\n        let msg = make_msg(scope, Option::some(tx_hash), 0);\n\n        env.utility_context(|context| {\n            let address = context.this_address();\n            OffchainReception::init(address, msg);\n\n            // Even past the TTL, a freshly resolved tx is still handed off: expiry only caps the search for the\n            // originating tx, it does not pre-empt processing once that tx is found.\n            let reception = OffchainReception::load_all(address, scope).get(0);\n            assert(reception.step(Option::some(resolved_tx(tx_hash)), MAX_MSG_TTL + 1).is_some());\n            assert(OffchainReception::is_processed(address, scope, msg), \"should be processed\");\n            assert(OffchainReception::is_active(address, scope, msg), \"just-processed reception should stay active\");\n        });\n    }\n}\n"
    },
    "17": {
      "function_locations": [
        {
          "name": "sha256_compression",
          "start": 572
        },
        {
          "name": "keccakf1600",
          "start": 707
        },
        {
          "name": "keccak::keccakf1600",
          "start": 882
        },
        {
          "name": "blake2s",
          "start": 1044
        },
        {
          "name": "blake3",
          "start": 1142
        },
        {
          "name": "__blake3",
          "start": 1629
        },
        {
          "name": "pedersen_commitment",
          "start": 1747
        },
        {
          "name": "pedersen_commitment_with_separator",
          "start": 1976
        },
        {
          "name": "pedersen_hash",
          "start": 2380
        },
        {
          "name": "pedersen_hash_with_separator",
          "start": 2537
        },
        {
          "name": "derive_generators",
          "start": 3531
        },
        {
          "name": "__derive_generators",
          "start": 3890
        },
        {
          "name": "poseidon2_permutation",
          "start": 3968
        },
        {
          "name": "poseidon2_permutation_internal",
          "start": 4324
        },
        {
          "name": "poseidon2_config_state_size",
          "start": 4417
        },
        {
          "name": "derive_hash",
          "start": 4728
        },
        {
          "name": "<impl BuildHasher for BuildHasherDefault<H>>::build_hasher",
          "start": 5953
        },
        {
          "name": "<impl Default for BuildHasherDefault<H>>::default",
          "start": 6085
        },
        {
          "name": "<impl Hash for Field>::hash",
          "start": 6217
        },
        {
          "name": "<impl Hash for u8>::hash",
          "start": 6347
        },
        {
          "name": "<impl Hash for u16>::hash",
          "start": 6487
        },
        {
          "name": "<impl Hash for u32>::hash",
          "start": 6627
        },
        {
          "name": "<impl Hash for u64>::hash",
          "start": 6767
        },
        {
          "name": "<impl Hash for u128>::hash",
          "start": 6908
        },
        {
          "name": "<impl Hash for i8>::hash",
          "start": 7047
        },
        {
          "name": "<impl Hash for i16>::hash",
          "start": 7193
        },
        {
          "name": "<impl Hash for i32>::hash",
          "start": 7340
        },
        {
          "name": "<impl Hash for i64>::hash",
          "start": 7487
        },
        {
          "name": "<impl Hash for bool>::hash",
          "start": 7635
        },
        {
          "name": "<impl Hash for ()>::hash",
          "start": 7782
        },
        {
          "name": "<impl Hash for [T; N]>::hash",
          "start": 7914
        },
        {
          "name": "<impl Hash for [T]>::hash",
          "start": 8103
        },
        {
          "name": "<impl Hash for (A,)>::hash",
          "start": 8325
        },
        {
          "name": "<impl Hash for (A, B)>::hash",
          "start": 8494
        },
        {
          "name": "<impl Hash for (A, B, C)>::hash",
          "start": 8710
        },
        {
          "name": "<impl Hash for (A, B, C, D)>::hash",
          "start": 8973
        },
        {
          "name": "<impl Hash for (A, B, C, D, E)>::hash",
          "start": 9283
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F)>::hash",
          "start": 9640
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G)>::hash",
          "start": 10044
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G, H_)>::hash",
          "start": 10498
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G, H_, I)>::hash",
          "start": 10999
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G, H_, I, J)>::hash",
          "start": 11547
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G, H_, I, J, K)>::hash",
          "start": 12142
        },
        {
          "name": "<impl Hash for (A, B, C, D, E, F, G, H_, I, J, K, L)>::hash",
          "start": 12785
        },
        {
          "name": "assert_pedersen",
          "start": 13379
        }
      ],
      "path": "std/hash/mod.nr",
      "source": "// Exposed only for usage in `std::meta`\npub(crate) mod poseidon2;\n\nuse crate::default::Default;\nuse crate::embedded_curve_ops::{\n    EmbeddedCurvePoint, EmbeddedCurveScalar, multi_scalar_mul, multi_scalar_mul_array_return,\n};\nuse crate::meta::derive_via;\nuse crate::static_assert;\n\n/// The size of the state accepted by the backend in `poseidon2_permutation`.\nglobal POSEIDON2_CONFIG_STATE_SIZE: u32 = poseidon2_config_state_size();\n\n#[foreign(sha256_compression)]\n// docs:start:sha256_compression\npub fn sha256_compression(input: [u32; 16], state: [u32; 8]) -> [u32; 8] {}\n// docs:end:sha256_compression\n\n#[foreign(keccakf1600)]\n// docs:start:keccakf1600\npub fn keccakf1600(input: [u64; 25]) -> [u64; 25] {}\n// docs:end:keccakf1600\n\npub mod keccak {\n    #[deprecated(\"This function has been moved to std::hash::keccakf1600\")]\n    pub fn keccakf1600(input: [u64; 25]) -> [u64; 25] {\n        super::keccakf1600(input)\n    }\n}\n\n#[foreign(blake2s)]\n// docs:start:blake2s\npub fn blake2s<let N: u32>(input: [u8; N]) -> [u8; 32]\n// docs:end:blake2s\n{}\n\n// docs:start:blake3\npub fn blake3<let N: u32>(input: [u8; N]) -> [u8; 32]\n// docs:end:blake3\n{\n    if crate::runtime::is_unconstrained() {\n        // Temporary measure while Barretenberg is main proving system.\n        // Please open an issue if you're working on another proving system and running into problems due to this.\n        crate::static_assert(\n            N <= 1024,\n            \"Barretenberg cannot prove blake3 hashes with inputs larger than 1024 bytes\",\n        );\n    }\n    __blake3(input)\n}\n\n#[foreign(blake3)]\nfn __blake3<let N: u32>(input: [u8; N]) -> [u8; 32] {}\n\n// docs:start:pedersen_commitment\npub fn pedersen_commitment<let N: u32>(input: [Field; N]) -> EmbeddedCurvePoint {\n    // docs:end:pedersen_commitment\n    pedersen_commitment_with_separator(input, 0)\n}\n\n#[inline_always]\npub fn pedersen_commitment_with_separator<let N: u32>(\n    input: [Field; N],\n    separator: u32,\n) -> EmbeddedCurvePoint {\n    let mut points = [EmbeddedCurveScalar { lo: 0, hi: 0 }; N];\n    for i in 0..N {\n        points[i] = EmbeddedCurveScalar::from_field(input[i]);\n    }\n    let generators = derive_generators(\"DEFAULT_DOMAIN_SEPARATOR\".as_bytes(), separator);\n    multi_scalar_mul(generators, points)\n}\n\n// docs:start:pedersen_hash\npub fn pedersen_hash<let N: u32>(input: [Field; N]) -> Field\n// docs:end:pedersen_hash\n{\n    pedersen_hash_with_separator(input, 0)\n}\n\n#[no_predicates]\npub fn pedersen_hash_with_separator<let N: u32>(input: [Field; N], separator: u32) -> Field {\n    let mut scalars: [EmbeddedCurveScalar; N + 1] = [EmbeddedCurveScalar { lo: 0, hi: 0 }; N + 1];\n    let mut generators: [EmbeddedCurvePoint; N + 1] =\n        [EmbeddedCurvePoint::point_at_infinity(); N + 1];\n    crate::assert_constant(separator);\n    let domain_generators: [EmbeddedCurvePoint; N] =\n        derive_generators(\"DEFAULT_DOMAIN_SEPARATOR\".as_bytes(), separator);\n\n    for i in 0..N {\n        scalars[i] = EmbeddedCurveScalar::from_field(input[i]);\n        generators[i] = domain_generators[i];\n    }\n    scalars[N] = EmbeddedCurveScalar { lo: N as Field, hi: 0 as Field };\n\n    let length_generator: [EmbeddedCurvePoint; 1] =\n        derive_generators(\"pedersen_hash_length\".as_bytes(), 0);\n    generators[N] = length_generator[0];\n    multi_scalar_mul_array_return(generators, scalars, true)[0].x\n}\n\n#[field(bn254)]\n#[inline_always]\npub fn derive_generators<let N: u32, let M: u32>(\n    domain_separator_bytes: [u8; M],\n    starting_index: u32,\n) -> [EmbeddedCurvePoint; N] {\n    crate::assert_constant(domain_separator_bytes);\n    crate::assert_constant(starting_index);\n    __derive_generators(domain_separator_bytes, starting_index)\n}\n\n#[builtin(derive_pedersen_generators)]\n#[field(bn254)]\nfn __derive_generators<let N: u32, let M: u32>(\n    domain_separator_bytes: [u8; M],\n    starting_index: u32,\n) -> [EmbeddedCurvePoint; N] {}\n\npub fn poseidon2_permutation<let N: u32>(input: [Field; N]) -> [Field; N] {\n    static_assert(\n        N == POSEIDON2_CONFIG_STATE_SIZE,\n        f\"the input length must equal the state size in the Poseidon2 config; expected {POSEIDON2_CONFIG_STATE_SIZE}, got {N}\",\n    );\n    poseidon2_permutation_internal(input)\n}\n\n#[foreign(poseidon2_permutation)]\nfn poseidon2_permutation_internal<let N: u32>(input: [Field; N]) -> [Field; N] {}\n\n#[foreign(poseidon2_config_state_size)]\ncomptime fn poseidon2_config_state_size() -> u32 {}\n\n// Generic hashing support.\n// Partially ported and impacted by rust.\n\n// Hash trait shall be implemented per type.\n#[derive_via(derive_hash)]\npub trait Hash {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher;\n}\n\n// docs:start:derive_hash\ncomptime fn derive_hash(s: TypeDefinition) -> Quoted {\n    let name = quote { $crate::hash::Hash };\n    let signature = quote { fn hash<H>(_self: Self, _state: &mut H) where H: $crate::hash::Hasher };\n    let for_each_field = |name| quote { _self.$name.hash(_state); };\n    crate::meta::make_trait_impl(\n        s,\n        name,\n        signature,\n        for_each_field,\n        quote {},\n        |fields| fields,\n    )\n}\n// docs:end:derive_hash\n\n// Hasher trait shall be implemented by algorithms to provide hash-agnostic means.\n// TODO: consider making the types generic here ([u8], [Field], etc.)\npub trait Hasher {\n    fn finish(self) -> Field;\n\n    /// Returns the hash value without consuming the hasher.\n    /// Override this for more efficient implementations that avoid copying.\n    /// TODO: deprecate finish() and replace it\n    fn finish_ref(&self) -> Field {\n        (*self).finish()\n    }\n\n    fn write(&mut self, input: Field);\n}\n\n// BuildHasher is a factory trait, responsible for production of specific Hasher.\npub trait BuildHasher {\n    type H: Hasher;\n\n    fn build_hasher(self) -> H;\n}\n\npub struct BuildHasherDefault<H>;\n\nimpl<H> BuildHasher for BuildHasherDefault<H>\nwhere\n    H: Hasher + Default,\n{\n    type H = H;\n\n    fn build_hasher(_self: Self) -> H {\n        H::default()\n    }\n}\n\nimpl<H> Default for BuildHasherDefault<H>\nwhere\n    H: Hasher + Default,\n{\n    fn default() -> Self {\n        BuildHasherDefault {}\n    }\n}\n\nimpl Hash for Field {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self);\n    }\n}\n\nimpl Hash for u8 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for u16 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for u32 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for u64 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for u128 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for i8 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as u8 as Field);\n    }\n}\n\nimpl Hash for i16 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as u16 as Field);\n    }\n}\n\nimpl Hash for i32 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as u32 as Field);\n    }\n}\n\nimpl Hash for i64 {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as u64 as Field);\n    }\n}\n\nimpl Hash for bool {\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        H::write(state, self as Field);\n    }\n}\n\nimpl Hash for () {\n    fn hash<H>(_self: Self, _state: &mut H)\n    where\n        H: Hasher,\n    {}\n}\n\nimpl<T, let N: u32> Hash for [T; N]\nwhere\n    T: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        for elem in self {\n            elem.hash(state);\n        }\n    }\n}\n\nimpl<T> Hash for [T]\nwhere\n    T: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.len().hash(state);\n        for elem in self {\n            elem.hash(state);\n        }\n    }\n}\n\nimpl<A> Hash for (A,)\nwhere\n    A: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n    }\n}\n\nimpl<A, B> Hash for (A, B)\nwhere\n    A: Hash,\n    B: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n    }\n}\n\nimpl<A, B, C> Hash for (A, B, C)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n    }\n}\n\nimpl<A, B, C, D> Hash for (A, B, C, D)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E> Hash for (A, B, C, D, E)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F> Hash for (A, B, C, D, E, F)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G> Hash for (A, B, C, D, E, F, G)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G, H_> Hash for (A, B, C, D, E, F, G, H_)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n    H_: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n        self.7.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G, H_, I> Hash for (A, B, C, D, E, F, G, H_, I)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n    H_: Hash,\n    I: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n        self.7.hash(state);\n        self.8.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G, H_, I, J> Hash for (A, B, C, D, E, F, G, H_, I, J)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n    H_: Hash,\n    I: Hash,\n    J: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n        self.7.hash(state);\n        self.8.hash(state);\n        self.9.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G, H_, I, J, K> Hash for (A, B, C, D, E, F, G, H_, I, J, K)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n    H_: Hash,\n    I: Hash,\n    J: Hash,\n    K: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n        self.7.hash(state);\n        self.8.hash(state);\n        self.9.hash(state);\n        self.10.hash(state);\n    }\n}\n\nimpl<A, B, C, D, E, F, G, H_, I, J, K, L> Hash for (A, B, C, D, E, F, G, H_, I, J, K, L)\nwhere\n    A: Hash,\n    B: Hash,\n    C: Hash,\n    D: Hash,\n    E: Hash,\n    F: Hash,\n    G: Hash,\n    H_: Hash,\n    I: Hash,\n    J: Hash,\n    K: Hash,\n    L: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self.0.hash(state);\n        self.1.hash(state);\n        self.2.hash(state);\n        self.3.hash(state);\n        self.4.hash(state);\n        self.5.hash(state);\n        self.6.hash(state);\n        self.7.hash(state);\n        self.8.hash(state);\n        self.9.hash(state);\n        self.10.hash(state);\n        self.11.hash(state);\n    }\n}\n\n// Some test vectors for Pedersen hash and Pedersen Commitment.\n// They have been generated using the same functions so the tests are for now useless\n// but they will be useful when we switch to Noir implementation.\n#[test]\nfn assert_pedersen() {\n    assert_eq(\n        pedersen_hash_with_separator([1], 1),\n        0x1b3f4b1a83092a13d8d1a59f7acb62aba15e7002f4440f2275edb99ebbc2305f,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1], 1),\n        EmbeddedCurvePoint {\n            x: 0x054aa86a73cb8a34525e5bbed6e43ba1198e860f5f3950268f71df4591bde402,\n            y: 0x209dcfbf2cfb57f9f6046f44d71ac6faf87254afc7407c04eb621a6287cac126,\n        },\n    );\n\n    assert_eq(\n        pedersen_hash_with_separator([1, 2], 2),\n        0x26691c129448e9ace0c66d11f0a16d9014a9e8498ee78f4d69f0083168188255,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2], 2),\n        EmbeddedCurvePoint {\n            x: 0x2e2b3b191e49541fe468ec6877721d445dcaffe41728df0a0eafeb15e87b0753,\n            y: 0x2ff4482400ad3a6228be17a2af33e2bcdf41be04795f9782bd96efe7e24f8778,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3], 3),\n        0x0bc694b7a1f8d10d2d8987d07433f26bd616a2d351bc79a3c540d85b6206dbe4,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3], 3),\n        EmbeddedCurvePoint {\n            x: 0x1fee4e8cf8d2f527caa2684236b07c4b1bad7342c01b0f75e9a877a71827dc85,\n            y: 0x2f9fedb9a090697ab69bf04c8bc15f7385b3e4b68c849c1536e5ae15ff138fd1,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4], 4),\n        0xdae10fb32a8408521803905981a2b300d6a35e40e798743e9322b223a5eddc,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4], 4),\n        EmbeddedCurvePoint {\n            x: 0x07ae3e202811e1fca39c2d81eabe6f79183978e6f12be0d3b8eda095b79bdbc9,\n            y: 0x0afc6f892593db6fbba60f2da558517e279e0ae04f95758587760ba193145014,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5], 5),\n        0xfc375b062c4f4f0150f7100dfb8d9b72a6d28582dd9512390b0497cdad9c22,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5], 5),\n        EmbeddedCurvePoint {\n            x: 0x1754b12bd475a6984a1094b5109eeca9838f4f81ac89c5f0a41dbce53189bb29,\n            y: 0x2da030e3cfcdc7ddad80eaf2599df6692cae0717d4e9f7bfbee8d073d5d278f7,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5, 6], 6),\n        0x1696ed13dc2730062a98ac9d8f9de0661bb98829c7582f699d0273b18c86a572,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5, 6], 6),\n        EmbeddedCurvePoint {\n            x: 0x190f6c0e97ad83e1e28da22a98aae156da083c5a4100e929b77e750d3106a697,\n            y: 0x1f4b60f34ef91221a0b49756fa0705da93311a61af73d37a0c458877706616fb,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5, 6, 7], 7),\n        0x128c0ff144fc66b6cb60eeac8a38e23da52992fc427b92397a7dffd71c45ede3,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5, 6, 7], 7),\n        EmbeddedCurvePoint {\n            x: 0x015441e9d29491b06563fac16fc76abf7a9534c715421d0de85d20dbe2965939,\n            y: 0x1d2575b0276f4e9087e6e07c2cb75aa1baafad127af4be5918ef8a2ef2fea8fc,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5, 6, 7, 8], 8),\n        0x2f960e117482044dfc99d12fece2ef6862fba9242be4846c7c9a3e854325a55c,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5, 6, 7, 8], 8),\n        EmbeddedCurvePoint {\n            x: 0x1657737676968887fceb6dd516382ea13b3a2c557f509811cd86d5d1199bc443,\n            y: 0x1f39f0cb569040105fa1e2f156521e8b8e08261e635a2b210bdc94e8d6d65f77,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5, 6, 7, 8, 9], 9),\n        0x0c96db0790602dcb166cc4699e2d306c479a76926b81c2cb2aaa92d249ec7be7,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5, 6, 7, 8, 9], 9),\n        EmbeddedCurvePoint {\n            x: 0x0a3ceae42d14914a432aa60ec7fded4af7dad7dd4acdbf2908452675ec67e06d,\n            y: 0xfc19761eaaf621ad4aec9a8b2e84a4eceffdba78f60f8b9391b0bd9345a2f2,\n        },\n    );\n    assert_eq(\n        pedersen_hash_with_separator([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 10),\n        0x2cd37505871bc460a62ea1e63c7fe51149df5d0801302cf1cbc48beb8dff7e94,\n    );\n    assert_eq(\n        pedersen_commitment_with_separator([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 10),\n        EmbeddedCurvePoint {\n            x: 0x2fb3f8b3d41ddde007c8c3c62550f9a9380ee546fcc639ffbb3fd30c8d8de30c,\n            y: 0x300783be23c446b11a4c0fabf6c91af148937cea15fcf5fb054abf7f752ee245,\n        },\n    );\n}\n"
    },
    "171": {
      "function_locations": [
        {
          "name": "NewNote<Note>::new",
          "start": 1507
        },
        {
          "name": "create_note",
          "start": 1981
        },
        {
          "name": "destroy_note",
          "start": 3066
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/note/lifecycle.nr",
      "source": "use crate::{\n    context::PrivateContext,\n    note::{\n        ConfirmedNote,\n        note_interface::{NoteHash, NoteType},\n        NoteMessage,\n        utils::compute_confirmed_note_hash_for_nullification,\n    },\n    oracle::{notes::notify_created_note, random::random},\n};\nuse crate::protocol::{address::AztecAddress, traits::Packable};\n\n/// A note that was created in the current contract call.\n///\n/// This struct holds a freshly created note along with the side-effect counter that the kernel uses to order note\n/// creations within a transaction. It is produced by [`create_note`] and is typically wrapped in a\n/// [`NoteMessage`](crate::note::NoteMessage), which is responsible for delivering the note's information to its\n/// recipient so that it is not lost.\n///\n/// Unlike [`ConfirmedNote`](crate::note::ConfirmedNote), which represents a note whose existence has been proven\n/// (either by reading it from PXE or by checking historical state), a `NewNote` represents a note whose creation is\n/// still pending in the current transaction's side-effect stream. Its note hash has been pushed into the\n/// [`PrivateContext`] but has not yet been siloed nor inserted into the note hash tree.\npub struct NewNote<Note> {\n    pub note: Note,\n    pub owner: AztecAddress,\n    pub storage_slot: Field,\n    pub randomness: Field,\n    pub note_hash_counter: u32,\n}\n\nimpl<Note> NewNote<Note> {\n    fn new(note: Note, owner: AztecAddress, storage_slot: Field, randomness: Field, note_hash_counter: u32) -> Self {\n        // A counter of value zero indicates a settled note, which a NewNote by definition cannot be.\n        assert(note_hash_counter != 0, \"A NewNote cannot have a zero note hash counter\");\n        Self { note, owner, storage_slot, randomness, note_hash_counter }\n    }\n}\n\npub fn create_note<Note>(\n    context: &mut PrivateContext,\n    owner: AztecAddress,\n    storage_slot: Field,\n    note: Note,\n) -> NoteMessage<Note>\nwhere\n    Note: NoteType + NoteHash + Packable,\n{\n    let note_hash_counter = context.get_side_effect_counter();\n\n    // Safety: We use the randomness to preserve the privacy of the note recipient by preventing brute-forcing, so a\n    // malicious sender could use non-random values to make the note less private. But they already know the full note\n    // pre-image anyway, and so the recipient already trusts them to not disclose this information. We can therefore\n    // assume that the sender will cooperate in the random value generation.\n    let randomness = unsafe { random() };\n\n    let note_hash = note.compute_note_hash(owner, storage_slot, randomness);\n\n    notify_created_note(\n        owner,\n        storage_slot,\n        randomness,\n        Note::get_id(),\n        note.pack(),\n        note_hash,\n        note_hash_counter,\n    );\n\n    context.push_note_hash(note_hash);\n\n    NoteMessage::new(\n        NewNote::new(note, owner, storage_slot, randomness, note_hash_counter),\n        context,\n    )\n}\n\npub fn destroy_note<Note>(context: &mut PrivateContext, confirmed_note: ConfirmedNote<Note>)\nwhere\n    Note: NoteHash,\n{\n    let note_hash_for_nullification = compute_confirmed_note_hash_for_nullification(confirmed_note);\n    let nullifier = confirmed_note.note.compute_nullifier(context, confirmed_note.owner, note_hash_for_nullification);\n\n    let note_hash = if confirmed_note.metadata.is_settled() {\n        // Counter is zero, so we're nullifying a settled note and we don't populate the note_hash with real value.\n        0\n    } else {\n        // A non-zero note hash counter implies that we're nullifying a pending note (i.e. one that has not yet been\n        // persisted in the trees and is instead in the pending new note hashes array). In such a case we populate its\n        // hash with real value to inform the kernel which note we're nullifying so that it can either squash both the\n        // note and the nullifier if it's an inner note hash, or check that the it matches a pending note if it's a\n        // siloed note hash.\n        note_hash_for_nullification\n    };\n\n    context.push_nullifier_for_note_hash(nullifier, note_hash)\n}\n"
    },
    "174": {
      "function_locations": [
        {
          "name": "extract_property_value_from_selector",
          "start": 725
        },
        {
          "name": "check_packed_note",
          "start": 1830
        },
        {
          "name": "assert_notes_order",
          "start": 3636
        },
        {
          "name": "get_note",
          "start": 4969
        },
        {
          "name": "confirm_hinted_note",
          "start": 5531
        },
        {
          "name": "get_notes",
          "start": 8346
        },
        {
          "name": "apply_preprocessor",
          "start": 9099
        },
        {
          "name": "confirm_hinted_notes",
          "start": 9575
        },
        {
          "name": "view_note",
          "start": 14336
        },
        {
          "name": "get_notes_internal",
          "start": 14989
        },
        {
          "name": "view_notes",
          "start": 16355
        },
        {
          "name": "flatten_options",
          "start": 17737
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/note/note_getter.nr",
      "source": "use crate::{\n    context::PrivateContext,\n    note::{\n        ConfirmedNote,\n        HintedNote,\n        note_getter_options::{NoteGetterOptions, NoteStatus, PropertySelector, Select, Sort, SortOrder},\n        note_interface::{NoteHash, NoteType},\n        note_viewer_options::NoteViewerOptions,\n        utils::compute_note_existence_request,\n    },\n    oracle,\n    utils::{array, comparison::compare},\n};\n\nuse crate::protocol::{\n    address::AztecAddress,\n    constants::MAX_NOTE_HASH_READ_REQUESTS_PER_CALL,\n    traits::{Packable, ToField},\n};\n\npub use crate::note::constants::MAX_NOTES_PER_PAGE;\n\nmod test;\n\nfn extract_property_value_from_selector<let N: u32>(packed_note: [Field; N], selector: PropertySelector) -> Field {\n    // Selectors use PropertySelectors in order to locate note properties inside the packed note. This allows easier\n    // packing and custom (un)packing schemas. A note property is located inside the packed note using the index inside\n    // the array, a byte offset and a length.\n    let value: [u8; 32] = packed_note[selector.index as u32].to_be_bytes();\n    let offset = selector.offset;\n    let length = selector.length;\n    assert(offset as u32 + length as u32 <= 32, \"PropertySelector offset + length exceeds field byte width\");\n    let mut value_field = 0 as Field;\n    let mut acc: Field = 1;\n    for i in 0..32 {\n        if i < length {\n            // `value` is big-endian, so the last byte (index 31) holds the lowest value.\n            // offset shifts the starting point away from that last byte, and i walks\n            // through consecutive bytes.\n            value_field += value[(31 - offset - i) as u32] as Field * acc;\n            acc = acc * 256;\n        }\n    }\n    value_field\n}\n\nfn check_packed_note<let N: u32>(packed_note: [Field; N], selects: BoundedVec<Option<Select>, N>) {\n    for i in 0..selects.max_len() {\n        if i < selects.len() {\n            let select = selects.get_unchecked(i).unwrap_unchecked();\n            let value_field = extract_property_value_from_selector(packed_note, select.property_selector);\n\n            assert(compare(value_field, select.comparator, select.value.to_field()), \"Mismatch return note field.\");\n        }\n    }\n}\n\n// Asserts that two notes are correctly ordered given the sort criteria.\n//\n// Only the provided criteria are checked -- fields not covered by any criterion are never compared, and if\n// `sort_criteria` is empty no ordering is enforced at all. Criteria are evaluated in priority order: the first\n// criterion where the two notes differ determines whether the pair is correctly ordered. If all sorted fields are\n// equal, any order is accepted.\n//\n// For example, with criteria `[field_0 ASC, field_1 DESC]`:\n//   - `[1, 10], [2, 999]` -> passes: field_0 (1 < 2) satisfies ASC, field_1 is not checked.\n//   - `[1, 10], [1, 5]`  -> passes: field_0 ties, so field_1 (10 > 5) satisfies DESC.\n//   - `[1, 5],  [1, 10]` -> fails:  field_0 ties, so field_1 (5 < 10) violates DESC.\n//   - `[1, 10], [1, 10]` -> passes: all fields tie, any order criteria is valid.\n//\n// With a single criterion, `[field_0 DESC]`:\n//   - `[10, 1], [5, 20]` -> passes: field_0 (10 > 5) satisfies DESC, field_1 is never compared.\n//   - `[5, 1],  [5, 20]` -> passes: field_0 ties and there are no more criteria, so any order is accepted.\n//\n// With no criteria:\n//   - `[2, 5],  [1, 10]` -> passes: nothing to check.\n//\n// This is called by [`confirm_hinted_notes`] to validate that the oracle returned notes in the requested order.\nfn assert_notes_order<let N: u32>(note_1: [Field; N], note_2: [Field; N], sort_criteria: BoundedVec<Option<Sort>, N>) {\n    // Tracks whether a prior criterion already determined the ordering. Once true, all subsequent\n    // asserts become trivially satisfied. We fold this into the assert condition instead of\n    // predicating the loop body to avoid gating field extraction behind a branch, which would be\n    // more expensive in a circuit.\n    let mut order_decided = false;\n    for i in 0..sort_criteria.max_len() {\n        if i < sort_criteria.len() {\n            let sort = sort_criteria.get_unchecked(i).unwrap_unchecked();\n            let field_1 = extract_property_value_from_selector(note_1, sort.property_selector);\n            let field_2 = extract_property_value_from_selector(note_2, sort.property_selector);\n            if field_1 != field_2 {\n                let lt = field_1.lt(field_2);\n                if sort.order == SortOrder.ASC {\n                    assert(lt | order_decided, \"Return notes not sorted in ascending order.\");\n                } else {\n                    assert(!lt | order_decided, \"Return notes not sorted in descending order.\");\n                }\n                order_decided = true;\n            }\n        }\n    }\n}\n\npub fn get_note<Note>(\n    context: &mut PrivateContext,\n    owner: Option<AztecAddress>,\n    storage_slot: Field,\n) -> ConfirmedNote<Note>\nwhere\n    Note: NoteType + NoteHash + Packable,\n{\n    // Safety: Constraining that we got a valid note from the oracle is fairly straightforward: all we need to do is\n    // check that the metadata is correct, and that the note exists.\n    let hinted_note = unsafe { view_note::<Note>(owner, storage_slot) };\n\n    confirm_hinted_note(context, hinted_note, owner, storage_slot)\n}\n\nfn confirm_hinted_note<Note>(\n    context: &mut PrivateContext,\n    hinted_note: HintedNote<Note>,\n    owner: Option<AztecAddress>,\n    storage_slot: Field,\n) -> ConfirmedNote<Note>\nwhere\n    Note: NoteType + NoteHash + Packable,\n{\n    // For settled notes, the contract address is implicitly checked since the hash returned from\n    // `compute_note_existence_request` is siloed and kernels verify the siloing during note read request validation.\n    // Pending notes however are read with the unsiloed note hash, so we need to check that the contract address\n    // returned from the oracle matches. Since branching in circuits is expensive, we perform this check on all note\n    // types.\n    assert(hinted_note.contract_address.eq(context.this_address()), \"Note contract address mismatch.\");\n\n    // If an owner was provided in the function call, we need to check that it matches the one in the note. This is\n    // necessary because if there were two valid notes that differed only by owner, the note existence request check\n    // below would still pass even if the owner on the input would not match the one in the note.\n    if owner.is_some() {\n        assert(hinted_note.owner.eq(owner.unwrap_unchecked()), \"Note owner mismatch.\");\n    }\n\n    // We need to constrain that the storage slot in the hinted note matches the value on the input. Note that this\n    // assertion could be avoided if we did not receive the storage slot from the oracle but we instead directly\n    // injected it into the returned note type (e.g. by doing something like `HintedNote::from(hinted_note_from_oracle,\n    // storage_slot)`). This optimization is too low of a priority now.\n    assert(hinted_note.storage_slot == storage_slot, \"Note storage slot mismatch.\");\n\n    let note_existence_request = compute_note_existence_request(hinted_note);\n    context.assert_note_exists(note_existence_request);\n\n    ConfirmedNote::new(hinted_note, note_existence_request.note_hash())\n}\n\n/// Returns a BoundedVec of notes that have been proven to have been created by this contract, either in the current or\n/// past transactions (i.e. pending or settled notes). A second BoundedVec contains the note hashes used for the read\n/// requests, which can save constraints when computing the note's nullifiers.\n///\n/// WARNING: recall that notes are never destroyed! Note existence therefore does not imply that the note is _current_\n/// or _valid_ - this typically requires also emitting the note's nullifier to prove that it had not been emitted\n/// before. Because of this, calling this function directly from end-user applications should be discouraged, and safe\n/// abstractions such as aztec-nr's state variables should be used instead.\npub fn get_notes<Note, let M: u32, PreprocessorArgs, FilterArgs>(\n    context: &mut PrivateContext,\n    storage_slot: Field,\n    options: NoteGetterOptions<Note, M, PreprocessorArgs, FilterArgs>,\n) -> BoundedVec<ConfirmedNote<Note>, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\nwhere\n    Note: NoteType + NoteHash + Eq + Packable<N = M>,\n{\n    // Safety: The notes are constrained below.\n    let maybe_hinted_notes = unsafe { get_notes_internal(storage_slot, options) };\n\n    // We apply the constraints in a separate function instead of inlining them here to make it easier to test that\n    // these checks correctly reject bad notes.\n    confirm_hinted_notes(context, storage_slot, maybe_hinted_notes, options)\n}\n\nunconstrained fn apply_preprocessor<Note, PreprocessorArgs>(\n    notes: [Option<Note>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL],\n    preprocessor: fn([Option<Note>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL], PreprocessorArgs) -> [Option<Note>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL],\n    preprocessor_args: PreprocessorArgs,\n) -> [Option<Note>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL] {\n    preprocessor(notes, preprocessor_args)\n}\n\nfn confirm_hinted_notes<Note, let M: u32, PreprocessorArgs, FilterArgs>(\n    context: &mut PrivateContext,\n    storage_slot: Field,\n    maybe_hinted_notes: [Option<HintedNote<Note>>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL],\n    options: NoteGetterOptions<Note, M, PreprocessorArgs, FilterArgs>,\n) -> BoundedVec<ConfirmedNote<Note>, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\nwhere\n    Note: NoteType + NoteHash + Eq + Packable<N = M>,\n{\n    // The filter is applied first to avoid pushing note read requests for notes we're not interested in. Note that\n    // while the filter function can technically mutate the notes (as opposed to simply removing some), the private\n    // kernel will later validate that these note actually exist, so transformations would cause for that check to\n    // fail.\n    let filter_fn = options.filter;\n    let filter_args = options.filter_args;\n    let filtered_notes = filter_fn(maybe_hinted_notes, filter_args);\n\n    let hinted_notes = array::collapse(filtered_notes);\n\n    // We have now collapsed the sparse array of Options into a BoundedVec. This is a more ergonomic type and also\n    // results in reduced gate counts when setting a limit value, since we guarantee that the limit is an upper bound\n    // for the runtime length, and can therefore have fewer loop iterations.\n    assert(hinted_notes.len() <= options.limit, \"Got more notes than limit.\");\n\n    // What remains is to iterate over the hinted notes, assert their existence, and convert them into confirmed notes.\n    // Naively, we would construct a `BoundedVec<ConfirmedNote, _>` and simply `push` into it as we process each hinted\n    // note. We cannot use `BoundedVec::map` as the user specified the maximum number of notes in `options.limit`\n    // instead of a numeric type parameter (which is more ergonomic), and `map` requires the latter.\n    // Unfortunately, this results in terrible proving time performance. This is because the compiler is not smart\n    // enough to understand the structure of looping over the `BoundedVec<HintedNote, _>`: it treats every `push` as a\n    // conditional write to the confirmed array, resulting in runtime write indices (e.g. iteration 1 could write to\n    // indices either 0 or 1, beucase iteration 0 might not push).\n    // The loop does however have an interesting structure that we can reason about to achieve better performance:\n    // because we're just going over a `BoundedVec`, the first `vec.len()` iterations will result in writes, and the\n    // rest will not. Hence, we can just _unconditionally_ write to a raw storage array at the iteration index: we know\n    // the resulting array will have no gaps. Because of this, we can then manually create a correct `BoundedVec`.\n    let mut confirmed_notes_bvec_storage: [ConfirmedNote<_>; _] = std::mem::zeroed();\n\n    let mut prev_packed_note = [0; M];\n    for i in 0..options.limit {\n        if i < hinted_notes.len() {\n            let hinted_note = hinted_notes.get_unchecked(i);\n\n            // For settled notes, the contract address is implicitly checked since the hash returned from\n            // `compute_note_existence_request` is siloed and kernels verify the siloing during note read request\n            // validation. Pending notes however are read with the unsiloed note hash, so we need to check that the\n            // contract address returned from the oracle matches. Since branching in circuits is expensive, we perform\n            // this check on all note types.\n            assert(hinted_note.contract_address.eq(context.this_address()), \"Note contract address mismatch.\");\n\n            // If owner is provided, constrain that it matches the owner in the hinted note.\n            if options.owner.is_some() {\n                assert(hinted_note.owner.eq(options.owner.unwrap()), \"Note owner mismatch.\");\n            }\n\n            // We need to constrain that the storage slot in the hinted note matches the value on the input. Note that\n            // this assertion could be avoided if we did not receive the storage slot from the oracle but we instead\n            // directly injected it into the returned note type (e.g. by doing something like\n            // `HintedNote::from(hinted_note_from_oracle, storage_slot)`). This optimization is too low of a priority\n            // now.\n            assert(hinted_note.storage_slot == storage_slot, \"Note storage slot mismatch.\");\n\n            let packed_note = hinted_note.note.pack();\n            check_packed_note(packed_note, options.selects);\n            if i != 0 {\n                assert_notes_order(prev_packed_note, packed_note, options.sorts);\n            }\n            prev_packed_note = packed_note;\n\n            let note_existence_request = compute_note_existence_request(hinted_note);\n            context.assert_note_exists(note_existence_request);\n\n            confirmed_notes_bvec_storage[i] = ConfirmedNote::new(hinted_note, note_existence_request.note_hash());\n        };\n    }\n\n    BoundedVec::from_parts(confirmed_notes_bvec_storage, hinted_notes.len())\n}\n\npub unconstrained fn view_note<Note>(owner: Option<AztecAddress>, storage_slot: Field) -> HintedNote<Note>\nwhere\n    Note: NoteType + Packable,\n{\n    let maybe_hinted_notes: [_; 1] = oracle::notes::get_notes(\n        owner,\n        storage_slot,\n        0,\n        [],\n        [],\n        [],\n        [],\n        [],\n        [],\n        [],\n        [],\n        [],\n        1, // limit\n        0, // offset\n        NoteStatus.ACTIVE,\n    );\n\n    maybe_hinted_notes[0].expect(f\"Failed to get a note\")\n}\n\nunconstrained fn get_notes_internal<Note, let M: u32, PreprocessorArgs, FilterArgs>(\n    storage_slot: Field,\n    options: NoteGetterOptions<Note, M, PreprocessorArgs, FilterArgs>,\n) -> [Option<HintedNote<Note>>; MAX_NOTE_HASH_READ_REQUESTS_PER_CALL]\nwhere\n    Note: NoteType + Packable<N = M>,\n{\n    // This function simply performs some transformations from NoteGetterOptions into the types required by the oracle.\n    let (num_selects, select_by_indexes, select_by_offsets, select_by_lengths, select_values, select_comparators, sort_by_indexes, sort_by_offsets, sort_by_lengths, sort_order) =\n        flatten_options(options.selects, options.sorts);\n\n    let maybe_hinted_notes = oracle::notes::get_notes(\n        options.owner,\n        storage_slot,\n        num_selects,\n        select_by_indexes,\n        select_by_offsets,\n        select_by_lengths,\n        select_values,\n        select_comparators,\n        sort_by_indexes,\n        sort_by_offsets,\n        sort_by_lengths,\n        sort_order,\n        options.limit,\n        options.offset,\n        options.status,\n    );\n\n    apply_preprocessor(\n        maybe_hinted_notes,\n        options.preprocessor,\n        options.preprocessor_args,\n    )\n}\n\n/// Unconstrained variant of `get_notes`, meant to be used in unconstrained execution contexts. Notably only the note\n/// content is returned, and not any of the information used when proving its existence (e.g. note nonce, note hash,\n/// etc.).\npub unconstrained fn view_notes<Note, let M: u32>(\n    storage_slot: Field,\n    options: NoteViewerOptions<Note, M>,\n) -> BoundedVec<Note, MAX_NOTES_PER_PAGE>\nwhere\n    Note: NoteType + Packable<N = M> + Eq,\n{\n    let (num_selects, select_by_indexes, select_by_offsets, select_by_lengths, select_values, select_comparators, sort_by_indexes, sort_by_offsets, sort_by_lengths, sort_order) =\n        flatten_options(options.selects, options.sorts);\n\n    // We fetch the notes from the same oracle we use in the constrained case, except we don't bother inspecting the\n    // metadata in order to prove existence.\n    let maybe_hinted_notes = oracle::notes::get_notes(\n        options.owner,\n        storage_slot,\n        num_selects,\n        select_by_indexes,\n        select_by_offsets,\n        select_by_lengths,\n        select_values,\n        select_comparators,\n        sort_by_indexes,\n        sort_by_offsets,\n        sort_by_lengths,\n        sort_order,\n        options.limit,\n        options.offset,\n        options.status,\n    );\n\n    // Even though we don't expect for the maybe_hinted_notes array to be sparse, collapse is still useful in this case\n    // to convert it into a BoundedVec.\n    array::collapse(maybe_hinted_notes).map(\n        // view_notes just returns the actual note, so we drop the metadata\n        |hinted_note| hinted_note.note,\n    )\n}\n\nunconstrained fn flatten_options<let N: u32>(\n    selects: BoundedVec<Option<Select>, N>,\n    sorts: BoundedVec<Option<Sort>, N>,\n) -> (u8, [u8; N], [u8; N], [u8; N], [Field; N], [u8; N], [u8; N], [u8; N], [u8; N], [u8; N]) {\n    let mut num_selects = 0;\n    let mut select_by_indexes = [0; N];\n    let mut select_by_offsets = [0; N];\n    let mut select_by_lengths = [0; N];\n    let mut select_values = [0; N];\n    let mut select_comparators = [0; N];\n\n    for i in 0..selects.len() {\n        let select = selects.get(i);\n        if select.is_some() {\n            select_by_indexes[num_selects as u32] = select.unwrap_unchecked().property_selector.index;\n            select_by_offsets[num_selects as u32] = select.unwrap_unchecked().property_selector.offset;\n            select_by_lengths[num_selects as u32] = select.unwrap_unchecked().property_selector.length;\n            select_values[num_selects as u32] = select.unwrap_unchecked().value;\n            select_comparators[num_selects as u32] = select.unwrap_unchecked().comparator;\n            num_selects += 1;\n        };\n    }\n\n    let mut sort_by_indexes = [0; N];\n    let mut sort_by_offsets = [0; N];\n    let mut sort_by_lengths = [0; N];\n    let mut sort_order = [0; N];\n    for i in 0..sorts.len() {\n        let sort = sorts.get(i);\n        if sort.is_some() {\n            sort_by_indexes[i] = sort.unwrap_unchecked().property_selector.index;\n            sort_by_offsets[i] = sort.unwrap_unchecked().property_selector.offset;\n            sort_by_lengths[i] = sort.unwrap_unchecked().property_selector.length;\n            sort_order[i] = sort.unwrap_unchecked().order;\n        };\n    }\n\n    (\n        num_selects, select_by_indexes, select_by_offsets, select_by_lengths, select_values, select_comparators,\n        sort_by_indexes, sort_by_offsets, sort_by_lengths, sort_order,\n    )\n}\n"
    },
    "177": {
      "function_locations": [
        {
          "name": "NoteMessage<Note>::new",
          "start": 1285
        },
        {
          "name": "NoteMessage<Note>::deliver",
          "start": 2598
        },
        {
          "name": "NoteMessage<Note>::deliver_to",
          "start": 3771
        },
        {
          "name": "NoteMessage<Note>::get_note",
          "start": 4750
        },
        {
          "name": "NoteMessage<Note>::get_new_note",
          "start": 5059
        },
        {
          "name": "MaybeNoteMessage<Note>::new",
          "start": 6543
        },
        {
          "name": "MaybeNoteMessage<Note>::deliver",
          "start": 6986
        },
        {
          "name": "MaybeNoteMessage<Note>::deliver_to",
          "start": 7579
        },
        {
          "name": "MaybeNoteMessage<Note>::get_note",
          "start": 7855
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/note/note_message.nr",
      "source": "use crate::{\n    context::PrivateContext,\n    messages::{\n        delivery::{do_private_message_delivery, MessageDeliveryBuilder},\n        logs::note::encode_private_note_message,\n    },\n    note::{lifecycle::NewNote, note_interface::NoteType},\n};\nuse crate::protocol::{address::AztecAddress, traits::Packable};\n\n/// A message with information about a note that was created in the current contract call. This message **MUST** be\n/// delivered to a recipient in order to not lose the private note information.\n///\n/// Use [`NoteMessage::deliver`] to select a delivery mechanism. The same message can be delivered to multiple\n/// recipients.\n#[must_use = \"Unused NoteMessage result - use the `deliver` function to prevent the note information from being lost forever\"]\npub struct NoteMessage<Note> {\n    pub(crate) new_note: NewNote<Note>,\n\n    // NoteMessage is constructed when a note is created, which means that the `context` object will be in scope. By\n    // storing a reference to it inside this object we remove the need for its methods to receive it, resulting in a\n    // cleaner end-user API.\n    context: &mut PrivateContext,\n}\n\nimpl<Note> NoteMessage<Note>\nwhere\n    Note: NoteType + Packable,\n{\n    pub fn new(new_note: NewNote<Note>, context: &mut PrivateContext) -> Self {\n        Self { new_note, context }\n    }\n\n    /// Delivers the note message to its owner, providing them access to the private note information.\n    ///\n    /// The message is first encrypted to the owner's public key, ensuring no other actor can read it.\n    ///\n    /// The `delivery_mode` is produced by the [`crate::messages::delivery::MessageDelivery`] entrypoints\n    /// (`offchain`, `onchain_unconstrained`, or `onchain_constrained`). It informs costs (both proving time and TX\n    /// fees) as well as delivery guarantees, and must be a compile-time constant.\n    ///\n    /// To deliver the message to a recipient that is not the note's owner, use [`deliver_to`](NoteMessage::deliver_to)\n    /// instead.\n    ///\n    /// ## Invalid Recipients\n    ///\n    /// If the note's owner is an invalid address, then a random public key is selected and message delivery continues\n    /// as normal. This prevents both 'king of the hill' attacks (where a sender would otherwise fail to deliver a note\n    /// to an invalid recipient) and forced privacy leaks (where an invalid recipient results in a unique transaction\n    /// fingerprint, e.g. one lacking the private logs that would correspond to message delivery).\n    pub fn deliver<D>(self, delivery_mode: D)\n    where\n        D: MessageDeliveryBuilder,\n    {\n        self.deliver_to(self.new_note.owner, delivery_mode);\n    }\n\n    /// Same as [`deliver`](NoteMessage::deliver), except the message gets delivered to an arbitrary `recipient`\n    /// instead\n    /// of the note owner.\n    ///\n    /// Note that `recipient` getting the message does not let them **use** the note, it only means that thy will know\n    /// about it, including the transaction in which it was created, and prove it exists. They will also not be able to\n    /// know when or if the note is used (i.e. nullified), assuming the standard note nullifier function.\n    ///\n    /// ## Use Cases\n    ///\n    /// This feature enables many design patterns that diverge in how notes are traditionally handled. For example, an\n    /// institutional contract may require to have some actor receive all notes created for compliance purposes. Or a\n    /// low value application like a game might deliver all notes offchain to a centralized server that then serves\n    /// them via the app, bypassing the need for contract sync and improving UX.\n    pub fn deliver_to<D>(self, recipient: AztecAddress, delivery_mode: D)\n    where\n        D: MessageDeliveryBuilder,\n    {\n        // Technical note: we're about to call a closure that needs access to `new_note`, but we can't pass `self` to\n        // it because the closure might execute in unconstrained mode, and since `self` contains a mutable reference to\n        // `context` this would cause for a mutable reference to cross the constrained-unconstrained barrier, which is\n        // not allowed. As a workaround, we create a variable without the context and capture that instead.\n        let new_note = self.new_note;\n\n        do_private_message_delivery(\n            self.context,\n            || encode_private_note_message(\n                new_note.note,\n                new_note.owner,\n                new_note.storage_slot,\n                new_note.randomness,\n            ),\n            Option::some(self.new_note.note_hash_counter),\n            recipient,\n            delivery_mode,\n        );\n    }\n\n    /// Returns the note contained in the message.\n    pub fn get_note(self) -> Note {\n        self.new_note.note\n    }\n\n    /// Returns the [`NewNote`] container in the message.\n    ///\n    /// This is an advanced function, typically needed only when creating new kinds of state variables that need to\n    /// create [`MaybeNoteMessage`] values.\n    pub fn get_new_note(self) -> NewNote<Note> {\n        self.new_note\n    }\n}\n\n/// Same as [`NoteMessage`], except this type also handles the possibility where the note may not have been actually\n/// created depending on runtime conditions (e.g. a token transfer change note is not created if there is no change).\n///\n/// Other than that, it and [`MaybeNoteMessage::deliver`] behave the exact same way as [`NoteMessage`].\n#[must_use = \"Unused NoteMessage result - use the `deliver` function to prevent the note information from being lost forever\"]\npub struct MaybeNoteMessage<Note> {\n    // We can't simply create an `Option` of `NoteMessage` because that type includes a mutable reference to the\n    // `context`. All `Option` methods (map, or, etc.) have if-else expressions in which they might return the\n    // contents, and conditionally returning mutable references is disallowed by Noir. Hence, we create this type which\n    // only holds `NewNote` in the `Option`, keeping the `context` out.\n    maybe_new_note: Option<NewNote<Note>>,\n\n    // MaybeNoteMessage is expected to be constructed when a note is created, which means that the `context` object\n    // will be in scope. By storing a reference to it inside this object we remove the need for its methods to receive\n    // it, resulting in a cleaner end-user API.\n    context: &mut PrivateContext,\n}\n\nimpl<Note> MaybeNoteMessage<Note>\nwhere\n    Note: NoteType + Packable,\n{\n    pub fn new(maybe_new_note: Option<NewNote<Note>>, context: &mut PrivateContext) -> Self {\n        Self { maybe_new_note, context }\n    }\n\n    /// Same as [`NoteMessage::deliver`], except the message will only be delivered if it actually exists.\n    ///\n    /// Messages delivered using [`crate::messages::delivery::MessageDelivery::onchain_constrained()`] will\n    /// pay proving costs regardless of whether the message exists or not.\n    pub fn deliver<D>(self, delivery_mode: D)\n    where\n        D: MessageDeliveryBuilder,\n    {\n        if self.maybe_new_note.is_some() {\n            NoteMessage::new(self.maybe_new_note.unwrap_unchecked(), self.context).deliver(delivery_mode);\n        }\n    }\n\n    /// Same as [`NoteMessage::deliver_to`], except the message will only be delivered if it actually exists.\n    ///\n    /// Messages delivered using [`crate::messages::delivery::MessageDelivery::onchain_constrained()`] will\n    /// pay proving costs regardless of whether the message exists or not.\n    pub fn deliver_to<D>(self, recipient: AztecAddress, delivery_mode: D)\n    where\n        D: MessageDeliveryBuilder,\n    {\n        if self.maybe_new_note.is_some() {\n            NoteMessage::new(self.maybe_new_note.unwrap_unchecked(), self.context).deliver_to(recipient, delivery_mode);\n        }\n    }\n\n    /// Returns the note contained in the message.\n    pub fn get_note(self) -> Option<Note> {\n        self.maybe_new_note.map(|new_note| new_note.note)\n    }\n}\n"
    },
    "178": {
      "function_locations": [
        {
          "name": "NoteMetadata::from_raw_data",
          "start": 2912
        },
        {
          "name": "NoteMetadata::is_pending_same_phase",
          "start": 3715
        },
        {
          "name": "NoteMetadata::is_pending_previous_phase",
          "start": 4222
        },
        {
          "name": "NoteMetadata::is_settled",
          "start": 4474
        },
        {
          "name": "NoteMetadata::to_pending_same_phase",
          "start": 4703
        },
        {
          "name": "NoteMetadata::to_pending_previous_phase",
          "start": 5050
        },
        {
          "name": "NoteMetadata::to_settled",
          "start": 5380
        },
        {
          "name": "<impl From<PendingSamePhaseNoteMetadata> for NoteMetadata>::from",
          "start": 5646
        },
        {
          "name": "<impl From<PendingPreviousPhaseNoteMetadata> for NoteMetadata>::from",
          "start": 5843
        },
        {
          "name": "<impl From<SettledNoteMetadata> for NoteMetadata>::from",
          "start": 6014
        },
        {
          "name": "PendingSamePhaseNoteMetadata::new",
          "start": 6916
        },
        {
          "name": "PendingPreviousPhaseNoteMetadata::new",
          "start": 7900
        },
        {
          "name": "PendingPreviousPhaseNoteMetadata::note_nonce",
          "start": 7974
        },
        {
          "name": "SettledNoteMetadata::new",
          "start": 8478
        },
        {
          "name": "SettledNoteMetadata::note_nonce",
          "start": 8552
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/note/note_metadata.nr",
      "source": "use crate::protocol::traits::{Deserialize, Packable, Serialize};\n\n// There's temporarily quite a bit of boilerplate here because Noir does not yet support enums. This file will\n// eventually be simplified into something closer to:\n//\n// pub enum NoteMetadata {\n//   PendingSamePhase{ note_hash_counter: u32 }, PendingOtherPhase{ note_hash_counter: u32, note_nonce: Field },\n// Settled{ note_nonce: Field },\n// }\n//\n// For now, we have `NoteMetadata` acting as a sort of tagged union.\n\nstruct NoteStageEnum {\n    /// A note created in the current transaction during the current execution phase.\n    ///\n    /// Notes from the non-revertible phase will be in this stage if the transaction is still in the non-revertible\n    /// phase, notes from the revertible phase will be in this stage until the transaction ends.\n    ///\n    /// These notes are not yet in the note hash tree, though they will be inserted unless nullified in this\n    /// transaction (becoming a transient note).\n    PENDING_SAME_PHASE: u8,\n    /// A note created in the current transaction during the previous execution phase.\n    ///\n    /// Because there are only two phases and their order is always the same (first non-revertible and then revertible)\n    /// this implies that the note was created in the non-revertible phase, and that the current phase is the\n    /// revertible phase.\n    ///\n    /// These notes are not yet in the note hash tree, though they will be inserted **even if nullified in this\n    /// transaction**. This means that they must be nullified as if they were settled (i.e. using the unique note hash)\n    /// in order to avoid double spends once they become settled.\n    PENDING_PREVIOUS_PHASE: u8,\n    /// A note created in a prior transaction.\n    ///\n    /// Settled notes have already been inserted into the note hash tree.\n    SETTLED: u8,\n}\n\nglobal NoteStage: NoteStageEnum = NoteStageEnum { PENDING_SAME_PHASE: 1, PENDING_PREVIOUS_PHASE: 2, SETTLED: 3 };\n\n/// The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for\n/// kernel read requests, as well as the correct nullifier to avoid double-spends.\n///\n/// This represents a note in any of the three valid stages (pending same phase, pending previous phase, or settled).\n/// In order to access the underlying fields callers must first find the appropriate stage (e.g. via `is_settled()`)\n/// and then convert this into the appropriate type (e.g. via `to_settled()`).\n#[derive(Deserialize, Eq, Serialize, Packable)]\npub struct NoteMetadata {\n    stage: u8,\n    maybe_note_nonce: Field,\n}\n\nimpl NoteMetadata {\n    /// Constructs a `NoteMetadata` object from optional note hash counter and nonce. Both a zero note hash counter and\n    /// a zero nonce are invalid, so those are used to signal non-existent values.\n    pub fn from_raw_data(nonzero_note_hash_counter: bool, maybe_note_nonce: Field) -> Self {\n        if nonzero_note_hash_counter {\n            if maybe_note_nonce == 0 {\n                Self { stage: NoteStage.PENDING_SAME_PHASE, maybe_note_nonce }\n            } else {\n                Self { stage: NoteStage.PENDING_PREVIOUS_PHASE, maybe_note_nonce }\n            }\n        } else if maybe_note_nonce != 0 {\n            Self { stage: NoteStage.SETTLED, maybe_note_nonce }\n        } else {\n            panic(\n                f\"Note has a zero note hash counter and no nonce - existence cannot be proven\",\n            )\n        }\n    }\n\n    /// Returns `true` if the note is pending **and** from the same phase, i.e. if it's been created in the current\n    /// transaction during the current execution phase (either non-revertible or revertible).\n    pub fn is_pending_same_phase(self) -> bool {\n        self.stage == NoteStage.PENDING_SAME_PHASE\n    }\n\n    /// Returns `true` if the note is pending **and** from the previous phase, i.e. if it's been created in the current\n    /// transaction during an execution phase prior to the current one. Because private execution only has two phases\n    /// with strict ordering, this implies that the note was created in the non-revertible phase, and that the current\n    /// phase is the revertible phase.\n    pub fn is_pending_previous_phase(self) -> bool {\n        self.stage == NoteStage.PENDING_PREVIOUS_PHASE\n    }\n\n    /// Returns `true` if the note is settled, i.e. if it's been created in a prior transaction and is therefore\n    /// already in the note hash tree.\n    pub fn is_settled(self) -> bool {\n        self.stage == NoteStage.SETTLED\n    }\n\n    /// Asserts that the metadata is that of a pending note from the same phase and converts it accordingly.\n    pub fn to_pending_same_phase(self) -> PendingSamePhaseNoteMetadata {\n        assert_eq(self.stage, NoteStage.PENDING_SAME_PHASE, \"Note is not in stage PENDING_SAME_PHASE\");\n        PendingSamePhaseNoteMetadata::new()\n    }\n\n    /// Asserts that the metadata is that of a pending note from a previous phase and converts it accordingly.\n    pub fn to_pending_previous_phase(self) -> PendingPreviousPhaseNoteMetadata {\n        assert_eq(self.stage, NoteStage.PENDING_PREVIOUS_PHASE, \"Note is not in stage PENDING_PREVIOUS_PHASE\");\n        PendingPreviousPhaseNoteMetadata::new(self.maybe_note_nonce)\n    }\n\n    /// Asserts that the metadata is that of a settled note and converts it accordingly.\n    pub fn to_settled(self) -> SettledNoteMetadata {\n        assert_eq(self.stage, NoteStage.SETTLED, \"Note is not in stage SETTLED\");\n        SettledNoteMetadata::new(self.maybe_note_nonce)\n    }\n}\n\nimpl From<PendingSamePhaseNoteMetadata> for NoteMetadata {\n    fn from(_value: PendingSamePhaseNoteMetadata) -> Self {\n        NoteMetadata::from_raw_data(true, std::mem::zeroed())\n    }\n}\n\nimpl From<PendingPreviousPhaseNoteMetadata> for NoteMetadata {\n    fn from(value: PendingPreviousPhaseNoteMetadata) -> Self {\n        NoteMetadata::from_raw_data(true, value.note_nonce())\n    }\n}\n\nimpl From<SettledNoteMetadata> for NoteMetadata {\n    fn from(value: SettledNoteMetadata) -> Self {\n        NoteMetadata::from_raw_data(false, value.note_nonce())\n    }\n}\n\n/// The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for\n/// kernel read requests, as well as the correct nullifier to avoid double-spends.\n///\n/// This represents a pending same phase note, i.e. a note that was created in the transaction that is currently being\n/// executed during the current execution phase (either non-revertible or revertible).\npub struct PendingSamePhaseNoteMetadata {\n    // This struct contains no fields since there is no metadata associated with a pending same phase note: it has no nonce (since it may get squashed by a nullifier emitted in the same phase), and while it does have a note hash counter we cannot constrain its value (and don't need to - only that it is non-zero).\n}\n\nimpl PendingSamePhaseNoteMetadata {\n    pub fn new() -> Self {\n        Self {}\n    }\n}\n\n/// The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for\n/// kernel read requests, as well as the correct nullifier to avoid double-spends.\n///\n/// This represents a pending previous phase note, i.e. a note that was created in the transaction that is currently\n/// being executed, during the previous execution phase. Because there are only two phases and their order is always\n/// the same (first non-revertible and then revertible) this implies that the note was created in the non-revertible\n/// phase, and that the current phase is the revertible phase.\npub struct PendingPreviousPhaseNoteMetadata {\n    note_nonce: Field,\n    // This struct does not contain a note hash counter, even though one exists for this note, because we cannot\n    // constrain its value (and don't need to - only that it is non-zero).\n}\n\nimpl PendingPreviousPhaseNoteMetadata {\n    pub fn new(note_nonce: Field) -> Self {\n        Self { note_nonce }\n    }\n\n    pub fn note_nonce(self) -> Field {\n        self.note_nonce\n    }\n}\n\n/// The metadata required to both prove a note's existence and destroy it, by computing the correct note hash for\n/// kernel read requests, as well as the correct nullifier to avoid double-spends.\n///\n/// This represents a settled note, i.e. a note that was created in a prior transaction and is therefore already in the\n/// note hash tree.\npub struct SettledNoteMetadata {\n    note_nonce: Field,\n}\n\nimpl SettledNoteMetadata {\n    pub fn new(note_nonce: Field) -> Self {\n        Self { note_nonce }\n    }\n\n    pub fn note_nonce(self) -> Field {\n        self.note_nonce\n    }\n}\n"
    },
    "180": {
      "function_locations": [
        {
          "name": "compute_note_hash",
          "start": 853
        },
        {
          "name": "compute_note_nullifier",
          "start": 1702
        },
        {
          "name": "compute_note_existence_request",
          "start": 2210
        },
        {
          "name": "compute_note_hash_for_nullification",
          "start": 3396
        },
        {
          "name": "compute_confirmed_note_hash_for_nullification",
          "start": 4448
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/note/utils.nr",
      "source": "use crate::{context::NoteExistenceRequest, note::{ConfirmedNote, HintedNote, note_interface::NoteHash}};\n\nuse crate::protocol::{\n    constants::{DOM_SEP__NOTE_HASH, DOM_SEP__NOTE_NULLIFIER},\n    hash::{compute_siloed_note_hash, compute_unique_note_hash, poseidon2_hash_with_separator},\n};\n\n/// Computes a domain-separated note hash.\n///\n/// Receives the `storage_slot` of the [`crate::state_vars::StateVariable`] that holds the note, plus any arbitrary\n/// note `data`. This typically includes randomness, owner, and domain specific values (e.g. numeric amount, address,\n/// id, etc.).\n///\n/// Usage of this function guarantees that different state variables will never produce colliding note hashes, even if\n/// their underlying notes have different implementations.\npub fn compute_note_hash<let N: u32>(storage_slot: Field, data: [Field; N]) -> Field {\n    // All state variables have different storage slots, so by placing this at a fixed first position in the preimage\n    // we prevent collisions.\n    poseidon2_hash_with_separator([storage_slot].concat(data), DOM_SEP__NOTE_HASH)\n}\n\n/// Computes a domain-separated note nullifier.\n///\n/// Receives the `note_hash_for_nullification` of the note (usually returned by\n/// [`compute_confirmed_note_hash_for_nullification`]), plus any arbitrary note `data`. This typically includes\n/// secrets, such as the app-siloed nullifier hiding key of the note's owner.\n///\n/// Usage of this function guarantees that different state variables will never produce colliding note nullifiers, even\n/// if their underlying notes have different implementations.\npub fn compute_note_nullifier<let N: u32>(note_hash_for_nullification: Field, data: [Field; N]) -> Field {\n    // All notes have different note hashes for nullification (i.e. transient or settled), so by placing this at a\n    // fixed first position in the preimage we prevent collisions.\n    poseidon2_hash_with_separator(\n        [note_hash_for_nullification].concat(data),\n        DOM_SEP__NOTE_NULLIFIER,\n    )\n}\n\n/// Returns the [`NoteExistenceRequest`] used to prove a note exists.\npub fn compute_note_existence_request<Note>(hinted_note: HintedNote<Note>) -> NoteExistenceRequest\nwhere\n    Note: NoteHash,\n{\n    let note_hash =\n        hinted_note.note.compute_note_hash(hinted_note.owner, hinted_note.storage_slot, hinted_note.randomness);\n\n    if hinted_note.metadata.is_settled() {\n        // Settled notes are read by siloing with contract address and nonce (resulting in the final unique note hash,\n        // which is already in the note hash tree).\n        let siloed_note_hash = compute_siloed_note_hash(hinted_note.contract_address, note_hash);\n        NoteExistenceRequest::for_settled(compute_unique_note_hash(\n            hinted_note.metadata.to_settled().note_nonce(),\n            siloed_note_hash,\n        ))\n    } else {\n        // Pending notes (both same phase and previous phase ones) are read by their non-siloed hash (not even by\n        // contract address), which is what is stored in the new note hashes array (at the position hinted by note hash\n        // counter).\n        NoteExistenceRequest::for_pending(note_hash, hinted_note.contract_address)\n    }\n}\n\n/// Unconstrained variant of [`compute_confirmed_note_hash_for_nullification`].\npub unconstrained fn compute_note_hash_for_nullification<Note>(hinted_note: HintedNote<Note>) -> Field\nwhere\n    Note: NoteHash,\n{\n    // Creating a ConfirmedNote like we do here is typically unsafe, as we've not confirmed existence. We can do it\n    // here because this is an unconstrained function, so the returned value should not make its way to a constrained\n    // function. This lets us reuse the `compute_confirmed_note_hash_for_nullification` implementation.\n    compute_confirmed_note_hash_for_nullification(ConfirmedNote::new(\n        hinted_note,\n        compute_note_existence_request(hinted_note).note_hash(),\n    ))\n}\n\n/// Returns the note hash to use when computing its nullifier.\n///\n/// The `note_hash_for_nullification` parameter [`NoteHash::compute_nullifier`] takes depends on the note's stage, e.g.\n/// settled notes use the unique note hash, but pending notes cannot as they have no nonce. This function returns the\n/// correct note hash to use.\n///\n/// Use [`compute_note_hash_for_nullification`] when computing this value in unconstrained functions.\npub fn compute_confirmed_note_hash_for_nullification<Note>(confirmed_note: ConfirmedNote<Note>) -> Field {\n    // There is just one instance in which the note hash for nullification does not match the note hash used for a read\n    // request, which is when dealing with pending previous phase notes. These had their existence proven using their\n    // non-siloed note hash along with the note hash counter (like all pending notes), but since they will be\n    // unconditionally inserted in the note hash tree (since they cannot be squashed) they must be nullified using the\n    // *unique* note hash. If we didn't, it'd be possible to emit a second different nullifier for the same note in a\n    // follow up transaction, once the note is settled, resulting in a double spend.\n\n    if confirmed_note.metadata.is_pending_previous_phase() {\n        let siloed_note_hash = compute_siloed_note_hash(\n            confirmed_note.contract_address,\n            confirmed_note.proven_note_hash,\n        );\n        let note_nonce = confirmed_note.metadata.to_pending_previous_phase().note_nonce();\n\n        compute_unique_note_hash(note_nonce, siloed_note_hash)\n    } else {\n        confirmed_note.proven_note_hash\n    }\n}\n"
    },
    "182": {
      "function_locations": [
        {
          "name": "compute_nullifier_existence_request",
          "start": 408
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/nullifier/utils.nr",
      "source": "use crate::{context::NullifierExistenceRequest, oracle::nullifiers::is_nullifier_pending};\n\nuse crate::protocol::{address::aztec_address::AztecAddress, hash::compute_siloed_nullifier};\n\n/// Returns the [`NullifierExistenceRequest`] used to prove a nullifier exists.\npub fn compute_nullifier_existence_request(\n    unsiloed_nullifier: Field,\n    contract_address: AztecAddress,\n) -> NullifierExistenceRequest {\n    let pending_read_request = NullifierExistenceRequest::for_pending(unsiloed_nullifier, contract_address);\n\n    let siloed_nullifier = compute_siloed_nullifier(contract_address, unsiloed_nullifier);\n    let settled_read_request = NullifierExistenceRequest::for_settled(siloed_nullifier);\n\n    // Safety: This is a hint to check whether we are reading a pending or settled nullifier. The chosen read request\n    // will be validated by the kernel. Failure to provide a correct hint will cause the read request validation to\n    // fail.\n    let should_use_pending_read_request = unsafe { is_nullifier_pending(unsiloed_nullifier, contract_address) };\n\n    if should_use_pending_read_request {\n        pending_read_request\n    } else {\n        settled_read_request\n    }\n}\n"
    },
    "183": {
      "function_locations": [
        {
          "name": "aes128_decrypt_oracle",
          "start": 194
        },
        {
          "name": "try_aes128_decrypt",
          "start": 1046
        },
        {
          "name": "test::aes_encrypt_then_decrypt",
          "start": 1860
        },
        {
          "name": "test::aes_encrypt_then_decrypt_with_bad_sym_key_is_caught",
          "start": 3150
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/aes128_decrypt.nr",
      "source": "#[oracle(aztec_utl_decryptAes128)]\nunconstrained fn aes128_decrypt_oracle<let N: u32>(\n    ciphertext: BoundedVec<u8, N>,\n    iv: [u8; 16],\n    sym_key: [u8; 16],\n) -> Option<BoundedVec<u8, N>> {}\n\n/// Attempts to decrypt a ciphertext using AES128.\n///\n/// Returns `Option::some(plaintext)` on success, or `Option::none()` if decryption fails (e.g. due to malformed\n/// ciphertext or invalid PKCS#7 padding). Note that decryption with the wrong key will almost always return `None`\n/// because the decrypted garbage data will have invalid PKCS#7 padding.\n///\n/// Note that we accept ciphertext as a BoundedVec, not as an array. This is because this function is typically used\n/// when processing logs and at that point we don't have comptime information about the length of the ciphertext as\n/// the log is not specific to any individual note.\n// TODO(F-498): review naming consistency\npub unconstrained fn try_aes128_decrypt<let N: u32>(\n    ciphertext: BoundedVec<u8, N>,\n    iv: [u8; 16],\n    sym_key: [u8; 16],\n) -> Option<BoundedVec<u8, N>> {\n    aes128_decrypt_oracle(ciphertext, iv, sym_key)\n}\n\nmod test {\n    use crate::{\n        keys::ecdh_shared_secret::compute_app_siloed_shared_secret,\n        messages::encryption::aes128::derive_aes_symmetric_key_and_iv_from_shared_secret,\n        utils::{array::subarray::subarray, point::point_from_x_coord},\n    };\n    use crate::protocol::address::AztecAddress;\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::try_aes128_decrypt;\n    use std::aes128::aes128_encrypt;\n\n    global CONTRACT_ADDRESS: AztecAddress = AztecAddress { inner: 42 };\n    global TEST_PLAINTEXT_LENGTH: u32 = 10;\n    global TEST_CIPHERTEXT_LENGTH: u32 = 16;\n    global TEST_PADDING_LENGTH: u32 = TEST_CIPHERTEXT_LENGTH - TEST_PLAINTEXT_LENGTH;\n\n    #[test]\n    unconstrained fn aes_encrypt_then_decrypt() {\n        let env = TestEnvironment::new();\n\n        env.utility_context(|_| {\n            let shared_secret_point = point_from_x_coord(1).unwrap();\n            let s_app = compute_app_siloed_shared_secret(shared_secret_point, CONTRACT_ADDRESS);\n\n            let (sym_key, iv) = derive_aes_symmetric_key_and_iv_from_shared_secret::<1>(s_app)[0];\n\n            let plaintext: [u8; TEST_PLAINTEXT_LENGTH] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];\n\n            let ciphertext: [u8; TEST_CIPHERTEXT_LENGTH] = aes128_encrypt(plaintext, iv, sym_key);\n\n            let ciphertext_bvec = BoundedVec::<u8, TEST_CIPHERTEXT_LENGTH>::from_array(ciphertext);\n\n            let received_plaintext = try_aes128_decrypt(ciphertext_bvec, iv, sym_key).unwrap();\n            assert_eq(received_plaintext.len(), TEST_PLAINTEXT_LENGTH);\n            assert_eq(received_plaintext.max_len(), TEST_CIPHERTEXT_LENGTH);\n            assert_eq(subarray::<_, _, TEST_PLAINTEXT_LENGTH>(received_plaintext.storage(), 0), plaintext);\n            assert_eq(\n                subarray::<_, _, TEST_PADDING_LENGTH>(received_plaintext.storage(), TEST_PLAINTEXT_LENGTH),\n                [0 as u8; TEST_PADDING_LENGTH],\n            );\n        })\n    }\n\n    #[test]\n    unconstrained fn aes_encrypt_then_decrypt_with_bad_sym_key_is_caught() {\n        let env = TestEnvironment::new();\n\n        env.utility_context(|_| {\n            // Decrypting with the wrong key results in garbage data with invalid PKCS#7 padding,\n            // so the oracle returns None.\n            let shared_secret_point = point_from_x_coord(1).unwrap();\n            let s_app = compute_app_siloed_shared_secret(shared_secret_point, CONTRACT_ADDRESS);\n\n            let (sym_key, iv) = derive_aes_symmetric_key_and_iv_from_shared_secret::<1>(s_app)[0];\n\n            let plaintext: [u8; TEST_PLAINTEXT_LENGTH] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];\n            let ciphertext: [u8; TEST_CIPHERTEXT_LENGTH] = aes128_encrypt(plaintext, iv, sym_key);\n\n            let mut bad_sym_key = sym_key;\n            bad_sym_key[0] = 0;\n\n            let ciphertext_bvec = BoundedVec::<u8, TEST_CIPHERTEXT_LENGTH>::from_array(ciphertext);\n            // Decryption with wrong key returns None because the garbage output has invalid PKCS#7 padding.\n            let result = try_aes128_decrypt(ciphertext_bvec, iv, bad_sym_key);\n            assert(result.is_none(), \"decryption with bad key should return None\");\n        });\n    }\n}\n"
    },
    "185": {
      "function_locations": [
        {
          "name": "address",
          "start": 272
        },
        {
          "name": "sender",
          "start": 343
        },
        {
          "name": "transaction_fee",
          "start": 415
        },
        {
          "name": "chain_id",
          "start": 489
        },
        {
          "name": "version",
          "start": 555
        },
        {
          "name": "block_number",
          "start": 623
        },
        {
          "name": "timestamp",
          "start": 693
        },
        {
          "name": "min_fee_per_l2_gas",
          "start": 770
        },
        {
          "name": "min_fee_per_da_gas",
          "start": 856
        },
        {
          "name": "l2_gas_left",
          "start": 934
        },
        {
          "name": "da_gas_left",
          "start": 1005
        },
        {
          "name": "is_static_call",
          "start": 1080
        },
        {
          "name": "note_hash_exists",
          "start": 1193
        },
        {
          "name": "emit_note_hash",
          "start": 1302
        },
        {
          "name": "nullifier_exists",
          "start": 1414
        },
        {
          "name": "emit_nullifier",
          "start": 1518
        },
        {
          "name": "emit_public_log",
          "start": 1614
        },
        {
          "name": "l1_to_l2_msg_exists",
          "start": 1741
        },
        {
          "name": "send_l2_to_l1_msg",
          "start": 1880
        },
        {
          "name": "call",
          "start": 2080
        },
        {
          "name": "call_static",
          "start": 2310
        },
        {
          "name": "calldata_copy",
          "start": 2486
        },
        {
          "name": "success_copy",
          "start": 2669
        },
        {
          "name": "returndata_size",
          "start": 2746
        },
        {
          "name": "returndata_copy",
          "start": 2859
        },
        {
          "name": "avm_return",
          "start": 3044
        },
        {
          "name": "revert",
          "start": 3421
        },
        {
          "name": "storage_read",
          "start": 3545
        },
        {
          "name": "storage_write",
          "start": 3676
        },
        {
          "name": "address_opcode",
          "start": 3807
        },
        {
          "name": "sender_opcode",
          "start": 3888
        },
        {
          "name": "transaction_fee_opcode",
          "start": 3979
        },
        {
          "name": "chain_id_opcode",
          "start": 4056
        },
        {
          "name": "version_opcode",
          "start": 4132
        },
        {
          "name": "block_number_opcode",
          "start": 4215
        },
        {
          "name": "timestamp_opcode",
          "start": 4293
        },
        {
          "name": "min_fee_per_l2_gas_opcode",
          "start": 4386
        },
        {
          "name": "min_fee_per_da_gas_opcode",
          "start": 4479
        },
        {
          "name": "l2_gas_left_opcode",
          "start": 4559
        },
        {
          "name": "da_gas_left_opcode",
          "start": 4639
        },
        {
          "name": "is_static_call_opcode",
          "start": 4726
        },
        {
          "name": "note_hash_exists_opcode",
          "start": 4850
        },
        {
          "name": "emit_note_hash_opcode",
          "start": 4945
        },
        {
          "name": "nullifier_exists_opcode",
          "start": 5060
        },
        {
          "name": "emit_nullifier_opcode",
          "start": 5156
        },
        {
          "name": "emit_public_log_opcode",
          "start": 5253
        },
        {
          "name": "l1_to_l2_msg_exists_opcode",
          "start": 5384
        },
        {
          "name": "send_l2_to_l1_msg_opcode",
          "start": 5504
        },
        {
          "name": "calldata_copy_opcode",
          "start": 5637
        },
        {
          "name": "returndata_size_opcode",
          "start": 5726
        },
        {
          "name": "returndata_copy_opcode",
          "start": 5848
        },
        {
          "name": "return_opcode",
          "start": 5932
        },
        {
          "name": "revert_opcode",
          "start": 6016
        },
        {
          "name": "call_opcode",
          "start": 6463
        },
        {
          "name": "call_static_opcode",
          "start": 6923
        },
        {
          "name": "success_copy_opcode",
          "start": 7007
        },
        {
          "name": "storage_read_opcode",
          "start": 7136
        },
        {
          "name": "storage_write_opcode",
          "start": 7247
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/avm.nr",
      "source": "//! AVM oracles.\n//!\n//! There are only available during public execution. Calling any of them from a private or utility function will\n//! result in runtime errors.\n\nuse crate::protocol::address::{AztecAddress, EthAddress};\n\npub unconstrained fn address() -> AztecAddress {\n    address_opcode()\n}\npub unconstrained fn sender() -> AztecAddress {\n    sender_opcode()\n}\npub unconstrained fn transaction_fee() -> Field {\n    transaction_fee_opcode()\n}\npub unconstrained fn chain_id() -> Field {\n    chain_id_opcode()\n}\npub unconstrained fn version() -> Field {\n    version_opcode()\n}\npub unconstrained fn block_number() -> u32 {\n    block_number_opcode()\n}\npub unconstrained fn timestamp() -> u64 {\n    timestamp_opcode()\n}\npub unconstrained fn min_fee_per_l2_gas() -> u128 {\n    min_fee_per_l2_gas_opcode()\n}\npub unconstrained fn min_fee_per_da_gas() -> u128 {\n    min_fee_per_da_gas_opcode()\n}\npub unconstrained fn l2_gas_left() -> u32 {\n    l2_gas_left_opcode()\n}\npub unconstrained fn da_gas_left() -> u32 {\n    da_gas_left_opcode()\n}\npub unconstrained fn is_static_call() -> bool {\n    is_static_call_opcode()\n}\npub unconstrained fn note_hash_exists(note_hash: Field, leaf_index: u64) -> bool {\n    note_hash_exists_opcode(note_hash, leaf_index)\n}\npub unconstrained fn emit_note_hash(note_hash: Field) {\n    emit_note_hash_opcode(note_hash)\n}\npub unconstrained fn nullifier_exists(siloed_nullifier: Field) -> bool {\n    nullifier_exists_opcode(siloed_nullifier)\n}\npub unconstrained fn emit_nullifier(nullifier: Field) {\n    emit_nullifier_opcode(nullifier)\n}\npub unconstrained fn emit_public_log(message: [Field]) {\n    emit_public_log_opcode(message)\n}\npub unconstrained fn l1_to_l2_msg_exists(msg_hash: Field, msg_leaf_index: u64) -> bool {\n    l1_to_l2_msg_exists_opcode(msg_hash, msg_leaf_index)\n}\npub unconstrained fn send_l2_to_l1_msg(recipient: EthAddress, content: Field) {\n    send_l2_to_l1_msg_opcode(recipient, content)\n}\n\npub unconstrained fn call<let N: u32>(\n    l2_gas_allocation: u32,\n    da_gas_allocation: u32,\n    address: AztecAddress,\n    args: [Field; N],\n) {\n    call_opcode(l2_gas_allocation, da_gas_allocation, address, N, args)\n}\n\npub unconstrained fn call_static<let N: u32>(\n    l2_gas_allocation: u32,\n    da_gas_allocation: u32,\n    address: AztecAddress,\n    args: [Field; N],\n) {\n    call_static_opcode(l2_gas_allocation, da_gas_allocation, address, N, args)\n}\n\npub unconstrained fn calldata_copy<let N: u32>(cdoffset: u32, copy_size: u32) -> [Field; N] {\n    calldata_copy_opcode(cdoffset, copy_size)\n}\n\n/// `success_copy` is placed immediately after the CALL opcode to get the success value\npub unconstrained fn success_copy() -> bool {\n    success_copy_opcode()\n}\n\npub unconstrained fn returndata_size() -> u32 {\n    returndata_size_opcode()\n}\n\npub unconstrained fn returndata_copy(rdoffset: u32, copy_size: u32) -> [Field] {\n    returndata_copy_opcode(rdoffset, copy_size)\n}\n\n/// The additional prefix is to avoid clashing with the `return` Noir keyword.\npub unconstrained fn avm_return(returndata: [Field]) {\n    return_opcode(returndata)\n}\n\n/// This opcode reverts using the exact data given. In general it should only be used to do rethrows, where the revert\n/// data is the same as the original revert data. For normal reverts, use Noir's `assert` which, on top of reverting,\n/// will also add an error selector to the revert data.\npub unconstrained fn revert(revertdata: [Field]) {\n    revert_opcode(revertdata)\n}\n\npub unconstrained fn storage_read(storage_slot: Field, contract_address: Field) -> Field {\n    storage_read_opcode(storage_slot, contract_address)\n}\n\npub unconstrained fn storage_write(storage_slot: Field, value: Field) {\n    storage_write_opcode(storage_slot, value);\n}\n\n#[oracle(aztec_avm_address)]\nunconstrained fn address_opcode() -> AztecAddress {}\n\n#[oracle(aztec_avm_sender)]\nunconstrained fn sender_opcode() -> AztecAddress {}\n\n#[oracle(aztec_avm_transactionFee)]\nunconstrained fn transaction_fee_opcode() -> Field {}\n\n#[oracle(aztec_avm_chainId)]\nunconstrained fn chain_id_opcode() -> Field {}\n\n#[oracle(aztec_avm_version)]\nunconstrained fn version_opcode() -> Field {}\n\n#[oracle(aztec_avm_blockNumber)]\nunconstrained fn block_number_opcode() -> u32 {}\n\n#[oracle(aztec_avm_timestamp)]\nunconstrained fn timestamp_opcode() -> u64 {}\n\n#[oracle(aztec_avm_minFeePerL2Gas)]\nunconstrained fn min_fee_per_l2_gas_opcode() -> u128 {}\n\n#[oracle(aztec_avm_minFeePerDaGas)]\nunconstrained fn min_fee_per_da_gas_opcode() -> u128 {}\n\n#[oracle(aztec_avm_l2GasLeft)]\nunconstrained fn l2_gas_left_opcode() -> u32 {}\n\n#[oracle(aztec_avm_daGasLeft)]\nunconstrained fn da_gas_left_opcode() -> u32 {}\n\n#[oracle(aztec_avm_isStaticCall)]\nunconstrained fn is_static_call_opcode() -> bool {}\n\n#[oracle(aztec_avm_noteHashExists)]\nunconstrained fn note_hash_exists_opcode(note_hash: Field, leaf_index: u64) -> bool {}\n\n#[oracle(aztec_avm_emitNoteHash)]\nunconstrained fn emit_note_hash_opcode(note_hash: Field) {}\n\n#[oracle(aztec_avm_nullifierExists)]\nunconstrained fn nullifier_exists_opcode(siloed_nullifier: Field) -> bool {}\n\n#[oracle(aztec_avm_emitNullifier)]\nunconstrained fn emit_nullifier_opcode(nullifier: Field) {}\n\n#[oracle(aztec_avm_emitPublicLog)]\nunconstrained fn emit_public_log_opcode(message: [Field]) {}\n\n#[oracle(aztec_avm_l1ToL2MsgExists)]\nunconstrained fn l1_to_l2_msg_exists_opcode(msg_hash: Field, msg_leaf_index: u64) -> bool {}\n\n#[oracle(aztec_avm_sendL2ToL1Msg)]\nunconstrained fn send_l2_to_l1_msg_opcode(recipient: EthAddress, content: Field) {}\n\n#[oracle(aztec_avm_calldataCopy)]\nunconstrained fn calldata_copy_opcode<let N: u32>(cdoffset: u32, copy_size: u32) -> [Field; N] {}\n\n#[oracle(aztec_avm_returndataSize)]\nunconstrained fn returndata_size_opcode() -> u32 {}\n\n#[oracle(aztec_avm_returndataCopy)]\nunconstrained fn returndata_copy_opcode(rdoffset: u32, copy_size: u32) -> [Field] {}\n\n#[oracle(aztec_avm_return)]\nunconstrained fn return_opcode(returndata: [Field]) {}\n\n#[oracle(aztec_avm_revert)]\nunconstrained fn revert_opcode(revertdata: [Field]) {}\n\n// While the length parameter might seem unnecessary given that we have N we keep it around because at the AVM bytecode\n// level, we want to support non-comptime-known lengths for such opcodes, even if Noir code will not generally take\n// that route.\n#[oracle(aztec_avm_call)]\nunconstrained fn call_opcode<let N: u32>(\n    l2_gas_allocation: u32,\n    da_gas_allocation: u32,\n    address: AztecAddress,\n    length: u32,\n    args: [Field; N],\n) {}\n\n// While the length parameter might seem unnecessary given that we have N we keep it around because at the AVM bytecode\n// level, we want to support non-comptime-known lengths for such opcodes, even if Noir code will not generally take\n// that route.\n#[oracle(aztec_avm_staticCall)]\nunconstrained fn call_static_opcode<let N: u32>(\n    l2_gas_allocation: u32,\n    da_gas_allocation: u32,\n    address: AztecAddress,\n    length: u32,\n    args: [Field; N],\n) {}\n\n#[oracle(aztec_avm_successCopy)]\nunconstrained fn success_copy_opcode() -> bool {}\n\n#[oracle(aztec_avm_storageRead)]\nunconstrained fn storage_read_opcode(storage_slot: Field, contract_address: Field) -> Field {}\n\n#[oracle(aztec_avm_storageWrite)]\nunconstrained fn storage_write_opcode(storage_slot: Field, value: Field) {}\n"
    },
    "187": {
      "function_locations": [
        {
          "name": "call_private_function_oracle",
          "start": 362
        },
        {
          "name": "call_private_function_internal",
          "start": 598
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/call_private_function.nr",
      "source": "use crate::protocol::{abis::function_selector::FunctionSelector, address::AztecAddress};\n\n#[oracle(aztec_prv_callPrivateFunction)]\nunconstrained fn call_private_function_oracle(\n    _contract_address: AztecAddress,\n    _function_selector: FunctionSelector,\n    _args_hash: Field,\n    _start_side_effect_counter: u32,\n    _is_static_call: bool,\n) -> (u32, Field) {}\n\npub unconstrained fn call_private_function_internal(\n    contract_address: AztecAddress,\n    function_selector: FunctionSelector,\n    args_hash: Field,\n    start_side_effect_counter: u32,\n    is_static_call: bool,\n) -> (u32, Field) {\n    call_private_function_oracle(\n        contract_address,\n        function_selector,\n        args_hash,\n        start_side_effect_counter,\n        is_static_call,\n    )\n}\n"
    },
    "188": {
      "function_locations": [
        {
          "name": "call_utility_function_oracle",
          "start": 320
        },
        {
          "name": "call_utility_function",
          "start": 507
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/call_utility_function.nr",
      "source": "use crate::protocol::{abis::function_selector::FunctionSelector, address::AztecAddress};\n\n#[oracle(aztec_utl_callUtilityFunction)]\nunconstrained fn call_utility_function_oracle<let M: u32, let N: u32>(\n    _contract_address: AztecAddress,\n    _function_selector: FunctionSelector,\n    _args: [Field; M],\n) -> [Field; N] {}\n\npub unconstrained fn call_utility_function<let M: u32, let N: u32>(\n    contract_address: AztecAddress,\n    function_selector: FunctionSelector,\n    args: [Field; M],\n) -> [Field; N] {\n    call_utility_function_oracle(contract_address, function_selector, args)\n}\n"
    },
    "190": {
      "function_locations": [
        {
          "name": "set_contract_sync_cache_invalid_oracle",
          "start": 242
        },
        {
          "name": "set_contract_sync_cache_invalid",
          "start": 700
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/contract_sync.nr",
      "source": "use crate::protocol::address::AztecAddress;\n\n#[oracle(aztec_utl_setContractSyncCacheInvalid)]\nunconstrained fn set_contract_sync_cache_invalid_oracle<let N: u32>(\n    contract_address: AztecAddress,\n    scopes: BoundedVec<AztecAddress, N>,\n) {}\n\n/// Forces the PXE to re-sync the given contract for a set of scopes on the next query.\n///\n/// Call this after writing data (e.g. offchain messages) that the contract's `sync_state` function needs to discover.\n/// Without invalidation, the sync cache would skip re-running `sync_state` until the next block.\npub unconstrained fn set_contract_sync_cache_invalid<let N: u32>(\n    contract_address: AztecAddress,\n    scopes: BoundedVec<AztecAddress, N>,\n) {\n    set_contract_sync_cache_invalid_oracle(contract_address, scopes);\n}\n"
    },
    "192": {
      "function_locations": [
        {
          "name": "get_utility_context_oracle",
          "start": 582
        },
        {
          "name": "get_utility_context",
          "start": 786
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/execution.nr",
      "source": "use crate::context::UtilityContext;\nuse crate::protocol::{abis::block_header::BlockHeader, address::AztecAddress};\n\n/// Wire shape of [`get_utility_context_oracle`]'s response. [`UtilityContext`] is built from it rather than returned\n/// directly so its fields stay private to its module.\n#[derive(Eq)]\npub(crate) struct UtilityContextData {\n    pub(crate) block_header: BlockHeader,\n    pub(crate) contract_address: AztecAddress,\n    pub(crate) msg_sender: AztecAddress,\n}\n\n#[oracle(aztec_utl_getUtilityContext)]\nunconstrained fn get_utility_context_oracle() -> UtilityContextData {}\n\n/// Returns a utility context built from the global variables of anchor block and the contract address of the function\n/// being executed.\npub unconstrained fn get_utility_context() -> UtilityContext {\n    UtilityContext::from(get_utility_context_oracle())\n}\n"
    },
    "193": {
      "function_locations": [
        {
          "name": "store",
          "start": 192
        },
        {
          "name": "set_hash_preimage_oracle_wrapper",
          "start": 583
        },
        {
          "name": "load",
          "start": 739
        },
        {
          "name": "set_hash_preimage_oracle",
          "start": 905
        },
        {
          "name": "get_hash_preimage_oracle",
          "start": 1028
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/execution_cache.nr",
      "source": "/// Stores values represented as slice in execution cache to be later obtained by its hash.\n// TODO(F-498): review naming consistency\npub fn store<let N: u32>(values: [Field; N], hash: Field) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe to\n    // call. When loading the values, however, the caller must check that the values are indeed the preimage.\n    unsafe { set_hash_preimage_oracle_wrapper(values, hash) };\n}\n\nunconstrained fn set_hash_preimage_oracle_wrapper<let N: u32>(values: [Field; N], hash: Field) {\n    set_hash_preimage_oracle(values, hash);\n}\n\n// TODO(F-498): review naming consistency\npub unconstrained fn load<let N: u32>(hash: Field) -> [Field; N] {\n    get_hash_preimage_oracle(hash)\n}\n\n#[oracle(aztec_prv_setHashPreimage)]\nunconstrained fn set_hash_preimage_oracle<let N: u32>(_values: [Field; N], _hash: Field) {}\n\n#[oracle(aztec_prv_getHashPreimage)]\nunconstrained fn get_hash_preimage_oracle<let N: u32>(_hash: Field) -> [Field; N] {}\n"
    },
    "195": {
      "function_locations": [
        {
          "name": "get_contract_instance_oracle",
          "start": 318
        },
        {
          "name": "get_contract_instance_internal",
          "start": 454
        },
        {
          "name": "get_contract_instance",
          "start": 619
        },
        {
          "name": "get_contract_instance_deployer_oracle_avm",
          "start": 1348
        },
        {
          "name": "get_contract_instance_current_class_id_oracle_avm",
          "start": 1531
        },
        {
          "name": "get_contract_instance_initialization_hash_oracle_avm",
          "start": 1728
        },
        {
          "name": "get_contract_instance_immutables_hash_oracle_avm",
          "start": 1917
        },
        {
          "name": "get_contract_instance_deployer_internal_avm",
          "start": 2039
        },
        {
          "name": "get_contract_instance_current_class_id_internal_avm",
          "start": 2231
        },
        {
          "name": "get_contract_instance_initialization_hash_internal_avm",
          "start": 2434
        },
        {
          "name": "get_contract_instance_immutables_hash_internal_avm",
          "start": 2636
        },
        {
          "name": "get_contract_instance_deployer_avm",
          "start": 2792
        },
        {
          "name": "get_contract_instance_current_class_id_avm",
          "start": 3610
        },
        {
          "name": "get_contract_instance_initialization_hash_avm",
          "start": 4023
        },
        {
          "name": "get_contract_instance_immutables_hash_avm",
          "start": 4406
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/get_contract_instance.nr",
      "source": "use crate::protocol::{\n    address::AztecAddress, contract_class_id::ContractClassId, contract_instance::ContractInstance, traits::FromField,\n};\n\n// NOTE: this is for use in private only\n#[oracle(aztec_utl_getContractInstance)]\nunconstrained fn get_contract_instance_oracle(_address: AztecAddress) -> ContractInstance {}\n\n// NOTE: this is for use in private only\nunconstrained fn get_contract_instance_internal(address: AztecAddress) -> ContractInstance {\n    get_contract_instance_oracle(address)\n}\n\n/// Returns `address`'s [`ContractInstance`].\npub fn get_contract_instance(address: AztecAddress) -> ContractInstance {\n    // Safety: The to_address function combines all values in the instance object to produce an address, so by checking\n    // that we get the expected address we validate the entire struct.\n    let instance = unsafe { get_contract_instance_internal(address) };\n    assert_eq(instance.to_address(), address);\n\n    instance\n}\n\n#[derive(Eq)]\npub(crate) struct GetContractInstanceResult {\n    pub(crate) exists: bool,\n    pub(crate) member: Field,\n}\n\n// These oracles each return a ContractInstance member plus a boolean indicating whether the instance was found.\n#[oracle(aztec_avm_getContractInstanceDeployer)]\nunconstrained fn get_contract_instance_deployer_oracle_avm(_address: AztecAddress) -> [GetContractInstanceResult; 1] {}\n#[oracle(aztec_avm_getContractInstanceClassId)]\nunconstrained fn get_contract_instance_current_class_id_oracle_avm(\n    _address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {}\n#[oracle(aztec_avm_getContractInstanceInitializationHash)]\nunconstrained fn get_contract_instance_initialization_hash_oracle_avm(\n    _address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {}\n#[oracle(aztec_avm_getContractInstanceImmutablesHash)]\nunconstrained fn get_contract_instance_immutables_hash_oracle_avm(\n    _address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {}\n\nunconstrained fn get_contract_instance_deployer_internal_avm(address: AztecAddress) -> [GetContractInstanceResult; 1] {\n    get_contract_instance_deployer_oracle_avm(address)\n}\nunconstrained fn get_contract_instance_current_class_id_internal_avm(\n    address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {\n    get_contract_instance_current_class_id_oracle_avm(address)\n}\nunconstrained fn get_contract_instance_initialization_hash_internal_avm(\n    address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {\n    get_contract_instance_initialization_hash_oracle_avm(address)\n}\nunconstrained fn get_contract_instance_immutables_hash_internal_avm(\n    address: AztecAddress,\n) -> [GetContractInstanceResult; 1] {\n    get_contract_instance_immutables_hash_oracle_avm(address)\n}\n\npub fn get_contract_instance_deployer_avm(address: AztecAddress) -> Option<AztecAddress> {\n    // Safety: AVM opcodes are constrained by the AVM itself\n    let GetContractInstanceResult { exists, member } =\n        unsafe { get_contract_instance_deployer_internal_avm(address)[0] };\n    if exists {\n        Option::some(AztecAddress::from_field(member))\n    } else {\n        Option::none()\n    }\n}\n/// Returns `address` current contract class, or `Option::none` if unpublished.\n///\n/// The current contract class is the one that would be used to determine the code of the contract's functions if it\n/// were to be executed in this transaction. This is not necessarily the contract's original class if it has been\n/// upgraded via the `ContractInstanceRegistry`, and it could similarly change in the future.\npub fn get_contract_instance_current_class_id_avm(address: AztecAddress) -> Option<ContractClassId> {\n    // Safety: AVM opcodes are constrained by the AVM itself\n    let GetContractInstanceResult { exists, member } =\n        unsafe { get_contract_instance_current_class_id_internal_avm(address)[0] };\n    if exists {\n        Option::some(ContractClassId::from_field(member))\n    } else {\n        Option::none()\n    }\n}\npub fn get_contract_instance_initialization_hash_avm(address: AztecAddress) -> Option<Field> {\n    // Safety: AVM opcodes are constrained by the AVM itself\n    let GetContractInstanceResult { exists, member } =\n        unsafe { get_contract_instance_initialization_hash_internal_avm(address)[0] };\n    if exists {\n        Option::some(member)\n    } else {\n        Option::none()\n    }\n}\npub fn get_contract_instance_immutables_hash_avm(address: AztecAddress) -> Option<Field> {\n    // Safety: AVM opcodes are constrained by the AVM itself\n    let GetContractInstanceResult { exists, member } =\n        unsafe { get_contract_instance_immutables_hash_internal_avm(address)[0] };\n    if exists {\n        Option::some(member)\n    } else {\n        Option::none()\n    }\n}\n"
    },
    "200": {
      "function_locations": [
        {
          "name": "get_key_validation_request_oracle",
          "start": 229
        },
        {
          "name": "get_key_validation_request",
          "start": 341
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/key_validation_request.nr",
      "source": "use crate::protocol::abis::validation_requests::KeyValidationRequest;\n\n#[oracle(aztec_utl_getKeyValidationRequest)]\nunconstrained fn get_key_validation_request_oracle(_pk_m_hash: Field, _key_index: Field) -> KeyValidationRequest {}\n\npub unconstrained fn get_key_validation_request(pk_m_hash: Field, key_index: Field) -> KeyValidationRequest {\n    get_key_validation_request_oracle(pk_m_hash, key_index)\n}\n"
    },
    "201": {
      "function_locations": [
        {
          "name": "get_public_keys_and_partial_address",
          "start": 244
        },
        {
          "name": "get_public_keys_and_partial_address_oracle",
          "start": 781
        },
        {
          "name": "try_get_public_keys_and_partial_address",
          "start": 958
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/keys.nr",
      "source": "use crate::protocol::{address::{AztecAddress, PartialAddress}, public_keys::PublicKeys};\n\n// TODO(F-498): review naming consistency\npub unconstrained fn get_public_keys_and_partial_address(address: AztecAddress) -> (PublicKeys, PartialAddress) {\n    try_get_public_keys_and_partial_address(address).expect(f\"Public keys not registered for account {address}\")\n}\n\n/// Five of the six master public keys are exposed only as hashes; `ivpk_m` is sent as its affine coordinates because\n/// address derivation and encrypt-to-address require the point in-circuit. This point is assumed to be non-infinite.\n#[oracle(aztec_utl_getPublicKeysAndPartialAddress)]\nunconstrained fn get_public_keys_and_partial_address_oracle(\n    _address: AztecAddress,\n) -> Option<(PublicKeys, PartialAddress)> {}\n\n// TODO(F-498): review naming consistency\npub unconstrained fn try_get_public_keys_and_partial_address(\n    address: AztecAddress,\n) -> Option<(PublicKeys, PartialAddress)> {\n    get_public_keys_and_partial_address_oracle(address)\n}\n"
    },
    "203": {
      "function_locations": [
        {
          "name": "get_pending_tagged_logs",
          "start": 1048
        },
        {
          "name": "get_pending_tagged_logs_oracle",
          "start": 1323
        },
        {
          "name": "validate_and_store_enqueued_notes_and_events",
          "start": 1630
        },
        {
          "name": "validate_and_store_enqueued_notes_and_events_oracle",
          "start": 2049
        },
        {
          "name": "get_logs_by_tag",
          "start": 2489
        },
        {
          "name": "get_logs_by_tag_oracle",
          "start": 2717
        },
        {
          "name": "get_tx_effect",
          "start": 2854
        },
        {
          "name": "get_tx_effect_oracle",
          "start": 3000
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/message_processing.nr",
      "source": "use crate::ephemeral::EphemeralArray;\nuse crate::messages::processing::{\n    event_validation_request::EventValidationRequest, log_retrieval_request::LogRetrievalRequest,\n    log_retrieval_response::LogRetrievalResponse, NoteValidationRequest, pending_tagged_log::PendingTaggedLog,\n    provided_secret::ProvidedSecret,\n};\nuse crate::protocol::address::AztecAddress;\nuse crate::protocol::blob_data::TxEffect;\n\n/// Finds new private logs that may have been sent to all registered accounts in PXE in the current contract and\n/// returns them in an ephemeral array with an oracle-allocated base slot.\n///\n/// # Arguments\n///\n/// * `scope` - The account scope to search under.\n/// * `provided_secrets` - Tagging secrets the app supplies explicitly, searched alongside the secrets PXE manages\n///   internally. Used for secrets PXE cannot derive itself (e.g. handshake-derived ones).\npub(crate) unconstrained fn get_pending_tagged_logs(\n    scope: AztecAddress,\n    provided_secrets: EphemeralArray<ProvidedSecret>,\n) -> EphemeralArray<PendingTaggedLog> {\n    get_pending_tagged_logs_oracle(scope, provided_secrets)\n}\n\n#[oracle(aztec_utl_getPendingTaggedLogsV2)]\nunconstrained fn get_pending_tagged_logs_oracle(\n    scope: AztecAddress,\n    provided_secrets: EphemeralArray<ProvidedSecret>,\n) -> EphemeralArray<PendingTaggedLog> {}\n\n/// Validates note/event requests stored in ephemeral arrays.\npub(crate) unconstrained fn validate_and_store_enqueued_notes_and_events(\n    note_validation_requests: EphemeralArray<NoteValidationRequest>,\n    event_validation_requests: EphemeralArray<EventValidationRequest>,\n    scope: AztecAddress,\n) {\n    validate_and_store_enqueued_notes_and_events_oracle(note_validation_requests, event_validation_requests, scope);\n}\n\n#[oracle(aztec_utl_validateAndStoreEnqueuedNotesAndEvents)]\nunconstrained fn validate_and_store_enqueued_notes_and_events_oracle(\n    note_validation_requests: EphemeralArray<NoteValidationRequest>,\n    event_validation_requests: EphemeralArray<EventValidationRequest>,\n    scope: AztecAddress,\n) {}\n\n/// Fetches all logs matching each request's tag and returns a nested ephemeral array.\n///\n/// Each element in the outer array is an inner `EphemeralArray<LogRetrievalResponse>` containing all matching logs for\n/// the request at the same index (which may be empty if no logs were found).\npub unconstrained fn get_logs_by_tag(\n    requests: EphemeralArray<LogRetrievalRequest>,\n) -> EphemeralArray<EphemeralArray<LogRetrievalResponse>> {\n    get_logs_by_tag_oracle(requests)\n}\n\n#[oracle(aztec_utl_getLogsByTagV2)]\nunconstrained fn get_logs_by_tag_oracle(\n    requests: EphemeralArray<LogRetrievalRequest>,\n) -> EphemeralArray<EphemeralArray<LogRetrievalResponse>> {}\n\n/// Fetches all effects of a settled transaction by its hash.\npub unconstrained fn get_tx_effect(tx_hash: Field) -> Option<TxEffect> {\n    get_tx_effect_oracle(tx_hash)\n}\n\n#[oracle(aztec_utl_getTxEffect)]\nunconstrained fn get_tx_effect_oracle(tx_hash: Field) -> Option<TxEffect> {}\n"
    },
    "205": {
      "function_locations": [
        {
          "name": "notify_created_note",
          "start": 610
        },
        {
          "name": "notify_nullified_note",
          "start": 1320
        },
        {
          "name": "notify_created_note_oracle_wrapper",
          "start": 1774
        },
        {
          "name": "notify_created_note_oracle",
          "start": 2226
        },
        {
          "name": "notify_nullified_note_oracle_wrapper",
          "start": 2334
        },
        {
          "name": "notify_nullified_note_oracle",
          "start": 2544
        },
        {
          "name": "get_notes_oracle",
          "start": 3602
        },
        {
          "name": "get_notes",
          "start": 4157
        },
        {
          "name": "get_app_tagging_secret",
          "start": 6949
        },
        {
          "name": "get_app_tagging_secret_oracle",
          "start": 7161
        },
        {
          "name": "get_next_tagging_index",
          "start": 8149
        },
        {
          "name": "get_next_tagging_index_oracle",
          "start": 8348
        },
        {
          "name": "get_sender_for_tags",
          "start": 8841
        },
        {
          "name": "get_sender_for_tags_oracle",
          "start": 8987
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/notes.nr",
      "source": "use crate::messages::delivery::OnchainDeliveryMode;\nuse crate::note::{HintedNote, note_interface::NoteType};\n\nuse crate::protocol::{address::AztecAddress, traits::Packable};\n\n/// Notifies the simulator that a note has been created, so that it can be returned in future read requests in the same\n/// transaction. This note should only be added to the non-volatile database if found in an actual block.\npub fn notify_created_note<let N: u32>(\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n    note_type_id: Field,\n    packed_note: [Field; N],\n    note_hash: Field,\n    counter: u32,\n) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe to\n    // call.\n    unsafe {\n        notify_created_note_oracle_wrapper(\n            owner,\n            storage_slot,\n            randomness,\n            note_type_id,\n            packed_note,\n            note_hash,\n            counter,\n        )\n    };\n}\n\n/// Notifies the simulator that a note has been nullified, so that it is no longer returned in future read requests in\n/// the same transaction. This note should only be removed to the non-volatile database if its nullifier is found in an\n/// actual block.\npub fn notify_nullified_note(nullifier: Field, note_hash: Field, counter: u32) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe to\n    // call.\n    unsafe { notify_nullified_note_oracle_wrapper(nullifier, note_hash, counter) };\n}\n\nunconstrained fn notify_created_note_oracle_wrapper<let N: u32>(\n    owner: AztecAddress,\n    storage_slot: Field,\n    randomness: Field,\n    note_type_id: Field,\n    packed_note: [Field; N],\n    note_hash: Field,\n    counter: u32,\n) {\n    notify_created_note_oracle(\n        owner,\n        storage_slot,\n        randomness,\n        note_type_id,\n        packed_note,\n        note_hash,\n        counter,\n    );\n}\n\n#[oracle(aztec_prv_notifyCreatedNote)]\nunconstrained fn notify_created_note_oracle<let N: u32>(\n    _owner: AztecAddress,\n    _storage_slot: Field,\n    _randomness: Field,\n    _note_type_id: Field,\n    _packed_note: [Field; N],\n    _note_hash: Field,\n    _counter: u32,\n) {}\n\nunconstrained fn notify_nullified_note_oracle_wrapper(nullifier: Field, note_hash: Field, counter: u32) {\n    notify_nullified_note_oracle(nullifier, note_hash, counter);\n}\n\n#[oracle(aztec_prv_notifyNullifiedNote)]\nunconstrained fn notify_nullified_note_oracle(_nullifier: Field, _note_hash: Field, _counter: u32) {}\n\n#[oracle(aztec_utl_getNotes)]\nunconstrained fn get_notes_oracle<Note, let M: u32, let MaxNotes: u32>(\n    _owner: Option<AztecAddress>,\n    _storage_slot: Field,\n    _num_selects: u8,\n    _select_by_indexes: [u8; M],\n    _select_by_offsets: [u8; M],\n    _select_by_lengths: [u8; M],\n    _select_values: [Field; M],\n    _select_comparators: [u8; M],\n    _sort_by_indexes: [u8; M],\n    _sort_by_offsets: [u8; M],\n    _sort_by_lengths: [u8; M],\n    _sort_order: [u8; M],\n    _limit: u32,\n    _offset: u32,\n    _status: u8,\n    // This is always set to MAX_NOTES. We need to pass it to TS in order to correctly construct the BoundedVec\n    _max_notes: u32,\n    // This is always set to <HintedNote<Note> as Packable>::N. We need to pass it to TS in order to be able to\n    // correctly construct the BoundedVec there.\n    _packed_hinted_note_length: u32,\n) -> BoundedVec<[Field; <HintedNote<Note> as Packable>::N], MaxNotes>\nwhere\n    // TODO(https://github.com/noir-lang/noir/issues/9399): `Note: Packable` should work here.\n    HintedNote<Note>: Packable,\n{}\n\npub unconstrained fn get_notes<Note, let M: u32, let MaxNotes: u32>(\n    owner: Option<AztecAddress>,\n    storage_slot: Field,\n    num_selects: u8,\n    select_by_indexes: [u8; M],\n    select_by_offsets: [u8; M],\n    select_by_lengths: [u8; M],\n    select_values: [Field; M],\n    select_comparators: [u8; M],\n    sort_by_indexes: [u8; M],\n    sort_by_offsets: [u8; M],\n    sort_by_lengths: [u8; M],\n    sort_order: [u8; M],\n    limit: u32,\n    offset: u32,\n    status: u8,\n) -> [Option<HintedNote<Note>>; MaxNotes]\nwhere\n    Note: NoteType + Packable,\n{\n    let packed_hinted_notes: BoundedVec<[Field; <HintedNote<Note> as Packable>::N], MaxNotes> = get_notes_oracle::<Note, M, MaxNotes>(\n        owner,\n        storage_slot,\n        num_selects,\n        select_by_indexes,\n        select_by_offsets,\n        select_by_lengths,\n        select_values,\n        select_comparators,\n        sort_by_indexes,\n        sort_by_offsets,\n        sort_by_lengths,\n        sort_order,\n        limit,\n        offset,\n        status,\n        MaxNotes,\n        <HintedNote<Note> as Packable>::N,\n    );\n\n    let mut notes = BoundedVec::<_, MaxNotes>::new();\n    for i in 0..packed_hinted_notes.len() {\n        let hinted_note = HintedNote::unpack(packed_hinted_notes.get(i));\n        notes.push(hinted_note);\n    }\n\n    // At last we convert the bounded vector to an array of options. We do this because that is what the filter\n    // function needs to have on the output and we've decided to have the same type on the input and output of the\n    // filter and preprocessor functions.\n    //\n    // We have decided to have the same type on the input and output of the filter and preprocessor functions because\n    // it allows us to chain multiple filters and preprocessors together.\n    //\n    // So why do we want the array of options on the output of the filter function?\n    //\n    // Filter returns an array of options rather than a BoundedVec for performance reasons. Using an array of options\n    // allows setting values at known indices in the output array which is much more efficient than pushing to a\n    // BoundedVec where the write position depends on previous iterations. The array can then be efficiently converted\n    // to a BoundedVec using utils/array/collapse.nr::collapse function from Aztec.nr. This avoids expensive dynamic\n    // memory access patterns that would be required when building up a BoundedVec incrementally. For preprocessor\n    // functions we could use BoundedVec return value as there the optimization does not matter since it is applied in\n    // an unconstrained context. We, however, use the same return value type to be able to use the same function as\n    // both a preprocessor and a filter.\n    let mut notes_array = [Option::none(); MaxNotes];\n    for i in 0..notes.len() {\n        notes_array[i] = Option::some(notes.get_unchecked(i));\n    }\n\n    notes_array\n}\n\n// TODO: Oracles below are generic private log oracles and are not specific to notes. Move them somewhere else.\n\n/// Returns the sender-side app tagging secret for a `(sender, recipient)` pair.\n///\n/// The secret is resolved by the simulator rather than computed by the contract.\n///\n/// Returns `None` for an invalid recipient address.\npub unconstrained fn get_app_tagging_secret(sender: AztecAddress, recipient: AztecAddress) -> Option<Field> {\n    get_app_tagging_secret_oracle(sender, recipient)\n}\n\n#[oracle(aztec_prv_getAppTaggingSecret)]\nunconstrained fn get_app_tagging_secret_oracle(_sender: AztecAddress, _recipient: AztecAddress) -> Option<Field> {}\n\n/// Returns the next sender-side tagging index for a given secret and delivery mode.\n///\n/// The caller already holds the tagging `secret`, whether obtained from [`get_app_tagging_secret`] or computed by the\n/// contract, and only needs the simulator to hand out a fresh per-secret, per-mode index; the caller computes the tag\n/// itself. `mode` is converted into the [`OnchainDeliveryMode`] selecting the per-mode index counter, so callers can\n/// pass either a concrete on-chain delivery builder or an explicit mode. Offchain messages are not tagged, so only the\n/// onchain delivery variants can be used by this oracle.\n///\n/// The simulator persists the index increment only if the tagged log is found in an actual block; a reverting\n/// transaction can otherwise cause the sender to skip indices and later produce notes that are not found by the\n/// recipient.\npub unconstrained fn get_next_tagging_index<M>(secret: Field, mode: M) -> u32\nwhere\n    M: Into<OnchainDeliveryMode>,\n{\n    get_next_tagging_index_oracle(secret, mode.into())\n}\n\n#[oracle(aztec_prv_getNextTaggingIndex)]\nunconstrained fn get_next_tagging_index_oracle(_secret: Field, _mode: OnchainDeliveryMode) -> u32 {}\n\n/// Gets the sender for tags.\n///\n/// This unconstrained value is used as the sender when computing an unconstrained shared secret for a tag in order to\n/// emit a log. Constrained tagging should not use this as there is no guarantee that the recipient knows about the\n/// sender, and hence about the shared secret.\n///\n/// Returns the wallet-supplied default sender for tags, or `None` if no default was provided.\npub(crate) unconstrained fn get_sender_for_tags() -> Option<AztecAddress> {\n    get_sender_for_tags_oracle()\n}\n\n#[oracle(aztec_prv_getSenderForTags)]\nunconstrained fn get_sender_for_tags_oracle() -> Option<AztecAddress> {}\n"
    },
    "206": {
      "function_locations": [
        {
          "name": "notify_created_nullifier",
          "start": 442
        },
        {
          "name": "notify_created_nullifier_oracle",
          "start": 761
        },
        {
          "name": "is_nullifier_pending",
          "start": 1482
        },
        {
          "name": "is_nullifier_pending_oracle",
          "start": 1705
        },
        {
          "name": "check_nullifier_exists",
          "start": 2245
        },
        {
          "name": "does_nullifier_exist_oracle",
          "start": 2417
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/nullifiers.nr",
      "source": "//! Nullifier creation, existence checks, etc.\n\nuse crate::protocol::address::aztec_address::AztecAddress;\n\n/// Notifies the simulator that a nullifier has been created, so that its correct status (pending or settled) can be\n/// determined when reading nullifiers in subsequent private function calls. The first non-revertible nullifier emitted\n/// is also used to compute note nonces.\npub fn notify_created_nullifier(inner_nullifier: Field) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe to\n    // call.\n    unsafe { notify_created_nullifier_oracle(inner_nullifier) };\n}\n\n#[oracle(aztec_prv_notifyCreatedNullifier)]\nunconstrained fn notify_created_nullifier_oracle(_inner_nullifier: Field) {}\n\n/// Returns `true` if the nullifier has been emitted in the same transaction, i.e. if [`notify_created_nullifier`] has\n/// been\n/// called for this inner nullifier from the contract with the specified address.\n///\n/// Note that despite sharing pending transaction information with the app, this is not a privacy leak: anyone in the\n/// network can always determine in which transaction a inner nullifier was emitted by a given contract by simply\n/// inspecting transaction effects. What _would_ constitute a leak would be to share the list of inner pending\n/// nullifiers, as that would reveal their preimages.\npub unconstrained fn is_nullifier_pending(inner_nullifier: Field, contract_address: AztecAddress) -> bool {\n    is_nullifier_pending_oracle(inner_nullifier, contract_address)\n}\n\n#[oracle(aztec_prv_isNullifierPending)]\nunconstrained fn is_nullifier_pending_oracle(_inner_nullifier: Field, _contract_address: AztecAddress) -> bool {}\n\n/// Returns `true` if the nullifier exists. Note that a `true` value can be constrained by proving existence of the\n/// nullifier, but a `false` value should not be relied upon since other transactions may emit this nullifier before\n/// the current transaction is included in a block. While this might seem of little use at first, certain design\n/// patterns benefit from this abstraction (see e.g. `PrivateMutable`).\n// TODO(F-498): review naming consistency\npub unconstrained fn check_nullifier_exists(inner_nullifier: Field) -> bool {\n    does_nullifier_exist_oracle(inner_nullifier)\n}\n\n#[oracle(aztec_utl_doesNullifierExist)]\nunconstrained fn does_nullifier_exist_oracle(_inner_nullifier: Field) -> bool {}\n"
    },
    "208": {
      "function_locations": [
        {
          "name": "assert_valid_public_call_data",
          "start": 317
        },
        {
          "name": "assert_valid_public_call_data_oracle_wrapper",
          "start": 650
        },
        {
          "name": "assert_valid_public_call_data_oracle",
          "start": 835
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/public_call.nr",
      "source": "/// Validates public calldata by checking that the preimage exists and the cumulative size is within limits.\n///\n/// The check is unconstrained and the only purpose of it is to fail early in case of calldata overflow or a bug in\n/// calldata hashing.\npub(crate) fn assert_valid_public_call_data(calldata_hash: Field) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects (validating the calldata).\n    // It is therefore always safe to call.\n    unsafe {\n        assert_valid_public_call_data_oracle_wrapper(calldata_hash)\n    }\n}\n\nunconstrained fn assert_valid_public_call_data_oracle_wrapper(calldata_hash: Field) {\n    assert_valid_public_call_data_oracle(calldata_hash)\n}\n\n#[oracle(aztec_prv_assertValidPublicCalldata)]\nunconstrained fn assert_valid_public_call_data_oracle(_calldata_hash: Field) {}\n"
    },
    "209": {
      "function_locations": [
        {
          "name": "random",
          "start": 468
        },
        {
          "name": "rand_oracle",
          "start": 568
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/random.nr",
      "source": "/// Returns an unconstrained random value. Note that it is not possible to constrain this value to prove that it is\n/// truly random: we assume that the oracle is cooperating and returning random values. In some applications this\n/// behavior might not be acceptable and other techniques might be more suitable, such as producing pseudo-random\n/// values by hashing values outside of user control (like block hashes) or secrets.\npub unconstrained fn random() -> Field {\n    rand_oracle()\n}\n\n#[oracle(aztec_misc_getRandomField)]\nunconstrained fn rand_oracle() -> Field {}\n"
    },
    "211": {
      "function_locations": [
        {
          "name": "resolve_tagging_strategy",
          "start": 1037
        },
        {
          "name": "resolve_tagging_strategy_oracle",
          "start": 1806
        },
        {
          "name": "test::asks_the_wallet_for_a_valid_recipient",
          "start": 2266
        },
        {
          "name": "test::uses_a_random_secret_for_an_invalid_recipient_when_unconstrained",
          "start": 2787
        },
        {
          "name": "test::fails_for_an_invalid_recipient_when_constrained",
          "start": 3696
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/resolve_tagging_strategy.nr",
      "source": "use crate::messages::delivery::{OnchainDeliveryMode, ResolvedTaggingStrategy};\nuse crate::oracle::random::random;\nuse crate::protocol::address::AztecAddress;\n\n/// Resolves the tagging strategy for a message to `recipient`.\n///\n/// Consulted only when no onchain handshake has been registered for the `(sender, recipient)` pair yet; the secret\n/// from a registered handshake is reused without asking the wallet. PXE applies the wallet's tagging secret\n/// strategy (performing app-siloing as needed) and returns the ready-to-use [`ResolvedTaggingStrategy`].\n///\n/// An invalid recipient has no shared secret to derive. Unconstrained delivery returns a random secret (an\n/// undiscoverable tag) rather than letting a malformed recipient abort the send; constrained delivery instead fails,\n/// since it cannot be served and must not silently emit an undiscoverable tag.\npub(crate) unconstrained fn resolve_tagging_strategy(\n    sender: AztecAddress,\n    recipient: AztecAddress,\n    mode: OnchainDeliveryMode,\n) -> ResolvedTaggingStrategy {\n    if recipient.is_valid() {\n        resolve_tagging_strategy_oracle(sender, recipient, mode)\n    } else if mode == OnchainDeliveryMode::onchain_constrained() {\n        // Constrained delivery to an invalid recipient cannot be served, so fail.\n        panic(\n            \"Cannot resolve a constrained tagging secret for an invalid recipient\",\n        )\n    } else {\n        // Unconstrained is best-effort: a random secret yields an undiscoverable tag instead of failing the send.\n        ResolvedTaggingStrategy::unconstrained_secret(random())\n    }\n}\n\n#[oracle(aztec_prv_resolveTaggingStrategy)]\nunconstrained fn resolve_tagging_strategy_oracle(\n    _sender: AztecAddress,\n    _recipient: AztecAddress,\n    _mode: OnchainDeliveryMode,\n) -> ResolvedTaggingStrategy {}\n\nmod test {\n    use crate::messages::delivery::{OnchainDeliveryMode, ResolvedTaggingStrategy};\n    use crate::protocol::{address::AztecAddress, traits::FromField};\n    use super::resolve_tagging_strategy;\n    use std::test::OracleMock;\n\n    global VALID_RECIPIENT: AztecAddress = AztecAddress::from_field(8);\n    global INVALID_RECIPIENT: AztecAddress = AztecAddress::from_field(3);\n\n    #[test]\n    unconstrained fn asks_the_wallet_for_a_valid_recipient() {\n        let resolved_secret = ResolvedTaggingStrategy::unconstrained_secret(123);\n        let _ = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(resolved_secret);\n\n        let resolved = resolve_tagging_strategy(\n            AztecAddress::from_field(1),\n            VALID_RECIPIENT,\n            OnchainDeliveryMode::onchain_unconstrained(),\n        );\n        assert_eq(resolved, resolved_secret);\n    }\n\n    #[test]\n    unconstrained fn uses_a_random_secret_for_an_invalid_recipient_when_unconstrained() {\n        let random_secret = 999;\n        let _ = OracleMock::mock(\"aztec_misc_getRandomField\").returns(random_secret);\n        let resolve_oracle = OracleMock::mock(\"aztec_prv_resolveTaggingStrategy\").returns(\n            ResolvedTaggingStrategy::non_interactive_handshake(),\n        );\n\n        let resolved = resolve_tagging_strategy(\n            AztecAddress::from_field(1),\n            INVALID_RECIPIENT,\n            OnchainDeliveryMode::onchain_unconstrained(),\n        );\n        assert_eq(resolved, ResolvedTaggingStrategy::unconstrained_secret(random_secret));\n\n        // An invalid recipient must short-circuit to the random secret without consulting the wallet.\n        assert_eq(resolve_oracle.times_called(), 0);\n    }\n\n    #[test(should_fail_with = \"Cannot resolve a constrained tagging secret for an invalid recipient\")]\n    unconstrained fn fails_for_an_invalid_recipient_when_constrained() {\n        let _ = resolve_tagging_strategy(\n            AztecAddress::from_field(1),\n            INVALID_RECIPIENT,\n            OnchainDeliveryMode::onchain_constrained(),\n        );\n    }\n}\n"
    },
    "212": {
      "function_locations": [
        {
          "name": "get_shared_secrets_oracle",
          "start": 474
        },
        {
          "name": "get_shared_secret",
          "start": 828
        },
        {
          "name": "get_shared_secrets",
          "start": 2604
        },
        {
          "name": "test::preserves_ephemeral_key_ordering",
          "start": 3282
        },
        {
          "name": "test::returns_secrets_in_order",
          "start": 4170
        },
        {
          "name": "test::returns_empty_when_pxe_does_not_hold_keys",
          "start": 4959
        },
        {
          "name": "test::single_secret_returns_the_secret",
          "start": 5618
        },
        {
          "name": "test::single_secret_returns_none_when_pxe_does_not_hold_keys",
          "start": 6063
        },
        {
          "name": "test::cannot_return_mismatched_length",
          "start": 6586
        },
        {
          "name": "test::mock_get_shared_secrets",
          "start": 7189
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/shared_secret.nr",
      "source": "use crate::ephemeral::EphemeralArray;\nuse crate::protocol::{address::AztecAddress, hash::sha256_to_field, point::EmbeddedCurvePoint};\n\nglobal GET_SHARED_SECRET_SINGLE_SLOT: Field = sha256_to_field(\"AZTEC_NR::GET_SHARED_SECRET_SINGLE_SLOT\".as_bytes());\n\n#[oracle(aztec_utl_getSharedSecrets)]\nunconstrained fn get_shared_secrets_oracle(\n    address: AztecAddress,\n    eph_pks: EphemeralArray<EmbeddedCurvePoint>,\n    contract_address: AztecAddress,\n) -> EphemeralArray<Field> {}\n\n/// Convenience wrapper around [`get_shared_secrets`] for a single ephemeral public key.\n///\n/// Returns `none` when the PXE does not hold `address`'s keys and therefore cannot derive the secret.\npub unconstrained fn get_shared_secret(\n    address: AztecAddress,\n    eph_pk: EmbeddedCurvePoint,\n    contract_address: AztecAddress,\n) -> Option<Field> {\n    let eph_pks: EphemeralArray<EmbeddedCurvePoint> = EphemeralArray::empty_at(GET_SHARED_SECRET_SINGLE_SLOT);\n    eph_pks.push(eph_pk);\n    let secrets = get_shared_secrets(address, eph_pks, contract_address);\n    if secrets.len() == 1 {\n        Option::some(secrets.get(0))\n    } else {\n        Option::none()\n    }\n}\n\n/// Returns app-siloed shared secrets between `address` and someone who knows the secret keys behind the given\n/// ephemeral public keys.\n///\n/// Each returned Field `s_app` is computed as:\n///\n/// ```text\n/// S     = address_secret * ephPk          (raw ECDH point)\n/// s_app = h(DOM_SEP, S.x, S.y, contract)  (app-siloed scalar)\n/// ```\n///\n/// where `contract` is the address of the calling contract. The oracle host validates this matches its execution\n/// context.\n///\n/// Without app-siloing, a malicious contract could call this oracle with public information (address, ephPk) and\n/// obtain the same raw secret as the legitimate contract, enabling cross-contract decryption. By including the\n/// contract address in the hash, each contract receives a different `s_app`, preventing this attack.\n///\n/// Callers derive indexed subkeys from `s_app` via\n/// [`derive_shared_secret_subkey`](crate::keys::ecdh_shared_secret::derive_shared_secret_subkey).\n///\n/// Returns an empty array when the PXE does not hold `address`'s keys and therefore cannot derive any secrets. This\n/// happens when syncing the scope of an address the PXE does not control, and is an expected outcome rather than an\n/// error. Any other response length mismatch is a malformed oracle response.\npub unconstrained fn get_shared_secrets(\n    address: AztecAddress,\n    eph_pks: EphemeralArray<EmbeddedCurvePoint>,\n    contract_address: AztecAddress,\n) -> EphemeralArray<Field> {\n    let response = get_shared_secrets_oracle(address, eph_pks, contract_address);\n    assert(\n        (response.len() == eph_pks.len()) | (response.len() == 0),\n        \"get_shared_secrets: response length does not match request length\",\n    );\n    response\n}\n\nmod test {\n    use crate::ephemeral::EphemeralArray;\n    use crate::oracle::shared_secret::{get_shared_secret, get_shared_secrets};\n    use crate::protocol::{address::AztecAddress, traits::FromField};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use crate::utils::point::point_from_x_coord;\n    use std::test::OracleMock;\n\n    #[test]\n    unconstrained fn preserves_ephemeral_key_ordering() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let _ = mock_get_shared_secrets([100, 200, 300]);\n\n            let pk_a = point_from_x_coord(1).unwrap();\n            let pk_b = point_from_x_coord(2).unwrap();\n            let pk_c = point_from_x_coord(8).unwrap();\n\n            let eph_pks: EphemeralArray<_> = EphemeralArray::empty_at(200);\n            eph_pks.push(pk_a);\n            eph_pks.push(pk_b);\n            eph_pks.push(pk_c);\n\n            let _: EphemeralArray<Field> = get_shared_secrets(\n                AztecAddress::from_field(1),\n                eph_pks,\n                AztecAddress::from_field(2),\n            );\n\n            assert_eq(eph_pks.get(0), pk_a);\n            assert_eq(eph_pks.get(1), pk_b);\n            assert_eq(eph_pks.get(2), pk_c);\n        });\n    }\n\n    #[test]\n    unconstrained fn returns_secrets_in_order() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let _ = mock_get_shared_secrets([111, 222, 333]);\n\n            let pk = point_from_x_coord(1).unwrap();\n            let eph_pks: EphemeralArray<_> = EphemeralArray::empty_at(200);\n            eph_pks.push(pk);\n            eph_pks.push(pk);\n            eph_pks.push(pk);\n\n            let results: EphemeralArray<Field> = get_shared_secrets(\n                AztecAddress::from_field(1),\n                eph_pks,\n                AztecAddress::from_field(2),\n            );\n\n            assert_eq(results.get(0), 111);\n            assert_eq(results.get(1), 222);\n            assert_eq(results.get(2), 333);\n        });\n    }\n\n    #[test]\n    unconstrained fn returns_empty_when_pxe_does_not_hold_keys() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let empty: [Field; 0] = [];\n            let _ = mock_get_shared_secrets(empty);\n\n            let pk = point_from_x_coord(1).unwrap();\n            let eph_pks: EphemeralArray<_> = EphemeralArray::empty_at(200);\n            eph_pks.push(pk);\n\n            let results: EphemeralArray<Field> = get_shared_secrets(\n                AztecAddress::from_field(1),\n                eph_pks,\n                AztecAddress::from_field(2),\n            );\n\n            assert_eq(results.len(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn single_secret_returns_the_secret() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let _ = mock_get_shared_secrets([111]);\n\n            let pk = point_from_x_coord(1).unwrap();\n            let secret = get_shared_secret(AztecAddress::from_field(1), pk, AztecAddress::from_field(2));\n\n            assert_eq(secret.unwrap(), 111);\n        });\n    }\n\n    #[test]\n    unconstrained fn single_secret_returns_none_when_pxe_does_not_hold_keys() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let empty: [Field; 0] = [];\n            let _ = mock_get_shared_secrets(empty);\n\n            let pk = point_from_x_coord(1).unwrap();\n            let secret = get_shared_secret(AztecAddress::from_field(1), pk, AztecAddress::from_field(2));\n\n            assert(secret.is_none());\n        });\n    }\n\n    #[test(should_fail_with = \"response length does not match request length\")]\n    unconstrained fn cannot_return_mismatched_length() {\n        let env = TestEnvironment::new();\n        env.utility_context(|_| {\n            let _ = mock_get_shared_secrets([111, 222]);\n\n            let pk = point_from_x_coord(1).unwrap();\n            let eph_pks: EphemeralArray<_> = EphemeralArray::empty_at(200);\n            eph_pks.push(pk);\n\n            let _: EphemeralArray<Field> = get_shared_secrets(\n                AztecAddress::from_field(1),\n                eph_pks,\n                AztecAddress::from_field(2),\n            );\n        });\n    }\n\n    unconstrained fn mock_get_shared_secrets<let N: u32>(response_values: [Field; N]) -> Field {\n        let response_slot: Field = 99;\n        let response_array: EphemeralArray<Field> = EphemeralArray::at(response_slot);\n        for value in response_values {\n            response_array.push(value);\n        }\n        let _ = OracleMock::mock(\"aztec_utl_getSharedSecrets\").returns(response_slot);\n        response_slot\n    }\n}\n"
    },
    "215": {
      "function_locations": [
        {
          "name": "notify_revertible_phase_start",
          "start": 298
        },
        {
          "name": "is_execution_in_revertible_phase",
          "start": 687
        },
        {
          "name": "notify_revertible_phase_start_oracle_wrapper",
          "start": 829
        },
        {
          "name": "notify_revertible_phase_start_oracle",
          "start": 1002
        },
        {
          "name": "is_execution_in_revertible_phase_oracle",
          "start": 1143
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/tx_phase.nr",
      "source": "/// Notifies PXE of the side effect counter at which the revertible phase begins.\n///\n/// PXE uses it to classify notes and nullifiers as revertible or non-revertible in its note cache. This information is\n/// then fed to kernels as hints.\npub(crate) fn notify_revertible_phase_start(counter: u32) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe to\n    // call.\n    unsafe { notify_revertible_phase_start_oracle_wrapper(counter) };\n}\n\n/// Returns whether a side effect counter falls in the revertible phase of the transaction.\npub(crate) unconstrained fn is_execution_in_revertible_phase(current_counter: u32) -> bool {\n    is_execution_in_revertible_phase_oracle(current_counter)\n}\n\nunconstrained fn notify_revertible_phase_start_oracle_wrapper(counter: u32) {\n    notify_revertible_phase_start_oracle(counter);\n}\n\n#[oracle(aztec_prv_notifyRevertiblePhaseStart)]\nunconstrained fn notify_revertible_phase_start_oracle(_counter: u32) {}\n\n#[oracle(aztec_prv_isExecutionInRevertiblePhase)]\nunconstrained fn is_execution_in_revertible_phase_oracle(current_counter: u32) -> bool {}\n"
    },
    "216": {
      "function_locations": [
        {
          "name": "get_resolved_txs",
          "start": 608
        },
        {
          "name": "get_resolved_txs_oracle",
          "start": 799
        },
        {
          "name": "test::resolved_tx_serialization_matches_typescript",
          "start": 991
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/tx_resolution.nr",
      "source": "use crate::ephemeral::EphemeralArray;\nuse crate::protocol::{constants::MAX_NOTE_HASHES_PER_TX, traits::{Deserialize, Serialize}};\n\n/// The resolved on-chain context of a transaction.\n#[derive(Serialize, Deserialize, Eq)]\npub struct ResolvedTx {\n    pub tx_hash: Field,\n    pub unique_note_hashes_in_tx: BoundedVec<Field, MAX_NOTE_HASHES_PER_TX>,\n    pub first_nullifier_in_tx: Field,\n    pub block_number: u32,\n    pub block_hash: Field,\n}\n\n/// Resolves the on-chain context of each tx hash.\npub(crate) unconstrained fn get_resolved_txs(requests: EphemeralArray<Field>) -> EphemeralArray<Option<ResolvedTx>> {\n    get_resolved_txs_oracle(requests)\n}\n\n#[oracle(aztec_utl_getResolvedTxs)]\nunconstrained fn get_resolved_txs_oracle(requests: EphemeralArray<Field>) -> EphemeralArray<Option<ResolvedTx>> {}\n\nmod test {\n    use crate::oracle::tx_resolution::ResolvedTx;\n    use crate::protocol::traits::Deserialize;\n\n    #[test]\n    unconstrained fn resolved_tx_serialization_matches_typescript() {\n        // Setup test data\n        let tx_hash = 123;\n        let unique_note_hashes = BoundedVec::from_array([4, 5]);\n        let first_nullifier = 6;\n        let block_number: u32 = 7;\n        let block_hash = 8;\n\n        // Create a ResolvedTx instance\n        let resolved_tx = ResolvedTx {\n            tx_hash,\n            unique_note_hashes_in_tx: unique_note_hashes,\n            first_nullifier_in_tx: first_nullifier,\n            block_number,\n            block_hash,\n        };\n\n        // Expected output generated from TypeScript's `ResolvedTx.toFields()`\n        let serialized_resolved_tx_from_typescript = [\n            0x000000000000000000000000000000000000000000000000000000000000007b,\n            0x0000000000000000000000000000000000000000000000000000000000000004,\n            0x0000000000000000000000000000000000000000000000000000000000000005,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000000,\n            0x0000000000000000000000000000000000000000000000000000000000000002,\n            0x0000000000000000000000000000000000000000000000000000000000000006,\n            0x0000000000000000000000000000000000000000000000000000000000000007,\n            0x0000000000000000000000000000000000000000000000000000000000000008,\n        ];\n\n        let deserialized = ResolvedTx::deserialize(serialized_resolved_tx_from_typescript);\n\n        assert_eq(deserialized, resolved_tx);\n    }\n}\n"
    },
    "217": {
      "function_locations": [
        {
          "name": "assert_compatible_oracle_version",
          "start": 1192
        },
        {
          "name": "assert_compatible_oracle_version_wrapper",
          "start": 1501
        },
        {
          "name": "assert_compatible_oracle_version_oracle",
          "start": 1732
        },
        {
          "name": "test::compatible_oracle_version",
          "start": 1911
        },
        {
          "name": "test::incompatible_oracle_version_major",
          "start": 2136
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/oracle/version.nr",
      "source": "/// The oracle version constants are used to check that the oracle interface is in sync between PXE and Aztec.nr.\n/// We version the oracle interface as `major.minor` where:\n///   - `major` = backward-breaking changes (must match exactly between PXE and Aztec.nr)\n///   - `minor` = oracle additions (non-breaking; PXE minor >= contract minor)\n///\n/// The TypeScript counterparts are in `oracle_version.ts`.\n///\n/// @dev Whenever a contract function or Noir test is run, the `aztec_misc_assertCompatibleOracleVersion` oracle is\n/// called. If the major version is incompatible, an error is thrown immediately. The minor version is recorded by\n/// the PXE and used to provide helpful error messages if a contract calls an oracle that doesn't exist. We don't throw\n/// immediately if AZTEC_NR_MINOR > PXE_MINOR because if a contract is updated to use a newer Aztec.nr dependency\n/// without actually using any of the new oracles then there is no reason to throw.\npub global ORACLE_VERSION_MAJOR: Field = 30;\npub global ORACLE_VERSION_MINOR: Field = 7;\n\n/// Asserts that the version of the oracle is compatible with the version expected by the contract.\npub fn assert_compatible_oracle_version() {\n    // Safety: This oracle call returns nothing: we only call it to check Aztec.nr and Oracle interface versions are\n    // compatible. It is therefore always safe to call.\n    unsafe {\n        assert_compatible_oracle_version_wrapper();\n    }\n}\n\nunconstrained fn assert_compatible_oracle_version_wrapper() {\n    assert_compatible_oracle_version_oracle(ORACLE_VERSION_MAJOR, ORACLE_VERSION_MINOR);\n}\n\n#[oracle(aztec_misc_assertCompatibleOracleVersion)]\nunconstrained fn assert_compatible_oracle_version_oracle(major: Field, minor: Field) {}\n\nmod test {\n    use super::{assert_compatible_oracle_version_oracle, ORACLE_VERSION_MAJOR, ORACLE_VERSION_MINOR};\n\n    #[test]\n    unconstrained fn compatible_oracle_version() {\n        assert_compatible_oracle_version_oracle(ORACLE_VERSION_MAJOR, ORACLE_VERSION_MINOR);\n    }\n\n    #[test(should_fail_with = \"Incompatible aztec cli version:\")]\n    unconstrained fn incompatible_oracle_version_major() {\n        let arbitrary_incorrect_major = 318183437;\n        assert_compatible_oracle_version_oracle(arbitrary_incorrect_major, ORACLE_VERSION_MINOR);\n    }\n}\n"
    },
    "218": {
      "function_locations": [
        {
          "name": "PartialNoteFsm::init",
          "start": 6262
        },
        {
          "name": "PartialNoteFsm::load_all",
          "start": 6767
        },
        {
          "name": "PartialNoteFsm::id_for",
          "start": 7076
        },
        {
          "name": "PartialNoteFsm::read_pending_partial_note",
          "start": 7297
        },
        {
          "name": "PartialNoteFsm::is_completed",
          "start": 7784
        },
        {
          "name": "PartialNoteFsm::is_pending",
          "start": 8031
        },
        {
          "name": "PartialNoteFsm::completion_log_origin",
          "start": 8222
        },
        {
          "name": "PartialNoteFsm::mark_completed",
          "start": 8640
        },
        {
          "name": "PartialNoteFsm::terminate",
          "start": 9119
        },
        {
          "name": "PartialNoteFsm::step",
          "start": 9899
        },
        {
          "name": "PartialNoteFsm::step_pending",
          "start": 10573
        },
        {
          "name": "PartialNoteFsm::step_completed",
          "start": 11252
        },
        {
          "name": "PartialNoteFsm::complete_with_log",
          "start": 12056
        },
        {
          "name": "to_payload",
          "start": 14380
        },
        {
          "name": "test::setup",
          "start": 15068
        },
        {
          "name": "test::make_pending",
          "start": 15338
        },
        {
          "name": "test::finalized_block",
          "start": 15704
        },
        {
          "name": "test::init_creates_a_partial_note_fsm_in_pending_state",
          "start": 15852
        },
        {
          "name": "test::read_pending_round_trips_the_delivered_content",
          "start": 16433
        },
        {
          "name": "test::mark_completed_moves_to_completed",
          "start": 17050
        },
        {
          "name": "test::terminate_deletes_the_collection",
          "start": 17707
        },
        {
          "name": "test::re_init_is_idempotent",
          "start": 18149
        },
        {
          "name": "test::step_leaves_a_pending_reception_untouched_when_it_has_no_completion_log",
          "start": 18658
        },
        {
          "name": "test::step_terminates_a_completed_reception_once_its_block_is_finalized",
          "start": 19922
        },
        {
          "name": "test::step_keeps_a_completed_reception_while_its_block_is_unfinalized",
          "start": 20795
        },
        {
          "name": "test::dummy_compute_note_hash",
          "start": 22144
        },
        {
          "name": "test::dummy_compute_note_nullifier",
          "start": 22505
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/partial_notes/fsm.nr",
      "source": "//! The finite state machine to process a single partial note.\n//!\n//! A partial note arrives in two parts: a private part (delivered first, carrying the owner, randomness, completion-log\n//! tag, note type, and packed private content) and a public *completion log* (storage slot + packed public content).\n//! The note can only be discovered and stored once both are combined. The state chart below summarizes how a single\n//! partial note's process unfolds, including how reorgs cause it to rewind.\n//!\n//! ```text\n//!                   init() (partial note delivery message, including tx and block data)\n//!                         |\n//!                         v\n//!                     +-----------+    completion log found         +-----------+\n//!                ---- |           | ------------------------------> |           |\n//!  log not found |    |           |                                 |           |     discover note(s),\n//!                |--> |  PENDING  |                                 | COMPLETED | ~~> enqueue for storage, etc\n//!                     |           | <------------------------------ |           |\n//!                     |           |  completion log block re-orged  |           |\n//!                     +-----------+                                 +-----------+\n//!                         |                                               |\n//!                         |  delivery message block re-orged              |  completion log block finalized\n//!                         v                                               v\n//!                   +---------------------------------------------------------+\n//!                   |               TERMINATED (process ends)                 |\n//!                   +---------------------------------------------------------+\n//! ```\n//!\n//! ## States\n//!\n//! - **Pending**: the private part has been received but the completion log has not been found yet. While in this\n//!   state, message discovery keeps searching for that log on each sync.\n//! - **Completed**: the completion log was found, so the note was completed and enqueued for storage. Because the\n//!   block containing the completion log can be dropped by a reorg, this state is not terminal until the block\n//!   finalizes: a reorg dropping it rewinds the FSM back to `Pending` state.\n//! - **Terminated**: nothing else can be done with the partial note, either because its delivery block was re-orged\n//!   away (so the delivery itself was reverted) or because its completion block has finalized (so the discovered note\n//!   is permanent and reorg-proof). This is the terminal state of this FSM.\n//!\n//! ## Transitions (each evaluated by [`step`](PartialNoteFsm::step))\n//!\n//! - **Pending -> Completed** ([`complete_with_log`](PartialNoteFsm::complete_with_log)): the completion log is\n//!   found. Its public content is combined with the delivered private content, the resulting note(s) are discovered\n//!   and enqueued for storage.\n//! - **Completed -> Pending**: the completion log block is re-orged out. The completion log is searched for again.\n//! - **Pending -> Terminated**: the delivery block is re-orged out, retracting the `delivered` birth fact. The\n//!   delivery was reverted, so there is nothing left to do.\n//! - **Completed -> Terminated**: the completion log block finalizes, making the discovered note reorg-proof, so the\n//!   reception is complete and its collection is deleted.\n//!\n//! ## Implementation\n//!\n//! Each pending partial note is tracked as a [fact collection](crate::facts::FactCollection) of type\n//! `PARTIAL_NOTE_RECEPTION_TYPE_ID`, identified by a hash of its [`DeliveredPendingPartialNote`] content (so\n//! re-delivery of the same partial note is idempotent). The collection holds:\n//!\n//! - a retractable `PARTIAL_NOTE_DELIVERED` birth fact tied to a delivery block (so a reorg of that block auto-prunes\n//!   the pending note), whose payload is the serialized [`DeliveredPendingPartialNote`];\n//! - once the completion log is found, a retractable `PARTIAL_NOTE_COMPLETED` fact tied to the completion log block.\n//!\n//! Status folds from the canonical fact set:\n//!     - `delivered` only ⇒ Pending\n//!     - `delivered` + `completed` ⇒ Completed\n//!\n//! A reorg retracting either fact folds the reception back accordingly.\nuse crate::ephemeral::EphemeralArray;\nuse crate::facts::{\n    delete_fact_collection, Fact, FactCollection, get_fact_collections_by_type, OriginBlock, record_retractable_fact,\n    RetractableFactOrigin,\n};\nuse crate::logging::aztecnr_debug_log_format;\nuse crate::messages::{\n    discovery::{ComputeNoteHash, ComputeNoteNullifier, nonce_discovery::attempt_note_nonce_discovery},\n    processing::{enqueue_note_for_validation, log_retrieval_response::{LogRetrievalResponse, MAX_LOG_CONTENT_LEN}},\n};\nuse crate::protocol::{address::AztecAddress, hash::{poseidon2_hash, sha256_to_field}, traits::{Deserialize, Serialize}};\nuse crate::utils::array;\nuse super::DeliveredPendingPartialNote;\n\n/// Fact-collection type id shared by every partial-note reception in the [fact store](crate::facts).\nglobal PARTIAL_NOTE_RECEPTION_TYPE_ID: Field = sha256_to_field(\"AZTEC_NR::PARTIAL_NOTE_RECEPTION_TYPE_ID\".as_bytes());\n\n/// Fact type id of the birth fact carrying the delivered private partial note.\nglobal PARTIAL_NOTE_DELIVERED: Field = sha256_to_field(\"AZTEC_NR::PARTIAL_NOTE_DELIVERED\".as_bytes());\n\n/// Fact type id marking a partial note as completed (its note has been discovered and enqueued).\nglobal PARTIAL_NOTE_COMPLETED: Field = sha256_to_field(\"AZTEC_NR::PARTIAL_NOTE_COMPLETED\".as_bytes());\n\n/// A single partial note's finite state machine, backed by a [`FactCollection`](crate::facts::FactCollection).\n#[derive(Deserialize, Serialize)]\npub(crate) struct PartialNoteFsm {\n    collection: FactCollection,\n}\n\nimpl PartialNoteFsm {\n    /// Initializes an FSM for a freshly discovered partial note.\n    ///\n    /// The FSM existence is tied to `origin_block`: if `origin_block` is dropped by a reorg, the FSM is transparently\n    /// deleted.\n    pub(crate) unconstrained fn init(\n        contract_address: AztecAddress,\n        scope: AztecAddress,\n        pending: DeliveredPendingPartialNote,\n        origin_block: OriginBlock,\n    ) {\n        record_retractable_fact(\n            contract_address,\n            scope,\n            PARTIAL_NOTE_RECEPTION_TYPE_ID,\n            Self::id_for(pending),\n            PARTIAL_NOTE_DELIVERED,\n            to_payload(pending),\n            origin_block,\n        );\n    }\n\n    /// Loads every active partial-note FSM for the given contract and scope.\n    pub(crate) unconstrained fn load_all(\n        contract_address: AztecAddress,\n        scope: AztecAddress,\n    ) -> EphemeralArray<PartialNoteFsm> {\n        get_fact_collections_by_type(contract_address, scope, PARTIAL_NOTE_RECEPTION_TYPE_ID)\n            .map(|collection: FactCollection| PartialNoteFsm { collection })\n    }\n\n    /// The fact-collection id identifying a specific partial note.\n    fn id_for(pending: DeliveredPendingPartialNote) -> Field {\n        poseidon2_hash(pending.serialize())\n    }\n\n    /// Reads and decodes the delivered partial note this FSM processes.\n    pub(crate) unconstrained fn read_pending_partial_note(self) -> DeliveredPendingPartialNote {\n        let delivered = self.collection.facts.find(|f: Fact| f.fact_type_id == PARTIAL_NOTE_DELIVERED).unwrap();\n        let mut fields = [0; <DeliveredPendingPartialNote as Deserialize>::N];\n        for i in 0..fields.len() {\n            fields[i] = delivered.payload.get(i);\n        }\n        Deserialize::deserialize(fields)\n    }\n\n    /// Whether the partial note FSM is in `completed` state, i.e. its note was completed and stored.\n    unconstrained fn is_completed(self) -> bool {\n        self.collection.facts.any(|f: Fact| f.fact_type_id == PARTIAL_NOTE_COMPLETED)\n    }\n\n    /// Whether the partial note FSM is in `pending` state, i.e. it hasn't been completed yet.\n    pub(crate) unconstrained fn is_pending(self) -> bool {\n        !self.is_completed()\n    }\n\n    /// Origin block of the partial note completion log, if available.\n    unconstrained fn completion_log_origin(self) -> Option<RetractableFactOrigin> {\n        let maybe_completed = self.collection.facts.find(|f: Fact| f.fact_type_id == PARTIAL_NOTE_COMPLETED);\n        if maybe_completed.is_some() {\n            maybe_completed.unwrap().origin_block\n        } else {\n            Option::none()\n        }\n    }\n\n    /// Transition the partial note FSM as `completed`, conditional to `origin_block`.\n    unconstrained fn mark_completed(self, origin_block: OriginBlock) {\n        let empty_payload: EphemeralArray<Field> = EphemeralArray::empty();\n        record_retractable_fact(\n            self.collection.contract_address,\n            self.collection.scope,\n            self.collection.fact_collection_type_id,\n            self.collection.fact_collection_id,\n            PARTIAL_NOTE_COMPLETED,\n            empty_payload,\n            origin_block,\n        );\n    }\n\n    /// Terminates this partial note FSM.\n    unconstrained fn terminate(self) {\n        delete_fact_collection(\n            self.collection.contract_address,\n            self.collection.scope,\n            self.collection.fact_collection_type_id,\n            self.collection.fact_collection_id,\n        );\n    }\n\n    /// Advances this partial-note FSM by one step.\n    ///\n    /// Partial notes can only be completed if completion logs have been found for them. Log discovery and\n    /// provisioning is responsibility of the caller.\n    ///\n    /// `compute_note_hash` and `compute_note_nullifier` are injected dependencies.\n    pub(crate) unconstrained fn step(\n        self,\n        maybe_completion_logs: Option<EphemeralArray<LogRetrievalResponse>>,\n        compute_note_hash: ComputeNoteHash,\n        compute_note_nullifier: ComputeNoteNullifier,\n    ) {\n        if self.is_pending() {\n            self.step_pending(maybe_completion_logs, compute_note_hash, compute_note_nullifier);\n        } else {\n            self.step_completed();\n        }\n    }\n\n    /// Processes a partial note in pending state\n    ///\n    /// Completes the partial note if its completion log is given. If not, the partial note remains in pending state\n    /// and its completion log is searched for again on future syncs.\n    unconstrained fn step_pending(\n        self,\n        maybe_completion_logs: Option<EphemeralArray<LogRetrievalResponse>>,\n        compute_note_hash: ComputeNoteHash,\n        compute_note_nullifier: ComputeNoteNullifier,\n    ) {\n        if maybe_completion_logs.is_some() {\n            let completion_logs = maybe_completion_logs.unwrap();\n            let num_logs = completion_logs.len();\n            if num_logs != 0 {\n                assert(num_logs == 1, f\"Expected at most 1 completion log per partial note, got {num_logs}\");\n                self.complete_with_log(completion_logs.get(0), compute_note_hash, compute_note_nullifier);\n            }\n        }\n    }\n\n    /// Advances partial note in `completed` state: terminates it once the completion log block finalizes, since the\n    /// discovered note is then permanent and there is nothing left to track.\n    unconstrained fn step_completed(self) {\n        if self.completion_log_origin().unwrap().block_state.is_finalized() {\n            self.terminate();\n        }\n    }\n\n    /// Completes a partial note.\n    ///\n    /// Combines the delivered private content with the log's public content, discovers the resulting note(s), enqueues\n    /// them for validation, and transitions the FSM to `completed` state conditional to the completion log's block.\n    ///\n    /// Because the completion fact is retractable, a reorg of the completion log's block rewinds the FSM back to\n    /// `pending` state (which signals that completion log search should restart).\n    unconstrained fn complete_with_log(\n        self,\n        log: LogRetrievalResponse,\n        compute_note_hash: ComputeNoteHash,\n        compute_note_nullifier: ComputeNoteNullifier,\n    ) {\n        let pending = self.read_pending_partial_note();\n\n        // The first field in the completion log payload is the storage slot, followed by the public note content.\n        let storage_slot = log.log_payload.get(0);\n        let public_note_content: BoundedVec<Field, MAX_LOG_CONTENT_LEN - 1> = array::subbvec(log.log_payload, 1);\n\n        // Public fields are placed at the end of the packed representation, so we combine the private and public\n        // packed content to get the complete packed note.\n        let complete_packed_note = array::append(pending.packed_private_note_content, public_note_content);\n\n        let discovered_notes = attempt_note_nonce_discovery(\n            log.unique_note_hashes_in_tx,\n            log.first_nullifier_in_tx,\n            compute_note_hash,\n            compute_note_nullifier,\n            self.collection.contract_address,\n            pending.owner,\n            storage_slot,\n            pending.randomness,\n            pending.note_type_id,\n            complete_packed_note,\n        );\n\n        // TODO(#11627): is there anything reasonable we can do if we get a log but it doesn't result in a note being\n        // found?\n        if discovered_notes.len() == 0 {\n            panic(\n                f\"A partial note's completion log did not result in any notes being found - this should never happen\",\n            );\n        }\n\n        aztecnr_debug_log_format!(\"Discovered {0} notes for partial note with tag {1}\")([\n            discovered_notes.len() as Field,\n            pending.note_completion_log_tag,\n        ]);\n\n        discovered_notes.for_each(|discovered_note| {\n            enqueue_note_for_validation(\n                self.collection.contract_address,\n                pending.owner,\n                storage_slot,\n                pending.randomness,\n                discovered_note.note_nonce,\n                complete_packed_note,\n                discovered_note.note_hash,\n                discovered_note.inner_nullifier,\n                log.tx_hash,\n            );\n        });\n\n        self.mark_completed(OriginBlock { block_number: log.block_number, block_hash: log.block_hash });\n    }\n}\n\n/// Serializes a [`DeliveredPendingPartialNote`] into a fact payload.\nunconstrained fn to_payload(pending: DeliveredPendingPartialNote) -> EphemeralArray<Field> {\n    let fields = pending.serialize();\n    let payload: EphemeralArray<Field> = EphemeralArray::empty();\n    for i in 0..fields.len() {\n        payload.push(fields[i]);\n    }\n    payload\n}\n\nmod test {\n    use crate::ephemeral::EphemeralArray;\n    use crate::facts::OriginBlock;\n    use crate::messages::logs::note::MAX_NOTE_PACKED_LEN;\n    use crate::messages::processing::log_retrieval_response::LogRetrievalResponse;\n    use crate::partial_notes::DeliveredPendingPartialNote;\n    use crate::protocol::address::AztecAddress;\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use super::PartialNoteFsm;\n\n    unconstrained fn setup() -> (TestEnvironment, AztecAddress) {\n        let mut env = TestEnvironment::new();\n        let scope = env.create_light_account();\n        (env, scope)\n    }\n\n    /// A delivered partial note with simple dummy content.\n    unconstrained fn make_pending(owner: AztecAddress) -> DeliveredPendingPartialNote {\n        DeliveredPendingPartialNote {\n            owner,\n            randomness: 0x11,\n            note_completion_log_tag: 0x22,\n            note_type_id: 0x33,\n            packed_private_note_content: BoundedVec::new(),\n        }\n    }\n\n    /// A low block, which TXE (proven == finalized == latest) reports as finalized.\n    fn finalized_block() -> OriginBlock {\n        OriginBlock { block_number: 1, block_hash: 0 }\n    }\n\n    #[test]\n    unconstrained fn init_creates_a_partial_note_fsm_in_pending_state() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            let all = PartialNoteFsm::load_all(address, scope);\n            assert_eq(all.len(), 1);\n            assert(all.get(0).is_pending(), \"freshly delivered reception should be pending\");\n            assert(all.get(0).completion_log_origin().is_none());\n        });\n    }\n\n    #[test]\n    unconstrained fn read_pending_round_trips_the_delivered_content() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            let pending = PartialNoteFsm::load_all(address, scope).get(0).read_pending_partial_note();\n            assert_eq(pending.owner, scope);\n            assert_eq(pending.randomness, 0x11);\n            assert_eq(pending.note_completion_log_tag, 0x22);\n            assert_eq(pending.note_type_id, 0x33);\n        });\n    }\n\n    #[test]\n    unconstrained fn mark_completed_moves_to_completed() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            PartialNoteFsm::load_all(address, scope).get(0).mark_completed(finalized_block());\n\n            let reloaded = PartialNoteFsm::load_all(address, scope).get(0);\n            assert(reloaded.is_completed(), \"should be completed after mark_completed\");\n            assert(reloaded.completion_log_origin().unwrap().block_state.is_finalized());\n        });\n    }\n\n    #[test]\n    unconstrained fn terminate_deletes_the_collection() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            PartialNoteFsm::load_all(address, scope).get(0).terminate();\n            assert_eq(PartialNoteFsm::load_all(address, scope).len(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn re_init_is_idempotent() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            assert_eq(PartialNoteFsm::load_all(address, scope).len(), 1);\n        });\n    }\n\n    #[test]\n    unconstrained fn step_leaves_a_pending_reception_untouched_when_it_has_no_completion_log() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n\n            // Neither an empty fetched-logs set (`Some(empty)`, the pass-1 \"searched, found nothing\" case) nor no\n            // fetch at all (`None`, the pass-2 case) can complete a pending reception, so it stays pending.\n            let no_logs: EphemeralArray<LogRetrievalResponse> = EphemeralArray::empty();\n            PartialNoteFsm::load_all(address, scope).get(0).step(\n                Option::some(no_logs),\n                dummy_compute_note_hash,\n                dummy_compute_note_nullifier,\n            );\n            PartialNoteFsm::load_all(address, scope).get(0).step(\n                Option::none(),\n                dummy_compute_note_hash,\n                dummy_compute_note_nullifier,\n            );\n\n            let all = PartialNoteFsm::load_all(address, scope);\n            assert_eq(all.len(), 1);\n            assert(all.get(0).is_pending(), \"reception without a completion log should stay pending\");\n        });\n    }\n\n    #[test]\n    unconstrained fn step_terminates_a_completed_reception_once_its_block_is_finalized() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n            PartialNoteFsm::load_all(address, scope).get(0).mark_completed(finalized_block());\n\n            // Completed with a finalized completion block: the discovered note is reorg-proof, so step terminates the\n            // FSM by deleting its collection.\n            PartialNoteFsm::load_all(address, scope).get(0).step(\n                Option::none(),\n                dummy_compute_note_hash,\n                dummy_compute_note_nullifier,\n            );\n\n            assert_eq(PartialNoteFsm::load_all(address, scope).len(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn step_keeps_a_completed_reception_while_its_block_is_unfinalized() {\n        let (env, scope) = setup();\n        // A future block never finalizes here, so the completed reception must survive the step.\n        let unfinalized_block = OriginBlock { block_number: env.last_block_number() + 100, block_hash: 0 };\n        env.private_context(|context| {\n            let address = context.this_address();\n            PartialNoteFsm::init(address, scope, make_pending(scope), finalized_block());\n            PartialNoteFsm::load_all(address, scope).get(0).mark_completed(unfinalized_block);\n\n            // Completed but not yet finalized: step must not terminate it, since a reorg could still fold it back.\n            PartialNoteFsm::load_all(address, scope).get(0).step(\n                Option::none(),\n                dummy_compute_note_hash,\n                dummy_compute_note_nullifier,\n            );\n\n            let all = PartialNoteFsm::load_all(address, scope);\n            assert_eq(all.len(), 1);\n            assert(all.get(0).is_completed(), \"unfinalized completed reception should survive step\");\n        });\n    }\n\n    unconstrained fn dummy_compute_note_hash(\n        _packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        _owner: AztecAddress,\n        _storage_slot: Field,\n        _note_type_id: Field,\n        _contract_address: AztecAddress,\n        _randomness: Field,\n    ) -> Option<Field> {\n        Option::none()\n    }\n\n    unconstrained fn dummy_compute_note_nullifier(\n        _unique_note_hash: Field,\n        _packed_note: BoundedVec<Field, MAX_NOTE_PACKED_LEN>,\n        _owner: AztecAddress,\n        _storage_slot: Field,\n        _note_type_id: Field,\n        _contract_address: AztecAddress,\n        _randomness: Field,\n    ) -> Option<Field> {\n        Option::none()\n    }\n}\n"
    },
    "219": {
      "function_locations": [
        {
          "name": "process_partial_note_private_msg",
          "start": 1316
        },
        {
          "name": "sync",
          "start": 2404
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/partial_notes/mod.nr",
      "source": "mod fsm;\n\nuse crate::{\n    facts::OriginBlock,\n    messages::{\n        discovery::{ComputeNoteHash, ComputeNoteNullifier},\n        encoding::MAX_MESSAGE_CONTENT_LEN,\n        logs::partial_note::{decode_partial_note_private_message, MAX_PARTIAL_NOTE_PRIVATE_PACKED_LEN},\n        processing::{get_pending_partial_notes_completion_logs, ResolvedTx},\n    },\n};\n\nuse crate::logging::{aztecnr_debug_log_format, aztecnr_warn_log_format};\nuse crate::protocol::{address::AztecAddress, traits::{Deserialize, Serialize}};\nuse fsm::PartialNoteFsm;\n\n/// A partial note that was delivered but is still pending completion. Contains the information necessary to find the\n/// log that will complete it and lead to a note being discovered and delivered.\n#[derive(Serialize, Deserialize)]\npub(crate) struct DeliveredPendingPartialNote {\n    pub(crate) owner: AztecAddress,\n    pub(crate) randomness: Field,\n    pub(crate) note_completion_log_tag: Field,\n    pub(crate) note_type_id: Field,\n    pub(crate) packed_private_note_content: BoundedVec<Field, MAX_PARTIAL_NOTE_PRIVATE_PACKED_LEN>,\n}\n\npub(crate) unconstrained fn process_partial_note_private_msg(\n    contract_address: AztecAddress,\n    msg_metadata: u64,\n    msg_content: BoundedVec<Field, MAX_MESSAGE_CONTENT_LEN>,\n    resolved_tx: ResolvedTx,\n    recipient: AztecAddress,\n) {\n    let decoded = decode_partial_note_private_message(msg_metadata, msg_content);\n\n    if decoded.is_some() {\n        let (owner, randomness, note_completion_log_tag, note_type_id, packed_private_note_content) = decoded.unwrap();\n\n        PartialNoteFsm::init(\n            contract_address,\n            recipient,\n            DeliveredPendingPartialNote {\n                owner,\n                randomness,\n                note_completion_log_tag,\n                note_type_id,\n                packed_private_note_content,\n            },\n            OriginBlock { block_number: resolved_tx.block_number, block_hash: resolved_tx.block_hash },\n        );\n    } else {\n        aztecnr_warn_log_format!(\n            \"Could not decode partial note private message from tx {0}, ignoring\",\n        )(\n            [resolved_tx.tx_hash],\n        );\n    }\n}\n\n/// Drives every active partial-note FSM forward.\npub(crate) unconstrained fn sync(\n    contract_address: AztecAddress,\n    compute_note_hash: ComputeNoteHash,\n    compute_note_nullifier: ComputeNoteNullifier,\n    scope: AztecAddress,\n) {\n    // `load_all` is a relatively expensive oracle round-trip, so we call it once and reuse the result.\n    let active_partial_note_fsms = PartialNoteFsm::load_all(contract_address, scope);\n\n    // Fetching completion logs is the dominant cost of partial note contract sync (a node round-trip each) and only\n    // pending notes need them, so we batch that fetch for the pending subset and then drive the FSMs in two passes:\n    //  1. Step each pending FSM with its freshly-fetched completion logs, giving found logs a chance to complete notes.\n    //  2. Step every active FSM with no logs, which is where completed-and-finalized FSMs terminate.\n    // Keeping both the completion and termination logic inside `PartialNoteFsm::step` is what lets the orchestrator\n    // stay this small, the price is the somewhat less elegant two-pass shape that the batched fetch forces on us.\n    let pending_partial_note_fsms = active_partial_note_fsms.filter(|fsm: PartialNoteFsm| fsm.is_pending());\n    let pending_partial_notes = pending_partial_note_fsms.map(|fsm: PartialNoteFsm| fsm.read_pending_partial_note());\n\n    aztecnr_debug_log_format!(\"{} pending partial notes\")([pending_partial_notes.len() as Field]);\n\n    let completion_logs = get_pending_partial_notes_completion_logs(contract_address, pending_partial_notes);\n    assert_eq(completion_logs.len(), pending_partial_notes.len());\n\n    pending_partial_note_fsms.for_each(|i, fsm: PartialNoteFsm| {\n        fsm.step(Option::some(completion_logs.get(i)), compute_note_hash, compute_note_nullifier);\n    });\n\n    active_partial_note_fsms.for_each(|_i, fsm: PartialNoteFsm| {\n        fsm.step(Option::none(), compute_note_hash, compute_note_nullifier);\n    });\n}\n"
    },
    "225": {
      "function_locations": [
        {
          "name": "<impl StateVariable<1, Context> for Map<K, V, Context>>::new",
          "start": 4080
        },
        {
          "name": "<impl StateVariable<1, Context> for Map<K, V, Context>>::get_storage_slot",
          "start": 4265
        },
        {
          "name": "Map<K, V, Context>::at",
          "start": 4999
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/state_vars/map.nr",
      "source": "use crate::protocol::{storage::map::derive_storage_slot_in_map, traits::ToField};\nuse crate::state_vars::StateVariable;\n\n/// A key-value container for state variables.\n///\n/// A `Map` wraps another state variable type (the 'value') and creates independent instances of it for each key,\n/// resulting in effectively as many state variables as there are key values. This behavior is similar to a Solidity\n/// `mapping (K => V)`.\n///\n/// ## Use Cases\n///\n/// Any scenario in which a fixed number of variables is insufficient to represent contract state requires `Map` e.g.\n/// per-election configuration in a voting contract, per-user state, etc. `Map` also composes naturally into more\n/// complex containers: an array could be implemented as a `Map` with indices as keys.\n///\n/// Note that some private state variables, such as [`PrivateMutable`](crate::state_vars::PrivateMutable) and\n/// [`PrivateSet`](crate::state_vars::PrivateSet) cannot be wrapped in a `Map`. These types implement the\n/// [`OwnedStateVariable`](crate::state_vars::OwnedStateVariable) trait, and as such should instead be wrapped using the\n/// [`Owned`](crate::state_vars::Owned) container, which can be thought of as a specialization of `Map` for private\n/// state 'owned' by a single account.\n///\n/// ## Examples\n///\n/// Since `Map` is also a [`StateVariable`], it is declared in the contract's\n/// [`#[storage]`](crate::macros::storage::storage) struct along with all others:\n///\n/// ```noir\n/// #[storage]\n/// struct Storage<C> {\n///     is_admin: Map<AztecAddress, PublicMutable<bool, C>, C>,\n///     vote_tallies: Map<ElectionId, PublicMutable<u128, C>, C>,\n/// }\n/// ```\n///\n/// ### Multiple `Map`s\n///\n/// There is no limit to how many `Map` containers a contract can have, and `Map`s can themselves wrap other `Map`s,\n/// resulting in nested layouts.\n///\n/// ```noir\n/// #[storage]\n/// struct Storage<C> {\n///     // A nested map where the first key is an address and the second a `Year` type, such that\n///     // self.storage.user_yearly_config.at(user).at(year) results in distinct `UserConfig` variables for each\n///     // `(user, year)` tuple.\n///     user_yearly_config: Map<AztecAddress, Map<Year, UserConfig<C>, C>, C>,\n/// }\n/// ```\n///\n/// ## Requirements\n///\n/// The value type `V` must implement the [`StateVariable`] trait. The key type `K` must implement the [`ToField`] trait\n/// in such a way that the `Field` representation is unique for each key.\n///\n/// For key types that cannot be converted into a `Field`, consider wrapping them in a type that implements `ToField` as\n/// the hash of the key.\n///\n/// ```noir\n/// struct MyKey {\n///     a: Field,\n///     b: Field,\n/// }\n///\n/// struct MyKeyWrapper {\n///     inner: MyKey,\n/// }\n///\n/// impl ToField for MyKeyWrapper {\n///     fn to_field(self) -> Field {\n///         poseidon2_hash([self.inner.a, self.inner.b])\n///     }\n/// }\n///\n/// #[storage]\n/// struct Storage<C> {\n///     a: Map<MyKeyWrapper, PublicMutable<bool, C>, C>,\n/// }\n/// ```\n///\n/// ## Implementation Details\n///\n/// Like all other state variables, `Map` gets assigned a unique storage slot. It uses this value to derive unique\n/// storage slots for each key, resulting in independent state variables. Nothing gets stored at `Map`'s storage slot.\n/// This is equivalent to Solidity's implementation of `mapping`.\n///\n/// Because the storage slot derivation is done using a hash function, it is not possible to compute the key (preimage)\n/// used to obtain a given derived state variable slot.\npub struct Map<K, V, Context> {\n    pub context: Context,\n    storage_slot: Field,\n}\n\n// Map reserves a single storage slot regardless of what it stores because nothing is stored at said slot: it is only\n// used to derive the storage slots of nested state variables, which is expected to never result in collisions or slots\n// being close to one another due to these being hashes. This mirrors the strategy adopted by Solidity mappings.\nimpl<K, V, Context> StateVariable<1, Context> for Map<K, V, Context> {\n    fn new(context: Context, storage_slot: Field) -> Self {\n        assert(storage_slot != 0, \"Storage slot 0 not allowed. Storage slots must start from 1.\");\n        Map { context, storage_slot }\n    }\n\n    fn get_storage_slot(self) -> Field {\n        self.storage_slot\n    }\n}\n\nimpl<K, V, Context> Map<K, V, Context> {\n    /// Returns the state variable for a key.\n    ///\n    /// This derives a unique storage slot for `key` and returns a state variable of type `V` at that slot. It is\n    /// equivalent to accessing a `mapping` via the `[]` operator in Solidity (e.g. `balances[user]` would be\n    /// `balances.at(user)`).\n    ///\n    /// ## Example\n    ///\n    /// ```noir\n    /// #[external(\"utility\")]\n    /// fn get_election_vote_tallies(election: ElectionId) -> u128 {\n    ///     self.storage.vote_tallies.at(election).read()\n    /// }\n    /// ```\n    pub fn at<let N: u32>(self, key: K) -> V\n    where\n        K: ToField,\n        V: StateVariable<N, Context>,\n    {\n        V::new(\n            self.context,\n            derive_storage_slot_in_map(self.storage_slot, key),\n        )\n    }\n}\n"
    },
    "234": {
      "function_locations": [
        {
          "name": "<impl OwnedStateVariable<Context> for PrivateSet<Note, Context>>::new",
          "start": 5403
        },
        {
          "name": "PrivateSet<Note, &mut PrivateContext>::insert",
          "start": 8687
        },
        {
          "name": "PrivateSet<Note, &mut PrivateContext>::pop_notes",
          "start": 12677
        },
        {
          "name": "PrivateSet<Note, &mut PrivateContext>::remove",
          "start": 15403
        },
        {
          "name": "PrivateSet<Note, &mut PrivateContext>::get_notes",
          "start": 18639
        },
        {
          "name": "PrivateSet<Note, UtilityContext>::view_notes",
          "start": 19628
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/state_vars/private_set.nr",
      "source": "use crate::{\n    context::{PrivateContext, UtilityContext},\n    note::{\n        ConfirmedNote,\n        constants::MAX_NOTES_PER_PAGE,\n        lifecycle::{create_note, destroy_note},\n        note_getter::{get_notes, view_notes},\n        note_getter_options::NoteGetterOptions,\n        note_interface::{NoteHash, NoteType},\n        note_viewer_options::NoteViewerOptions,\n        NoteMessage,\n    },\n    state_vars::OwnedStateVariable,\n};\nuse crate::protocol::{address::AztecAddress, constants::MAX_NOTE_HASH_READ_REQUESTS_PER_CALL, traits::Packable};\n\nmod test;\n\n/// Per-account aggregated private state.\n///\n/// PrivateSet is an owned state variable type, which enables you to read, mutate, and write private state. Because it\n/// is \"owned,\" you must wrap a PrivateSet inside an Owned state variable when storing it:\n///\n/// E.g.:\n/// ```noir\n/// #[storage]\n/// struct Storage<Context> {\n///     your_variable: Owned<PrivateSet<YourNote, Context>, Context>,\n/// }\n/// ```\n///\n/// For more details on what \"owned\" means, see the documentation for the [`OwnedStateVariable`] trait.\n///\n/// The PrivateSet facilitates: the insertion of new notes, the reading of existing notes, and the nullification of\n/// existing notes.\n///\n/// The \"current value\" of a PrivateSet is the collection of all _not-yet-nullified_ account's notes in the set.\n///\n///\n/// ## Example.\n///\n/// A user's token balance can be represented as a PrivateSet of multiple notes, where the note type contains a value.\n/// The \"current value\" of the user's token balance (the PrivateSet state variable) can be interpreted as the summation\n/// of the values contained within all not-yet-nullified notes (aka \"current notes\") in the PrivateSet.\n///\n/// This is similar to a physical wallet containing five $10 notes: the owner's wallet balance is the sum of all those\n/// $10 notes: $50. To spend $2, they can get one $10 note, nullify it, and insert one $8 note as change. Their new\n/// wallet balance will then be interpreted as the new summation: $48.\n///\n/// The interpretation doesn't always have to be a \"summation of values\". When `get_notes` is called, PrivateSet does\n/// not attempt to interpret the notes at all; it's up to the custom code of the smart contract to make an\n/// interpretation.\n///\n/// For example: a set of notes could instead represent a moving average; or a modal value; or some other single\n/// statistic. Or the set of notes might not be collapsible into a single statistic: it could be a disjoint collection\n/// of NFTs which are housed under the same \"storage slot\".\n///\n/// It's worth noting that a user can prove existence of _at least_ some subset of notes in a PrivateSet, but they\n/// cannot prove existence of _all_ notes in a PrivateSet. The physical wallet is a good example: a user can prove that\n/// there are five $10 notes in their wallet by furnishing those notes. But because we cannot _see_ the entirety of\n/// their wallet, they might have many more notes that they're choosing to not showing us.\n///\n/// ## When to choose PrivateSet vs PrivateMutable:\n///\n/// - If you want _someone else_ (other than the owner of the private state) to be able to make edits (insert notes).\n/// - If you don't want to leak the storage_slot being initialized (see the PrivateMutable file).\n/// - If you find yourself needing to re-initialize a PrivateMutable (see that file).\n///\n/// The 'current' value of a _PrivateMutable_ state variable is only ever represented by _one_ note at a time. To\n/// mutate the current value of a PrivateMutable, the current note always gets nullified, and a new, replacement note\n/// gets inserted. So if nullification is always required to mutate a PrivateMutable, that means only the 'owner' of a\n/// given PrivateMutable state variable can ever mutate it. For some use cases, this can be too limiting: A key feature\n/// of some smart contract functions is that _multiple people_ are able to mutate a particular state variable.\n///\n/// PrivateSet enables \"other people\" (other than the owner of the private state) to mutate the 'current' value, with\n/// some limitations: The 'owner' is still the only person with the ability to `remove` notes from the the set. \"Other\n/// people\" can `insert` notes into the set.\n///\n/// ## Privacy\n///\n/// The methods of a PrivateSet are only executable in a PrivateContext, and are designed to not leak anything about\n/// _which_ state variable was read/modified/ inserted, to the outside world.\n///\n/// # Struct Fields:\n///\n/// * context - The execution context (PrivateContext or UtilityContext).\n/// * storage_slot -  All notes that \"belong\" to a given PrivateSet state variable are augmented with a common\n/// `storage_slot` field, as a way of identifying which set they belong to. (Management of `storage_slot` is handled\n/// within the innards of the PrivateSet impl, so you shouldn't need to think about this any further).\n///\n///\n/// # Generic Parameters:\n///\n/// * `Note` - Many notes of this type will collectively form the PrivateSet at the given storage_slot.\n/// * `Context` - The execution context (PrivateContext or UtilityContext).\n///\npub struct PrivateSet<Note, Context> {\n    pub context: Context,\n    pub storage_slot: Field,\n    pub owner: AztecAddress,\n}\n\nimpl<Note, Context> OwnedStateVariable<Context> for PrivateSet<Note, Context> {\n    fn new(context: Context, storage_slot: Field, owner: AztecAddress) -> Self {\n        Self { context, storage_slot, owner }\n    }\n}\n\nimpl<Note> PrivateSet<Note, &mut PrivateContext>\nwhere\n    Note: NoteType + NoteHash + Eq,\n{\n    /// Inserts a new `note` into the PrivateSet.\n    ///\n    /// # Arguments\n    ///\n    /// - `note` - A newly-created note that you would like to insert into this PrivateSet.\n    ///\n    /// # Returns\n    ///\n    /// - NoteMessage<Note> - A type-safe wrapper which makes it clear to the smart contract dev that they now have a\n    /// choice: they need to decide whether they would like to send the contents of the newly- created note to someone,\n    /// or not. If they would like to, they have some further choices:\n    /// - What kind of log to use? (Private log, or offchain log).\n    /// - What kind of encryption scheme to use? (Currently only AES128 is supported)\n    /// - Whether to _constrain_ delivery of the note, or not. At the moment, aztec-nr provides limited options. You\n    /// can call `.deliver()` on the returned type to encrypt and log the note. See NoteMessage for more details. >\n    /// Note: We're planning a _significant_ refactor of this syntax, to make the syntax of how to encrypt and deliver\n    /// notes much clearer, and to make the default options much clearer to developers. We will also be enabling easier\n    /// ways to customize your own note encryption options.\n    ///\n    /// # Advanced:\n    ///\n    /// Ultimately, this function inserts the `note` into the protocol's Note Hash Tree. Behind the scenes, we do the\n    /// following:\n    /// - Augment the note with the `storage_slot` of this PrivateSet, to convey which set it belongs to.\n    /// - Augment the note with a `note_type_id`, so that it can be correctly filed- away when it is eventually\n    /// discovered, decrypted, and processed by its intended recipient. (The note_type_id is usually allocated by the\n    /// [`note`](crate::macros::notes::note) macro).\n    /// - Provide the contents of the (augmented) note to the PXE, so that it can store all notes created by the user\n    /// executing this function.\n    /// - The note is also kept in the PXE's memory during execution, in case this newly-created note gets _read_ in\n    /// some later execution frame of this transaction. In such a case, we feed hints to the kernel to squash: the\n    /// so-called \"transient note\", its note log (if applicable), and the nullifier that gets created by the reading\n    /// function.\n    /// - Hash the (augmented) note into a single Field, via the note's own `compute_note_hash` method.\n    /// - Push the `note_hash` to the PrivateContext. From here, the protocol's kernel circuits will take over and\n    /// insert the note_hash into the protocol's \"note hash tree\".\n    /// - Before insertion, the protocol will:\n    /// - \"Silo\" the `note_hash` with the `contract_address` of the calling function, to yield a `siloed_note_hash`.\n    /// This prevents state collisions between different smart contracts.\n    /// - Ensure uniqueness of the `siloed_note_hash`, to prevent Faerie-Gold attacks, by hashing the\n    /// `siloed_note_hash` with a unique value, to yield a `unique_siloed_note_hash` (see the protocol spec for more).\n    ///\n    pub fn insert(self, note: Note) -> NoteMessage<Note>\n    where\n        Note: Packable,\n    {\n        create_note(self.context, self.owner, self.storage_slot, note)\n    }\n\n    /// Pops a collection of \"current\" notes (i.e. not-yet-nullified notes) which belong to this PrivateSet.\n    ///\n    /// \"Pop\" indicates that, conceptually, the returned notes will get _permanently removed_ (nullified) from the\n    /// PrivateSet by this method.\n    ///\n    /// The act of nullifying convinces us that the returned notes are indeed \"current\" (because if they can be\n    /// nullified, it means they haven't been nullified already, because a note can only be nullified once).\n    ///\n    /// This means that -- whilst the returned notes should be considered \"current\" within the currently-executing\n    /// execution frame of the tx -- they will be not be considered \"current\" by any _later_ execution frame of this tx\n    /// (or any future tx).\n    ///\n    /// Notes will be selected from the PXE's database, via an oracle call, according to the filtering `options`\n    /// provided.\n    ///\n    /// # Arguments\n    ///\n    /// - `options` - See NoteGetterOptions. Enables the caller to specify the properties of the notes that must be\n    /// returned by the oracle call to the PXE. The NoteGetterOptions are designed to contain functions which\n    /// _constrain_ that the returned notes do indeed adhere to the specified options. Those functions are executed\n    /// _within_ this `pop_notes` call.\n    ///\n    /// # Returns\n    ///\n    /// - BoundedVec<Note, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\n    /// - A vector of \"current\" notes, that have been constrained to satisfy the retrieval criteria specified by the\n    /// given `options`.\n    ///\n    /// # Generic Parameters\n    ///\n    /// * `PreprocessorArgs` - See `NoteGetterOptions`.\n    /// * `FilterArgs` - See `NoteGetterOptions`.\n    /// * `M` - The length of the note (in Fields), when packed by the Packable trait.\n    ///\n    /// # Advanced:\n    ///\n    /// Reads the notes:\n    ///\n    /// - Gets notes from the PXE, via an oracle call, according to the filtering `options` provided.\n    /// - Constrains that the returned notes do indeed adhere to the `options`. (Note: the `options` contain\n    /// _constrained_ functions that get invoked _within_ this function).\n    /// - Asserts that the notes do indeed belong to this calling function's `contract_address`, and to this\n    /// PrivateSet's `storage_slot`.\n    /// - Computes the note_hash for each note, using the `storage_slot` and `contract_address` of this PrivateSet\n    /// instance.\n    /// - Asserts that the note_hash does indeed exist:\n    /// - For settled notes: makes a request to the kernel to perform a merkle membership check against the historical\n    /// Note Hashes Tree that this tx is referencing.\n    /// - For transient notes: makes a request to the kernel to ensure that the note was indeed emitted by some earlier\n    /// execution frame of this tx.\n    ///\n    /// Nullifies the notes:\n    ///\n    /// - Computes the nullifier for each note.\n    /// - (The nullifier computation differs depending on whether the note is settled or transient).\n    /// - Pushes the nullifiers to the PrivateContext. From here, the protocol's kernel circuits will take over and\n    /// insert the nullifiers into the protocol's \"nullifier tree\".\n    /// - Before insertion, the protocol will:\n    /// - \"Silo\" each `nullifier` with the `contract_address` of the calling function, to yield a `siloed_nullifier`.\n    /// This prevents nullifier collisions between different smart contracts.\n    /// - Ensure that each `siloed_nullifier` does not already exist in the nullifier tree. The nullifier tree is an\n    /// indexed merkle tree, which supports efficient non-membership proofs.\n    ///\n    pub fn pop_notes<PreprocessorArgs, FilterArgs, let M: u32>(\n        self,\n        mut options: NoteGetterOptions<Note, M, PreprocessorArgs, FilterArgs>,\n    ) -> BoundedVec<Note, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\n    where\n        Note: Packable<N = M>,\n    {\n        std::static_assert(options.owner.is_none(), \"Owner cannot be set in pop_notes\");\n\n        let options = options.set_owner(self.owner);\n        let confirmed_notes = get_notes(self.context, self.storage_slot, options);\n        // We iterate in a range 0..options.limit instead of 0..notes.len() because options.limit is known at compile\n        // time and hence will result in fewer constraints when set to a lower value than\n        // MAX_NOTE_HASH_READ_REQUESTS_PER_CALL.\n        for i in 0..options.limit {\n            if i < confirmed_notes.len() {\n                let confirmed_note = confirmed_notes.get_unchecked(i);\n                // We immediately destroy the note without doing any of the read request checks `remove` typically\n                // performs because we know that the `get_notes` call has already placed those constraints.\n                destroy_note(self.context, confirmed_note);\n            }\n        }\n\n        // Since the notes were already destroyed, we no longer need the additional data in ConfirmedNote and can\n        // discard it.\n        confirmed_notes.map(|confirmed_note| confirmed_note.note)\n    }\n\n    /// Permanently removes (conceptually) the given note from this PrivateSet, by nullifying it.\n    ///\n    /// Note that if you obtained the note via `get_notes` it's much better to use `pop_notes`, as `pop_notes` results\n    /// in significantly fewer constraints, due to avoiding an extra hash and read request check.\n    ///\n    /// # Arguments\n    ///\n    /// - `confirmed_note` - A note which -- earlier in the calling function's execution -- has been retrieved from the\n    /// PXE. The `confirmed_note` is constrained to have been read from the i\n    ///\n    /// # Returns\n    ///\n    /// - NoteMessage<Note> - A type-safe wrapper which makes it clear to the smart contract dev that they now have a\n    /// choice: they need to decide whether they would like to send the contents of the newly- created note to someone,\n    /// or not. If they would like to, they have some further choices:\n    /// - What kind of log to use? (Private log, or offchain log).\n    /// - What kind of encryption scheme to use? (Currently only AES128 is supported)\n    /// - Whether to _constrain_ delivery of the note, or not. At the moment, aztec-nr provides limited options. See\n    /// NoteMessage for further details. > Note: We're planning a _significant_ refactor of this syntax, to make the\n    /// syntax of how to encrypt and deliver notes much clearer, and to make the default options much clearer to\n    /// developers. We will also be enabling easier ways to customize your own note encryption options.\n    ///\n    pub fn remove(self, confirmed_note: ConfirmedNote<Note>) {\n        destroy_note(self.context, confirmed_note);\n    }\n\n    /// Returns a filtered collection of notes from the set.\n    ///\n    /// DANGER: the returned notes do not get nullified within this `get_notes` function, and so they cannot\n    /// necessarily be considered \"current\" notes. I.e. you might be reading notes that have already been nullified. It\n    /// is this which distinguishes `get_notes` from `pop_notes`.\n    ///\n    /// Note that if you later on remove the note it's much better to use `pop_notes` as `pop_notes` results in\n    /// significantly fewer constrains due to avoiding 1 read request check. If you need for your app to see the notes\n    /// before it can decide which to nullify (which ideally would not be the case, and you'd be able to rely on the\n    /// filter and preprocessor to do this), then you have no resort but to call `get_notes` and then `remove`.\n    ///\n    /// Notes will be selected from the PXE's database, via an oracle call, according to the filtering `options`\n    /// provided.\n    ///\n    /// # Arguments\n    ///\n    /// - `options` - See NoteGetterOptions. Enables the caller to specify the properties of the notes that must be\n    /// returned by the oracle call to the PXE. The NoteGetterOptions are designed to contain functions which\n    /// _constrain_ that the returned notes do indeed adhere to the specified options. Those functions are executed\n    /// _within_ this `pop_notes` call.\n    ///\n    /// # Returns\n    ///\n    /// - BoundedVec<Note, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\n    /// - A vector of \"current\" notes, that have been constrained to satisfy the retrieval criteria specified by the\n    /// given `options`.\n    ///\n    /// # Generic Parameters\n    ///\n    /// * `PreprocessorArgs` - See `NoteGetterOptions`.\n    /// * `FilterArgs` - See `NoteGetterOptions`.\n    /// * `M` - The length of the note (in Fields), when packed by the Packable trait.\n    ///\n    /// # Advanced:\n    ///\n    /// Reads the notes:\n    ///\n    /// - Gets notes from the PXE, via an oracle call, according to the filtering `options` provided.\n    /// - Constrains that the returned notes do indeed adhere to the `options`. (Note: the `options` contain\n    /// _constrained_ functions that get invoked _within_ this function).\n    /// - Asserts that the notes do indeed belong to this calling function's `contract_address`, and to this\n    /// PrivateSet's `storage_slot`.\n    /// - Computes the note_hash for each note, using the `storage_slot` and `contract_address` of this PrivateSet\n    /// instance.\n    /// - Asserts that the note_hash does indeed exist:\n    /// - For settled notes: makes a request to the kernel to perform a merkle membership check against the historical\n    /// Note Hashes Tree that this tx is referencing.\n    /// - For transient notes: makes a request to the kernel to ensure that the note was indeed emitted by some earlier\n    /// execution frame of this tx.\n    ///\n    pub fn get_notes<PreprocessorArgs, FilterArgs, let M: u32>(\n        self,\n        mut options: NoteGetterOptions<Note, M, PreprocessorArgs, FilterArgs>,\n    ) -> BoundedVec<ConfirmedNote<Note>, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>\n    where\n        Note: Packable<N = M>,\n    {\n        std::static_assert(options.owner.is_none(), \"Owner cannot be set in get_notes\");\n\n        let options = options.set_owner(self.owner);\n        get_notes(self.context, self.storage_slot, options)\n    }\n}\n\nimpl<Note> PrivateSet<Note, UtilityContext>\nwhere\n    Note: NoteType + NoteHash + Eq,\n{\n    /// Returns a collection of notes which belong to this PrivateSet, according to the given selection `options`.\n    ///\n    /// Notice that this function is executable only within a UtilityContext, which is an unconstrained environment on\n    /// the user's local device.\n    ///\n    /// # Arguments\n    ///\n    /// - `options` - See NoteGetterOptions. Enables the caller to specify the properties of the notes that must be\n    /// returned by the oracle call to the PXE.\n    ///\n    pub unconstrained fn view_notes(\n        self,\n        mut options: NoteViewerOptions<Note, <Note as Packable>::N>,\n    ) -> BoundedVec<Note, MAX_NOTES_PER_PAGE>\n    where\n        Note: Packable,\n    {\n        std::static_assert(options.owner.is_none(), \"Owner cannot be set in view_notes\");\n\n        let options = options.set_owner(self.owner);\n        view_notes(self.storage_slot, options)\n    }\n}\n"
    },
    "238": {
      "function_locations": [
        {
          "name": "<impl StateVariable<M, Context> for PublicMutable<T, Context>>::new",
          "start": 4374
        },
        {
          "name": "<impl StateVariable<M, Context> for PublicMutable<T, Context>>::get_storage_slot",
          "start": 4569
        },
        {
          "name": "PublicMutable<T, PublicContext>::read",
          "start": 6177
        },
        {
          "name": "PublicMutable<T, PublicContext>::write",
          "start": 7896
        },
        {
          "name": "PublicMutable<T, UtilityContext>::read",
          "start": 8774
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/state_vars/public_mutable.nr",
      "source": "use crate::context::{PublicContext, UtilityContext};\nuse crate::protocol::traits::Packable;\nuse crate::state_vars::StateVariable;\n\nmod test;\n\n/// Mutable public values.\n///\n/// This is one of the most basic public state variables. It is equivalent to a non-`immutable` non-`constant` Solidity\n/// state variable.\n///\n/// It represents a public value of type `T` that can be written to repeatedly over the lifetime of the contract,\n/// allowing the last value that was written to be read.\n///\n/// ## Access Patterns\n///\n/// A value stored in a `PublicMutable` can be read and written from public contract functions.\n///\n/// It is not possible to read or write a `PublicMutable` from private contract functions. A common pattern is to have\n/// these functions [enqueue a public self\n/// calls](crate::contract_self::ContractSelfPrivate::enqueue) in which the\n/// required operation is performed.\n///\n/// For an immutable variant which can be read from private functions, see\n/// [`PublicImmutable`](crate::state_vars::PublicImmutable).\n///\n/// For a mutable (with restrictions) variant which can be read from private functions see\n/// [`DelayedPublicMutable`](crate::state_vars::DelayedPublicMutable).\n///\n/// ## Privacy\n///\n/// `PublicMutable` provides zero privacy. All write and read operations are public: the entire network can see these\n/// accesses and the data involved.\n///\n/// ## Use Cases\n///\n/// This is suitable for any kind of global state that needs to be accessible by everyone. For example, a token may\n/// have a public total supply, or a voting contract may have public vote tallies.\n///\n/// Note that contracts having public values does not necessarily mean the actions that update these values must\n/// themselves be wholly public. For example, the token could allow for private minting and burning, and casting a vote\n/// could be kept private: these private functions would enqueue a public function that writes to the `PublicMutable`.\n///\n/// Similarly, private functions can enqueue a public call in which the `PublicMutable` is checked to meet some\n/// condition. For example, a private action might be executable only if the vote count has exceeded some threshold, in\n/// which case the private function would enqueue a public function that reads from the `PublicMutable`.\n///\n/// Such patterns preserve the privacy of the account that executed the action, as well as details related to the\n/// private execution itself, but they _do_ reveal that the transaction interacted with the `PublicMutable` value (and\n/// hence that the contract was called), as all accesses to it are public. The\n/// [`only_self`](crate::macros::functions::only_self) attribute is very useful when implementing this.\n///\n/// ## Examples\n///\n/// Declaring a `PublicMutable` in the contract's [`#[storage]`](crate::macros::storage::storage) struct requires\n/// specifying the type `T` that is stored in the variable:\n///\n/// ```noir\n/// #[storage]\n/// struct Storage<C> {\n///     total_supply: PublicMutable<u128, C>,\n///     public_balances: Map<AztecAddress, PublicMutable<u128, C>, C>,\n///\n///     vote_tallies: Map<ElectionId, PublicMutable<u128, C>, C>,\n/// }\n/// ```\n///\n/// ## Requirements\n///\n/// The type `T` stored in the `PublicMutable` must implement the [`Packable`](crate::protocol::traits::Packable)\n/// trait.\n///\n/// ## Implementation Details\n///\n/// Values are packed and stored directly in the public storage tree, with no overhead. A `PublicMutable` therefore\n/// takes up as many storage slots as the packing length of the stored type `T`.\n///\n/// Private reads are not possible because private functions do not have access to the current network state, only the\n/// _past_ state at the anchor block. They _can_ perform historical reads of `PublicMutable` values at past times, but\n/// they have no way to guarantee that the value has not changed since then.\n/// [`PublicImmutable`](crate::state_vars::PublicImmutable) and\n/// [`DelayedPublicMutable`](crate::state_vars::DelayedPublicMutable) are examples of public state variables that _can_\n/// be read privately by restricting mutation.\npub struct PublicMutable<T, Context> {\n    context: Context,\n    storage_slot: Field,\n}\n\nimpl<T, Context, let M: u32> StateVariable<M, Context> for PublicMutable<T, Context>\nwhere\n    T: Packable<N = M>,\n{\n    fn new(context: Context, storage_slot: Field) -> Self {\n        assert(storage_slot != 0, \"Storage slot 0 not allowed. Storage slots must start from 1.\");\n        PublicMutable { context, storage_slot }\n    }\n\n    fn get_storage_slot(self) -> Field {\n        self.storage_slot\n    }\n}\n\nimpl<T> PublicMutable<T, PublicContext> {\n    /// Returns the current value.\n    ///\n    /// If [`write`](PublicMutable::write) has never been called, then this returns the default empty public storage\n    /// value, which is all zeroes - equivalent to `let t = T::unpack(std::mem::zeroed());`.\n    ///\n    /// It is not possible to detect if a `PublicMutable` has ever been initialized or not other than by testing for\n    /// the zero sentinel value. For a more robust solution, store an `Option<T>` in the `PublicMutable`.\n    ///\n    /// ## Examples\n    ///\n    /// A public getter that returns the current value:\n    /// ```noir\n    /// #[external(\"public\")]\n    /// fn get_total_supply() -> u128 {\n    ///     self.storage.total_supply.read()\n    /// }\n    /// ```\n    ///\n    /// An [`only_self`](crate::macros::functions::only_self) helper that asserts a condition a private function\n    /// requires:\n    /// ```noir\n    /// #[external(\"private\")]\n    /// fn execute_proposal(election_id: ElectionId) {\n    ///     self.enqueue_self._assert_vote_passed(election_id);\n    ///\n    ///     // execute the proposal - this remains private\n    /// }\n    ///\n    /// #[external(\"public\")]\n    /// #[only_self]\n    /// fn _assert_vote_passed(election_id: ElectionId) {\n    ///     assert(self.storage.vote_tallies.at(election_id).read() >= VOTE_PASSED_THRESHOLD);\n    /// }\n    /// ```\n    ///\n    /// ## Cost\n    ///\n    /// The `SLOAD` AVM opcode is invoked a number of times equal to `T`'s packed length.\n    pub fn read(self) -> T\n    where\n        T: Packable,\n    {\n        self.context.storage_read(self.storage_slot)\n    }\n\n    /// Stores a new value.\n    ///\n    /// The old value is overridden and cannot be recovered. The new value can be immediately retrieved by\n    /// [`read`](PublicMutable::read).\n    ///\n    /// ## Examples\n    ///\n    /// A public setter that updates the current value:\n    /// ```noir\n    /// #[external(\"public\")]\n    /// fn mint_tokens(recipient: AztecAddress, amount: u128) {\n    ///     let current_recipient_balance = self.storage.public_balances.at(recipient).read();\n    ///     self.storage.public_balances.at(recipient).write(current_recipient_balance + amount);\n    ///\n    ///     let current_supply = self.storage.total_supply.read();\n    ///     self.storage.total_supply.write(current_supply + amount);\n    /// }\n    /// ```\n    ///\n    /// An [`only_self`](crate::macros::functions::only_self) helper that updates public state triggered by a private\n    /// function:\n    /// ```noir\n    /// #[external(\"private\")]\n    /// fn vote_for_proposal(election_id: ElectionId, votes: u128) {\n    ///     // validate the sender can cast this many votes - this remains private\n    ///\n    ///     self.enqueue_self._tally_vote(election_id, votes);\n    /// }\n    ///\n    /// #[external(\"public\")]\n    /// #[only_self]\n    /// fn _tally_vote(election_id: ElectionId, votes: u128) {\n    ///     let current = self.storage.vote_tallies.at(election_id).read();\n    ///     self.storage.vote_tallies.at(election_id).write(current + votes);\n    /// }\n    /// ```\n    ///\n    /// ## Cost\n    ///\n    /// The `SSTORE` AVM opcode is invoked a number of times equal to `T`'s packed length.\n    pub fn write(self, value: T)\n    where\n        T: Packable,\n    {\n        self.context.storage_write(self.storage_slot, value);\n    }\n}\n\nimpl<T> PublicMutable<T, UtilityContext> {\n    /// Returns the value at the anchor block.\n    ///\n    /// If [`write`](PublicMutable::write) has never been called, then this returns the default empty public storage\n    /// value, which is all zeroes - equivalent to `let t = T::unpack(std::mem::zeroed());`.\n    ///\n    /// It is not possible to detect if a `PublicMutable` has ever been initialized or not other than by testing for\n    /// the zero sentinel value. For a more robust solution, store an `Option<T>` in the `PublicMutable`.\n    ///\n    /// ## Examples\n    ///\n    /// ```noir\n    /// #[external(\"utility\")]\n    /// fn get_total_supply() -> u128 {\n    ///     self.storage.total_supply.read()\n    /// }\n    /// ```\n    pub unconstrained fn read(self) -> T\n    where\n        T: Packable,\n    {\n        self.context.storage_read(self.storage_slot)\n    }\n}\n"
    },
    "272": {
      "function_locations": [
        {
          "name": "UnconstrainedArray<T, Oracle>::at",
          "start": 3001
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::empty_at",
          "start": 3363
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::empty",
          "start": 3834
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::len",
          "start": 3972
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::push",
          "start": 4149
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::pop",
          "start": 4444
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::get",
          "start": 4757
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::set",
          "start": 5081
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::remove",
          "start": 5395
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::clear",
          "start": 5573
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::for_each",
          "start": 6201
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::map",
          "start": 6555
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::filter",
          "start": 6975
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::any",
          "start": 7435
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::all",
          "start": 7720
        },
        {
          "name": "UnconstrainedArray<T, Oracle>::find",
          "start": 7995
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/unconstrained_array/mod.nr",
      "source": "pub(crate) mod test_helpers;\npub(crate) mod test_suite;\n\nuse crate::oracle::random::random;\nuse crate::protocol::traits::{Deserialize, Serialize};\n\n/// Oracle backend for an [`UnconstrainedArray`]: the set of PXE-side operations that implement its storage.\n///\n/// Each implementor routes these operations to a distinct family of oracles, and the oracle family determines the\n/// array's lifetime and visibility (e.g. [`EphemeralArray`](crate::ephemeral::EphemeralArray) arrays live for one\n/// contract call frame, while [`TransientArray`](crate::transient::TransientArray) arrays are shared across all frames\n/// of the same contract within one top-level PXE call).\npub(crate) trait ArrayOracles {\n    /// Returns the number of elements in the array at `slot`.\n    unconstrained fn len_oracle(slot: Field) -> u32;\n\n    /// Appends a serialized element to the array at `slot` and returns the new length.\n    unconstrained fn push_oracle<let N: u32>(slot: Field, values: [Field; N]) -> u32;\n\n    /// Removes and returns the last serialized element of the array at `slot`. Implementors must panic if the\n    /// array is empty.\n    unconstrained fn pop_oracle<let N: u32>(slot: Field) -> [Field; N];\n\n    /// Returns the serialized element at the given index of the array at `slot`. Implementors must panic if `index`\n    /// is out of bounds.\n    unconstrained fn get_oracle<let N: u32>(slot: Field, index: u32) -> [Field; N];\n\n    /// Overwrites the serialized element at the given index of the array at `slot`. Implementors must panic if\n    /// `index` is out of bounds.\n    unconstrained fn set_oracle<let N: u32>(slot: Field, index: u32, values: [Field; N]);\n\n    /// Removes the element at the given index of the array at `slot`, shifting subsequent elements backward.\n    /// Implementors must panic if `index` is out of bounds.\n    unconstrained fn remove_oracle(slot: Field, index: u32);\n\n    /// Removes all elements from the array at `slot`.\n    unconstrained fn clear_oracle(slot: Field);\n}\n\n/// A dynamically sized array backed by PXE-side in-memory storage via an [`ArrayOracles`] backend.\n///\n/// Arrays are identified by a slot, and each logical operation (push, pop, get, etc.) is a single oracle call. The\n/// `Oracle` backend determines the array's lifetime and visibility; contracts should not use this type directly but\n/// rather one of its aliases: [`EphemeralArray`](crate::ephemeral::EphemeralArray) (scoped to a single contract call\n/// frame) or [`TransientArray`](crate::transient::TransientArray) (shared across all frames of the same contract\n/// within one top-level PXE call).\npub struct UnconstrainedArray<T, Oracle> {\n    pub(crate) slot: Field,\n}\n\nimpl<T, Oracle> UnconstrainedArray<T, Oracle>\nwhere\n    Oracle: ArrayOracles,\n{\n    /// Returns a handle to the array at the given slot, which may already contain data (e.g. populated by an oracle\n    /// or by an earlier frame, depending on the backend's visibility).\n    pub unconstrained fn at(slot: Field) -> Self {\n        Self { slot }\n    }\n\n    /// Returns an empty array at the given slot, clearing any pre-existing data.\n    ///\n    /// For backends whose arrays are visible beyond a single call frame (e.g. transient arrays), this wipes data\n    /// other frames of the same contract may have written at the slot.\n    pub unconstrained fn empty_at(slot: Field) -> Self {\n        Self::at(slot).clear()\n    }\n\n    /// Returns an empty array at a fresh, randomly allocated slot.\n    ///\n    /// Use this when the caller does not need a specific slot: the random slot is isolated from every other array of\n    /// the same backend with overwhelming probability. Prefer [`UnconstrainedArray::empty_at`] when the slot must be a\n    /// known value (e.g. one shared with an oracle or another call frame).\n    pub unconstrained fn empty() -> Self {\n        Self::at(random())\n    }\n\n    /// Returns the number of elements stored in the array.\n    pub unconstrained fn len(self) -> u32 {\n        Oracle::len_oracle(self.slot)\n    }\n\n    /// Stores a value at the end of the array.\n    pub unconstrained fn push(self, value: T)\n    where\n        T: Serialize,\n    {\n        let serialized = value.serialize();\n        let _ = Oracle::push_oracle(self.slot, serialized);\n    }\n\n    /// Removes and returns the last element. Implementors are required to panic if the array is empty.\n    pub unconstrained fn pop(self) -> T\n    where\n        T: Deserialize,\n    {\n        let serialized = Oracle::pop_oracle(self.slot);\n        Deserialize::deserialize(serialized)\n    }\n\n    /// Retrieves the value stored at `index`. Implementors are required to panic if the index is out of bounds.\n    pub unconstrained fn get(self, index: u32) -> T\n    where\n        T: Deserialize,\n    {\n        let serialized = Oracle::get_oracle(self.slot, index);\n        Deserialize::deserialize(serialized)\n    }\n\n    /// Overwrites the value stored at `index`. Implementors are required to panic if the index is out of bounds.\n    pub unconstrained fn set(self, index: u32, value: T)\n    where\n        T: Serialize,\n    {\n        let serialized = value.serialize();\n        Oracle::set_oracle(self.slot, index, serialized);\n    }\n\n    /// Removes the element at `index`, shifting subsequent elements backward. Implementors are required to panic if\n    /// the index is out of bounds.\n    pub unconstrained fn remove(self, index: u32) {\n        Oracle::remove_oracle(self.slot, index);\n    }\n\n    /// Removes all elements from the array and returns self for chaining.\n    pub unconstrained fn clear(self) -> Self {\n        Oracle::clear_oracle(self.slot);\n        self\n    }\n\n    /// Calls a function on each element of the array.\n    ///\n    /// The function `f` is called once with each array value and its corresponding index, in order (from the first\n    /// element to the last).\n    ///\n    /// Structurally mutating the array from inside the callback (e.g. via `push`, `pop`, `remove` or `clear`) is\n    /// **not** supported: it can cause elements to be skipped, visited more than once, or read out of bounds.\n    pub unconstrained fn for_each<Env>(self, f: unconstrained fn[Env](u32, T) -> ())\n    where\n        T: Deserialize,\n    {\n        let n = self.len();\n        for i in 0..n {\n            f(i, self.get(i));\n        }\n    }\n\n    /// Applies `f` to every element and collects the results into a fresh array.\n    pub unconstrained fn map<U, Env>(self, f: unconstrained fn[Env](T) -> U) -> UnconstrainedArray<U, Oracle>\n    where\n        T: Deserialize,\n        U: Serialize,\n    {\n        let dest: UnconstrainedArray<U, Oracle> = UnconstrainedArray::empty();\n        let n = self.len();\n        for i in 0..n {\n            dest.push(f(self.get(i)));\n        }\n        dest\n    }\n\n    /// Collects every element satisfying the predicate `f` into a fresh array.\n    pub unconstrained fn filter<Env>(self, f: unconstrained fn[Env](T) -> bool) -> Self\n    where\n        T: Serialize + Deserialize,\n    {\n        let dest: Self = UnconstrainedArray::empty();\n        let n = self.len();\n        for i in 0..n {\n            let value = self.get(i);\n            if f(value) {\n                dest.push(value);\n            }\n        }\n        dest\n    }\n\n    /// Returns `true` if at least one element satisfies the predicate `f`.\n    pub unconstrained fn any<Env>(self, f: unconstrained fn[Env](T) -> bool) -> bool\n    where\n        T: Serialize + Deserialize,\n    {\n        self.filter(f).len() != 0\n    }\n\n    /// Returns `true` if every element satisfies the predicate `f` (vacuously `true` for an empty array).\n    pub unconstrained fn all<Env>(self, f: unconstrained fn[Env](T) -> bool) -> bool\n    where\n        T: Serialize + Deserialize,\n    {\n        self.filter(f).len() == self.len()\n    }\n\n    /// Returns the first element satisfying the predicate `f`, or `Option::none` if none do.\n    pub unconstrained fn find<Env>(self, f: unconstrained fn[Env](T) -> bool) -> Option<T>\n    where\n        T: Deserialize,\n    {\n        let n = self.len();\n        let mut result: Option<T> = Option::none();\n        let mut i = 0;\n        while (i < n) & result.is_none() {\n            let value = self.get(i);\n            if f(value) {\n                result = Option::some(value);\n            }\n            i += 1;\n        }\n        result\n    }\n}\n"
    },
    "275": {
      "function_locations": [
        {
          "name": "append",
          "start": 396
        },
        {
          "name": "test::append_empty_vecs",
          "start": 608
        },
        {
          "name": "test::append_non_empty_vecs",
          "start": 933
        },
        {
          "name": "test::append_non_empty_vecs_insufficient_max_len",
          "start": 1387
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/array/append.nr",
      "source": "/// Appends the elements of the second `BoundedVec` to the end of the first one. The resulting `BoundedVec` can have\n/// any arbitrary maximum length, but it must be large enough to fit all of the elements of both the first and second\n/// vectors.\npub fn append<T, let ALen: u32, let BLen: u32, let DstLen: u32>(\n    a: BoundedVec<T, ALen>,\n    b: BoundedVec<T, BLen>,\n) -> BoundedVec<T, DstLen> {\n    let mut dst = BoundedVec::new();\n\n    dst.extend_from_bounded_vec(a);\n    dst.extend_from_bounded_vec(b);\n\n    dst\n}\n\nmod test {\n    use super::append;\n\n    #[test]\n    unconstrained fn append_empty_vecs() {\n        let a: BoundedVec<_, 3> = BoundedVec::new();\n        let b: BoundedVec<_, 14> = BoundedVec::new();\n\n        let result: BoundedVec<Field, 5> = append(a, b);\n\n        assert_eq(result.len(), 0);\n        assert_eq(result.storage(), std::mem::zeroed());\n    }\n\n    #[test]\n    unconstrained fn append_non_empty_vecs() {\n        let a: BoundedVec<_, 3> = BoundedVec::from_array([1, 2, 3]);\n        let b: BoundedVec<_, 14> = BoundedVec::from_array([4, 5, 6]);\n\n        let result: BoundedVec<Field, 8> = append(a, b);\n\n        assert_eq(result.len(), 6);\n        assert_eq(result.storage(), [1, 2, 3, 4, 5, 6, std::mem::zeroed(), std::mem::zeroed()]);\n    }\n\n    #[test(should_fail_with = \"out of bounds\")]\n    unconstrained fn append_non_empty_vecs_insufficient_max_len() {\n        let a: BoundedVec<_, 3> = BoundedVec::from_array([1, 2, 3]);\n        let b: BoundedVec<_, 14> = BoundedVec::from_array([4, 5, 6]);\n\n        let _: BoundedVec<Field, 5> = append(a, b);\n    }\n}\n"
    },
    "276": {
      "function_locations": [
        {
          "name": "collapse",
          "start": 344
        },
        {
          "name": "verify_collapse_hints",
          "start": 1232
        },
        {
          "name": "get_collapse_hints",
          "start": 3908
        },
        {
          "name": "test::collapse_empty_array",
          "start": 4409
        },
        {
          "name": "test::collapse_non_sparse_array",
          "start": 4640
        },
        {
          "name": "test::collapse_sparse_array",
          "start": 4945
        },
        {
          "name": "test::collapse_front_padding",
          "start": 5251
        },
        {
          "name": "test::collapse_back_padding",
          "start": 5588
        },
        {
          "name": "test::verify_collapse_hints_good_hints",
          "start": 5936
        },
        {
          "name": "test::verify_collapse_hints_wrong_length",
          "start": 6361
        },
        {
          "name": "test::verify_collapse_hints_hint_length_mismatch",
          "start": 6795
        },
        {
          "name": "test::verify_collapse_hints_out_of_bounds_index_hint",
          "start": 7227
        },
        {
          "name": "test::verify_collapse_hints_hint_to_none",
          "start": 7616
        },
        {
          "name": "test::verify_collapse_hints_wrong_vec_content",
          "start": 8047
        },
        {
          "name": "test::verify_collapse_hints_wrong_vec_order",
          "start": 8475
        },
        {
          "name": "test::verify_collapse_hints_dirty_storage",
          "start": 8902
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/array/collapse.nr",
      "source": "/// Collapses an array of `Option`s with sparse `Some` values into a `BoundedVec`, essentially unwrapping the `Option`s\n/// and removing the `None` values.\n///\n/// For example, given: `input: [some(3), none(), some(1)]` this returns `collapsed: [3, 1]`\npub fn collapse<T, let N: u32>(input: [Option<T>; N]) -> BoundedVec<T, N>\nwhere\n    T: Eq,\n{\n    // Computing the collapsed BoundedVec would result in a very large number of constraints, since we'd need to loop\n    // over the input array and conditionally write to a dynamic vec index, which is a very unfriendly pattern to the\n    // proving backend. Instead, we use an unconstrained function to produce the final collapsed array, along with some\n    // hints, and then verify that the input and collapsed arrays are equivalent.\n\n    // Safety: The hints are verified by the `verify_collapse_hints` function.\n    let (collapsed, collapsed_to_input_index_mapping) = unsafe { get_collapse_hints(input) };\n    verify_collapse_hints(input, collapsed, collapsed_to_input_index_mapping);\n    collapsed\n}\n\nfn verify_collapse_hints<T, let N: u32>(\n    input: [Option<T>; N],\n    collapsed: BoundedVec<T, N>,\n    collapsed_to_input_index_mapping: BoundedVec<u32, N>,\n)\nwhere\n    T: Eq,\n{\n    // collapsed should be a BoundedVec with all the non-none elements in input, in the same order. We need to lay down\n    // multiple constraints to guarantee this. First we check that the number of elements is correct\n    let mut count = 0;\n    for i in 0..N {\n        if input[i].is_some() {\n            count += 1;\n        }\n    }\n    assert_eq(count, collapsed.len(), \"Wrong collapsed vec length\");\n\n    // Then we check that all elements exist in the original array, and are in the same order. To do this we use the\n    // auxiliary collapsed_to_input_index_mapping array, which at index n contains the index in the input array that\n    // corresponds to the collapsed entry at index n. Example:\n    //  - input: [some(3), none(), some(1)]\n    //  - collapsed: [3, 1]\n    //  - collapsed_to_input_index_mapping: [0, 2]\n    // These two arrays should therefore have the same length.\n    assert_eq(collapsed.len(), collapsed_to_input_index_mapping.len(), \"Collapse hint vec length mismatch\");\n\n    // We now look at each collapsed entry and check that there is a valid equal entry in the input array.\n    let mut last_index = Option::none();\n    for i in 0..N {\n        if i < collapsed.len() {\n            let input_index = collapsed_to_input_index_mapping.get_unchecked(i);\n            assert(input_index < N, \"Out of bounds index hint\");\n\n            assert_eq(collapsed.get_unchecked(i), input[input_index].unwrap(), \"Wrong collapsed vec content\");\n\n            // By requiring increasing input indices, we both guarantee that we're not looking at the same input\n            // element more than once, and that we're going over them in the original order.\n            if last_index.is_some() {\n                assert(input_index > last_index.unwrap_unchecked(), \"Wrong collapsed vec order\");\n            }\n            last_index = Option::some(input_index);\n        } else {\n            // BoundedVec assumes that the unused parts of the storage are zeroed out (e.g. in the Eq impl), so we make\n            // sure that this property holds.\n            assert_eq(collapsed.get_unchecked(i), std::mem::zeroed(), \"Dirty collapsed vec storage\");\n        }\n    }\n    // We now know that:\n    //  - all values in the collapsed array exist in the input array\n    //  - the order of the collapsed values is the same as in the input array\n    //  - no input value is present more than once in the collapsed array\n    //  - the number of elements in the collapsed array is the same as in the input array.\n    // Therefore, the collapsed array is correct.\n}\n\nunconstrained fn get_collapse_hints<T, let N: u32>(input: [Option<T>; N]) -> (BoundedVec<T, N>, BoundedVec<u32, N>) {\n    let mut collapsed: BoundedVec<T, N> = BoundedVec::new();\n    let mut collapsed_to_input_index_mapping: BoundedVec<u32, N> = BoundedVec::new();\n\n    for i in 0..N {\n        if input[i].is_some() {\n            collapsed.push(input[i].unwrap_unchecked());\n            collapsed_to_input_index_mapping.push(i);\n        }\n    }\n\n    (collapsed, collapsed_to_input_index_mapping)\n}\n\nmod test {\n    use super::{collapse, verify_collapse_hints};\n\n    #[test]\n    unconstrained fn collapse_empty_array() {\n        let original: [Option<Field>; 2] = [Option::none(), Option::none()];\n        let collapsed = collapse(original);\n\n        assert_eq(collapsed.len(), 0);\n    }\n\n    #[test]\n    unconstrained fn collapse_non_sparse_array() {\n        let original = [Option::some(7), Option::some(3), Option::none()];\n        let collapsed = collapse(original);\n\n        assert_eq(collapsed.len(), 2);\n        assert_eq(collapsed.get(0), 7);\n        assert_eq(collapsed.get(1), 3);\n    }\n\n    #[test]\n    unconstrained fn collapse_sparse_array() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = collapse(original);\n\n        assert_eq(collapsed.len(), 2);\n        assert_eq(collapsed.get(0), 7);\n        assert_eq(collapsed.get(1), 3);\n    }\n\n    #[test]\n    unconstrained fn collapse_front_padding() {\n        let original = [Option::none(), Option::none(), Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = collapse(original);\n\n        assert_eq(collapsed.len(), 2);\n        assert_eq(collapsed.get(0), 7);\n        assert_eq(collapsed.get(1), 3);\n    }\n\n    #[test]\n    unconstrained fn collapse_back_padding() {\n        let original = [Option::some(7), Option::none(), Option::some(3), Option::none(), Option::none()];\n        let collapsed = collapse(original);\n\n        assert_eq(collapsed.len(), 2);\n        assert_eq(collapsed.get(0), 7);\n        assert_eq(collapsed.get(1), 3);\n    }\n\n    #[test]\n    unconstrained fn verify_collapse_hints_good_hints() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7, 3]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0, 2]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Wrong collapsed vec length\")]\n    unconstrained fn verify_collapse_hints_wrong_length() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Collapse hint vec length mismatch\")]\n    unconstrained fn verify_collapse_hints_hint_length_mismatch() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7, 3]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Out of bounds index hint\")]\n    unconstrained fn verify_collapse_hints_out_of_bounds_index_hint() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7, 3]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0, 5]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail)]\n    unconstrained fn verify_collapse_hints_hint_to_none() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7, 0]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0, 1]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Wrong collapsed vec content\")]\n    unconstrained fn verify_collapse_hints_wrong_vec_content() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([7, 42]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0, 2]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Wrong collapsed vec order\")]\n    unconstrained fn verify_collapse_hints_wrong_vec_order() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n        let collapsed = BoundedVec::from_array([3, 7]);\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([2, 0]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n    #[test(should_fail_with = \"Dirty collapsed vec storage\")]\n    unconstrained fn verify_collapse_hints_dirty_storage() {\n        let original = [Option::some(7), Option::none(), Option::some(3)];\n\n        let mut collapsed: BoundedVec<u32, 3> = BoundedVec::from_array([7, 3]);\n        // We have to use the unchecked setter as we're knowingly writing past the length, breaking its invariants.\n        collapsed.set_unchecked(2, 1);\n\n        let collapsed_to_input_index_mapping = BoundedVec::from_array([0, 2]);\n\n        verify_collapse_hints(original, collapsed, collapsed_to_input_index_mapping);\n    }\n\n}\n"
    },
    "278": {
      "function_locations": [
        {
          "name": "subarray",
          "start": 483
        },
        {
          "name": "test::subarray_into_empty",
          "start": 776
        },
        {
          "name": "test::subarray_complete",
          "start": 1100
        },
        {
          "name": "test::subarray_different_end_sizes",
          "start": 1294
        },
        {
          "name": "test::subarray_offset_too_large",
          "start": 1736
        },
        {
          "name": "test::subarray_bad_return_value",
          "start": 1941
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/array/subarray.nr",
      "source": "/// Returns `DstLen` elements from a source array, starting at `offset`. `DstLen` must not be larger than the number of\n/// elements past `offset`.\n///\n/// Examples:\n/// ```\n/// let foo: [Field; 2] = subarray([1, 2, 3, 4, 5], 2);\n/// assert_eq(foo, [3, 4]);\n///\n/// let bar: [Field; 5] = subarray([1, 2, 3, 4, 5], 2); // fails - we can't return 5 elements since only 3 remain\n/// ```\npub fn subarray<T, let SrcLen: u32, let DstLen: u32>(src: [T; SrcLen], offset: u32) -> [T; DstLen] {\n    assert(offset + DstLen <= SrcLen, \"DstLen too large for offset\");\n\n    let mut dst: [T; DstLen] = std::mem::zeroed();\n    for i in 0..DstLen {\n        dst[i] = src[i + offset];\n    }\n\n    dst\n}\n\nmod test {\n    use super::subarray;\n\n    #[test]\n    unconstrained fn subarray_into_empty() {\n        // In all of these cases we're setting DstLen to be 0, so we always get back an empty array.\n        assert_eq(subarray::<Field, _, _>([], 0), []);\n        assert_eq(subarray([1, 2, 3, 4, 5], 0), []);\n        assert_eq(subarray([1, 2, 3, 4, 5], 2), []);\n    }\n\n    #[test]\n    unconstrained fn subarray_complete() {\n        assert_eq(subarray::<Field, _, _>([], 0), []);\n        assert_eq(subarray([1, 2, 3, 4, 5], 0), [1, 2, 3, 4, 5]);\n    }\n\n    #[test]\n    unconstrained fn subarray_different_end_sizes() {\n        // We implicitly select how many values to read in the size of the return array\n        assert_eq(subarray([1, 2, 3, 4, 5], 1), [2, 3, 4, 5]);\n        assert_eq(subarray([1, 2, 3, 4, 5], 1), [2, 3, 4]);\n        assert_eq(subarray([1, 2, 3, 4, 5], 1), [2, 3]);\n        assert_eq(subarray([1, 2, 3, 4, 5], 1), [2]);\n    }\n\n    #[test(should_fail_with = \"DstLen too large for offset\")]\n    unconstrained fn subarray_offset_too_large() {\n        // With an offset of 1 we can only request up to 4 elements\n        let _: [_; 5] = subarray([1, 2, 3, 4, 5], 1);\n    }\n\n    #[test(should_fail)]\n    unconstrained fn subarray_bad_return_value() {\n        assert_eq(subarray([1, 2, 3, 4, 5], 1), [3, 3, 4, 5]);\n    }\n}\n"
    },
    "279": {
      "function_locations": [
        {
          "name": "subbvec",
          "start": 1041
        },
        {
          "name": "test::subbvec_empty",
          "start": 1442
        },
        {
          "name": "test::subbvec_complete",
          "start": 1605
        },
        {
          "name": "test::subbvec_partial",
          "start": 1913
        },
        {
          "name": "test::subbvec_into_empty",
          "start": 2206
        },
        {
          "name": "test::subbvec_offset_past_len",
          "start": 2439
        },
        {
          "name": "test::subbvec_insufficient_dst_len",
          "start": 2646
        },
        {
          "name": "test::subbvec_dst_len_causes_enlarge",
          "start": 3100
        },
        {
          "name": "test::subbvec_dst_len_too_large_for_offset",
          "start": 3409
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/array/subbvec.nr",
      "source": "use crate::utils::array;\n\n/// Returns `DstMaxLen` elements from a source BoundedVec, starting at `offset`. `offset` must not be larger than the\n/// original length, and `DstLen` must not be larger than the total number of elements past `offset` (including the\n/// zeroed elements past `len()`).\n///\n/// Only elements at the beginning of the vector can be removed: it is not possible to also remove elements at the end\n/// of the vector by passing a value for `DstLen` that is smaller than `len() - offset`.\n///\n/// Examples:\n/// ```\n/// let foo = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n/// assert_eq(subbvec(foo, 2), BoundedVec::<_, 8>::from_array([3, 4, 5]));\n///\n/// let bar: BoundedVec<_, 1> = subbvec(foo, 2); // fails - we can't return just 1 element since 3 remain\n/// let baz: BoundedVec<_, 10> = subbvec(foo, 3); // fails - we can't return 10 elements since only 7 remain\n/// ```\npub fn subbvec<T, let SrcMaxLen: u32, let DstMaxLen: u32>(\n    bvec: BoundedVec<T, SrcMaxLen>,\n    offset: u32,\n) -> BoundedVec<T, DstMaxLen> {\n    // The new storage array is a subarray of the original one (which has zeroed storage past len), so elements past\n    // the new len remain zeroed: `subarray` does not allow extending arrays past their original length.\n    BoundedVec::from_parts(array::subarray(bvec.storage(), offset), bvec.len() - offset)\n}\n\nmod test {\n    use super::subbvec;\n\n    #[test]\n    unconstrained fn subbvec_empty() {\n        let bvec = BoundedVec::<Field, 0>::from_array([]);\n        assert_eq(subbvec(bvec, 0), bvec);\n    }\n\n    #[test]\n    unconstrained fn subbvec_complete() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n        assert_eq(subbvec(bvec, 0), bvec);\n\n        let smaller_capacity = BoundedVec::<_, 5>::from_array([1, 2, 3, 4, 5]);\n        assert_eq(subbvec(bvec, 0), smaller_capacity);\n    }\n\n    #[test]\n    unconstrained fn subbvec_partial() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n\n        assert_eq(subbvec(bvec, 2), BoundedVec::<_, 8>::from_array([3, 4, 5]));\n        assert_eq(subbvec(bvec, 2), BoundedVec::<_, 3>::from_array([3, 4, 5]));\n    }\n\n    #[test]\n    unconstrained fn subbvec_into_empty() {\n        let bvec: BoundedVec<_, 10> = BoundedVec::from_array([1, 2, 3, 4, 5]);\n        assert_eq(subbvec(bvec, 5), BoundedVec::<_, 5>::from_array([]));\n    }\n\n    #[test(should_fail)]\n    unconstrained fn subbvec_offset_past_len() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n        let _: BoundedVec<_, 1> = subbvec(bvec, 6);\n    }\n\n    #[test(should_fail)]\n    unconstrained fn subbvec_insufficient_dst_len() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n\n        // We're not providing enough space to hold all of the items inside the original BoundedVec. subbvec can cause\n        // for the capacity to reduce, but not the length (other than by len - offset).\n        let _: BoundedVec<_, 1> = subbvec(bvec, 2);\n    }\n\n    #[test(should_fail_with = \"DstLen too large for offset\")]\n    unconstrained fn subbvec_dst_len_causes_enlarge() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n\n        // subbvec does not support capacity increases\n        let _: BoundedVec<_, 11> = subbvec(bvec, 0);\n    }\n\n    #[test(should_fail_with = \"DstLen too large for offset\")]\n    unconstrained fn subbvec_dst_len_too_large_for_offset() {\n        let bvec = BoundedVec::<_, 10>::from_array([1, 2, 3, 4, 5]);\n\n        // This effectively requests a capacity increase, since there'd be just one element plus the 5 empty slots,\n        // which is less than 7.\n        let _: BoundedVec<_, 7> = subbvec(bvec, 4);\n    }\n}\n"
    },
    "282": {
      "function_locations": [
        {
          "name": "encode_bytes_as_fields",
          "start": 662
        },
        {
          "name": "decode_bytes_from_fields",
          "start": 1313
        },
        {
          "name": "tests::round_trips_bytes",
          "start": 1719
        },
        {
          "name": "tests::encode_rejects_length_not_multiple_of_31",
          "start": 2252
        },
        {
          "name": "tests::decode_rejects_oversized_field",
          "start": 2454
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/conversion/bytes_as_fields.nr",
      "source": "use std::static_assert;\n\n/// Encodes an array of bytes as fields.\n///\n/// Use\n/// [`decode_bytes_from_fields`](crate::utils::conversion::bytes_as_fields::decode_bytes_from_fields) to recover\n/// the original bytes.\n///\n/// The `bytes` array length must be a multiple of 31. If padding is added, it will need to be manually removed\n/// after decoding.\n///\n/// ## Encoding\n///\n/// Each 31-byte chunk is interpreted as a big-endian integer and stored in a `Field`. For input `[1, 10, 3, ..., 0]`\n/// (31 bytes), the resulting `Field` is `1 * 256^30 + 10 * 256^29 + 3 * 256^28 + ... + 0`.\npub fn encode_bytes_as_fields<let N: u32>(bytes: [u8; N]) -> [Field; N / 31] {\n    static_assert(N % 31 == 0, \"N must be a multiple of 31\");\n\n    let mut fields = [0; N / 31];\n    for i in 0..N / 31 {\n        let mut field = 0;\n        for j in 0..31 {\n            field = field * 256 + bytes[i * 31 + j] as Field;\n        }\n        fields[i] = field;\n    }\n\n    fields\n}\n\n/// Decodes fields back into bytes.\n///\n/// Inverse of\n/// [`encode_bytes_as_fields`](crate::utils::conversion::bytes_as_fields::encode_bytes_as_fields).\n/// Each input `Field` must fit in 248 bits; `Field::to_be_bytes::<31>()` fails the proof otherwise.\npub fn decode_bytes_from_fields<let N: u32>(fields: BoundedVec<Field, N>) -> BoundedVec<u8, N * 31> {\n    let mut bytes = BoundedVec::new();\n    for i in 0..fields.len() {\n        let chunk: [u8; 31] = fields.get(i).to_be_bytes();\n        for j in 0..31 {\n            bytes.push(chunk[j]);\n        }\n    }\n    bytes\n}\n\nmod tests {\n    use crate::utils::array::subarray;\n    use super::{decode_bytes_from_fields, encode_bytes_as_fields};\n\n    #[test]\n    unconstrained fn round_trips_bytes(input: [u8; 93]) {\n        let fields = encode_bytes_as_fields(input);\n\n        // In production the fields fly through the system and arrive as a BoundedVec on the other end.\n        let fields_bvec = BoundedVec::<_, 6>::from_array(fields);\n        let bytes_back = decode_bytes_from_fields(fields_bvec);\n\n        assert_eq(bytes_back.len(), input.len());\n        assert_eq(subarray(bytes_back.storage(), 0), input);\n    }\n\n    #[test(should_fail_with = \"N must be a multiple of 31\")]\n    unconstrained fn encode_rejects_length_not_multiple_of_31() {\n        let _fields = encode_bytes_as_fields([0; 32]);\n    }\n\n    #[test(should_fail_with = \"Field failed to decompose into specified 31 limbs\")]\n    unconstrained fn decode_rejects_oversized_field() {\n        // `Field::to_be_bytes::<31>()` fails the proof when a field has any bit above position 247 set.\n        let oversized: Field = (1 as Field) * 2.pow_32(249);\n        let input = BoundedVec::<_, 1>::from_array([oversized]);\n        let _bytes = decode_bytes_from_fields(input);\n    }\n}\n"
    },
    "283": {
      "function_locations": [
        {
          "name": "encode_fields_as_bytes",
          "start": 1007
        },
        {
          "name": "decode_fields_from_bytes",
          "start": 1603
        },
        {
          "name": "try_decode_fields_from_bytes",
          "start": 2190
        },
        {
          "name": "try_decode_field_from_bytes",
          "start": 2829
        },
        {
          "name": "tests::round_trips_fields",
          "start": 3733
        },
        {
          "name": "tests::try_decode_returns_none_on_length_not_multiple_of_32",
          "start": 4320
        },
        {
          "name": "tests::try_decode_accepts_max_field",
          "start": 4528
        },
        {
          "name": "tests::try_decode_returns_none_on_chunk_above_modulus",
          "start": 5063
        },
        {
          "name": "tests::try_decode_returns_none_on_chunk_equal_to_modulus",
          "start": 5718
        },
        {
          "name": "tests::decode_asserts_length_multiple_of_32",
          "start": 6128
        },
        {
          "name": "tests::decode_panics_on_chunk_above_modulus",
          "start": 6544
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/conversion/fields_as_bytes.nr",
      "source": "/// Encodes an array of fields as bytes.\n///\n/// Losslessly preserves any field value; use\n/// [`try_decode_fields_from_bytes`](crate::utils::conversion::fields_as_bytes::try_decode_fields_from_bytes) to\n/// recover the original fields.\n///\n/// ## Encoding\n///\n/// Each field is written as 32 big-endian bytes and the chunks are concatenated. The field array `[5, 42]` becomes:\n///\n/// ```text\n/// [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,  // First field (32 bytes)\n///  0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42] // Second field (32 bytes)\n/// ```\n///\n/// ## Privacy\n///\n/// The BN254 modulus is `< 2^254`, so every 32-byte chunk has its top bit at zero and the next bit biased. The output\n/// is therefore distinguishable from uniform random bytes; take this into account when feeding it into anything that\n/// assumes uniform randomness (e.g. ciphertexts meant to look random).\npub fn encode_fields_as_bytes<let N: u32>(fields: [Field; N]) -> [u8; 32 * N] {\n    let mut bytes = [0; 32 * N];\n    for i in 0..N {\n        let chunk: [u8; 32] = fields[i].to_be_bytes();\n        for j in 0..32 {\n            bytes[i * 32 + j] = chunk[j];\n        }\n    }\n    bytes\n}\n\n/// Decodes bytes back into fields.\n///\n/// Panics if the input length is not a multiple of 32 or if any chunk exceeds the BN254 field modulus. See\n/// [`try_decode_fields_from_bytes`](crate::utils::conversion::fields_as_bytes::try_decode_fields_from_bytes)\n/// for a non-panicking variant.\npub fn decode_fields_from_bytes<let N: u32>(bytes: BoundedVec<u8, N>) -> BoundedVec<Field, N / 32> {\n    assert(bytes.len() % 32 == 0, \"Input length must be a multiple of 32\");\n    try_decode_fields_from_bytes(bytes).expect(f\"Value does not fit in field\")\n}\n\n/// Decodes bytes back into fields, returning None on failure.\n///\n/// Inverse of\n/// [`encode_fields_as_bytes`](crate::utils::conversion::fields_as_bytes::encode_fields_as_bytes).\n/// Returns `Option::none()` if the input length is not a multiple of 32, or if any 32-byte chunk is `>=` the BN254\n/// field modulus.\npub fn try_decode_fields_from_bytes<let N: u32>(bytes: BoundedVec<u8, N>) -> Option<BoundedVec<Field, N / 32>> {\n    if bytes.len() % 32 == 0 {\n        let num_chunks = bytes.len() / 32;\n        let mut fields: BoundedVec<Field, N / 32> = BoundedVec::new();\n        for i in 0..num_chunks {\n            let maybe_field = try_decode_field_from_bytes(bytes, i * 32);\n            if maybe_field.is_some() {\n                fields.push(maybe_field.unwrap());\n            }\n        }\n        if fields.len() == num_chunks {\n            Option::some(fields)\n        } else {\n            Option::none()\n        }\n    } else {\n        Option::none()\n    }\n}\n\nfn try_decode_field_from_bytes<let N: u32>(bytes: BoundedVec<u8, N>, offset: u32) -> Option<Field> {\n    // Field arithmetic silently wraps values >= the modulus, so we compare each chunk against the modulus\n    // byte-by-byte (big-endian) while building `field`. cmp: 0 = equal so far, 1 = less than modulus, 2 = exceeds.\n    let p = std::field::modulus_be_bytes();\n    let mut field = 0;\n    let mut cmp: u8 = 0;\n    for j in 0..32 {\n        let byte = bytes.get(offset + j);\n        field = field * 256 + byte as Field;\n        if cmp == 0 {\n            if byte < p[j] {\n                cmp = 1;\n            } else if byte > p[j] {\n                cmp = 2;\n            }\n        }\n    }\n\n    if cmp == 1 {\n        Option::some(field)\n    } else {\n        Option::none()\n    }\n}\n\nmod tests {\n    use crate::utils::array::subarray;\n    use super::{decode_fields_from_bytes, encode_fields_as_bytes, try_decode_fields_from_bytes};\n\n    #[test]\n    unconstrained fn round_trips_fields(input: [Field; 3]) {\n        let bytes = encode_fields_as_bytes(input);\n\n        // In production the bytes fly through the system and arrive as a BoundedVec on the other end. 113 is an\n        // arbitrary max length larger than the input length of 96.\n        let bytes_bvec = BoundedVec::<_, 113>::from_array(bytes);\n        let fields_back = try_decode_fields_from_bytes(bytes_bvec).unwrap();\n\n        assert_eq(fields_back.len(), input.len());\n        assert_eq(subarray(fields_back.storage(), 0), input);\n    }\n\n    #[test]\n    unconstrained fn try_decode_returns_none_on_length_not_multiple_of_32() {\n        let input = BoundedVec::<_, 64>::from_parts([0 as u8; 64], 33);\n        assert(try_decode_fields_from_bytes(input).is_none());\n    }\n\n    #[test]\n    unconstrained fn try_decode_accepts_max_field() {\n        // -1 in field arithmetic wraps to `modulus - 1`, the largest valid field value.\n        let max_field_as_bytes: [u8; 32] = (-1).to_be_bytes();\n        let input = BoundedVec::<_, 32>::from_array(max_field_as_bytes);\n\n        let fields = try_decode_fields_from_bytes(input).unwrap();\n\n        assert_eq(fields.get(0), -1);\n    }\n\n    // Verifies the overflow check: take the max allowed value, bump a random byte, feed it in.\n    #[test]\n    unconstrained fn try_decode_returns_none_on_chunk_above_modulus(random_value: u8) {\n        let index_of_byte_to_bump = random_value % 32;\n        let max_field_value_as_bytes: [u8; 32] = (-1).to_be_bytes();\n        let byte_to_bump = max_field_value_as_bytes[index_of_byte_to_bump as u32];\n\n        // Skip if the selected byte is already 255. Acceptable under fuzz testing.\n        if byte_to_bump != 255 {\n            let mut input = BoundedVec::<_, 32>::from_array(max_field_value_as_bytes);\n            input.set(index_of_byte_to_bump as u32, byte_to_bump + 1);\n\n            assert(try_decode_fields_from_bytes(input).is_none());\n        }\n    }\n\n    #[test]\n    unconstrained fn try_decode_returns_none_on_chunk_equal_to_modulus() {\n        // The field modulus itself is not a valid field value (it wraps to 0).\n        let p: [u8; 32] = std::field::modulus_be_bytes().as_array();\n        let input = BoundedVec::<u8, 32>::from_array(p);\n        assert(try_decode_fields_from_bytes(input).is_none());\n    }\n\n    #[test(should_fail_with = \"Input length must be a multiple of 32\")]\n    unconstrained fn decode_asserts_length_multiple_of_32() {\n        let input = BoundedVec::<_, 143>::from_array([\n            1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,\n            30, 31, 32, 33,\n        ]);\n        let _fields = decode_fields_from_bytes(input);\n    }\n\n    #[test(should_fail_with = \"Value does not fit in field\")]\n    unconstrained fn decode_panics_on_chunk_above_modulus(random_value: u8) {\n        let index_of_byte_to_bump = random_value % 32;\n        let max_field_value_as_bytes: [u8; 32] = (-1).to_be_bytes();\n        let byte_to_bump = max_field_value_as_bytes[index_of_byte_to_bump as u32];\n\n        if byte_to_bump != 255 {\n            let mut input = BoundedVec::<_, 32>::from_array(max_field_value_as_bytes);\n            input.set(index_of_byte_to_bump as u32, byte_to_bump + 1);\n            let _fields = decode_fields_from_bytes(input);\n        }\n    }\n}\n"
    },
    "286": {
      "function_locations": [
        {
          "name": "get_sign_of_point",
          "start": 514
        },
        {
          "name": "point_from_x_coord",
          "start": 1424
        },
        {
          "name": "point_from_x_coord_and_sign",
          "start": 2161
        },
        {
          "name": "test::test_point_from_x_coord_and_sign",
          "start": 2776
        },
        {
          "name": "test::test_point_from_x_coord_valid",
          "start": 3607
        },
        {
          "name": "test::test_point_from_x_coord_invalid",
          "start": 4049
        },
        {
          "name": "test::test_both_roots_satisfy_curve",
          "start": 4311
        },
        {
          "name": "test::test_point_from_x_coord_and_sign_invalid",
          "start": 4886
        },
        {
          "name": "test::test_get_sign_of_point",
          "start": 5297
        },
        {
          "name": "test::test_point_from_x_coord_zero",
          "start": 6383
        },
        {
          "name": "test::test_bn254_fr_modulus_div_2",
          "start": 6628
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/point.nr",
      "source": "use crate::protocol::{point::EmbeddedCurvePoint, utils::field::sqrt};\n\n// I am storing the modulus minus 1 divided by 2 here because full modulus would throw \"String literal too large\" error\n// Full modulus is 21888242871839275222246405745257275088548364400416034343698204186575808495617\nglobal BN254_FR_MODULUS_DIV_2: Field = 10944121435919637611123202872628637544274182200208017171849102093287904247808;\n\n/// Returns: true if p.y <= MOD_DIV_2, else false.\npub fn get_sign_of_point(p: EmbeddedCurvePoint) -> bool {\n    // We store only a \"sign\" of the y coordinate because the rest can be derived from the x coordinate. To get the\n    // sign we check if the y coordinate is less or equal than the field's modulus minus 1 divided by 2. Ideally we'd\n    // do `y <= MOD_DIV_2`, but there's no `lte` function, so instead we do `!(y > MOD_DIV_2)`, which is equivalent,\n    // and then rewrite that as `!(MOD_DIV_2 < y)`, since we also have no `gt` function.\n    !BN254_FR_MODULUS_DIV_2.lt(p.y)\n}\n\n/// Returns an `EmbeddedCurvePoint` in the Grumpkin curve given its x coordinate.\n///\n/// Because not all values in the field are valid x coordinates of points in the curve (i.e. there is no corresponding\n/// y value in the field that satisfies the curve equation), it may not be possible to reconstruct a `Point`.\n/// `Option::none()` is returned in such cases.\npub fn point_from_x_coord(x: Field) -> Option<EmbeddedCurvePoint> {\n    // y ^ 2 = x ^ 3 - 17\n    let rhs = x * x * x - 17;\n    sqrt(rhs).map(|y| EmbeddedCurvePoint { x, y })\n}\n\n/// Returns an `EmbeddedCurvePoint` in the Grumpkin curve given its x coordinate and sign for the y coordinate.\n///\n/// Because not all values in the field are valid x coordinates of points in the curve (i.e. there is no corresponding\n/// y value in the field that satisfies the curve equation), it may not be possible to reconstruct a `Point`.\n/// `Option::none()` is returned in such cases.\n///\n/// @param x - The x coordinate of the point @param sign - The \"sign\" of the y coordinate - determines whether y <=\n/// (Fr.MODULUS - 1) / 2\npub fn point_from_x_coord_and_sign(x: Field, sign: bool) -> Option<EmbeddedCurvePoint> {\n    // y ^ 2 = x ^ 3 - 17\n    let rhs = x * x * x - 17;\n\n    sqrt(rhs).map(|y| {\n        // If there is a square root, we need to ensure it has the correct \"sign\"\n        let y_is_positive = !BN254_FR_MODULUS_DIV_2.lt(y);\n        let final_y = if y_is_positive == sign { y } else { -y };\n        EmbeddedCurvePoint { x, y: final_y }\n    })\n}\n\nmod test {\n    use crate::protocol::point::EmbeddedCurvePoint;\n    use crate::utils::point::{\n        BN254_FR_MODULUS_DIV_2, get_sign_of_point, point_from_x_coord, point_from_x_coord_and_sign,\n    };\n\n    #[test]\n    unconstrained fn test_point_from_x_coord_and_sign() {\n        // Test positive y coordinate\n        let x = 0x1af41f5de96446dc3776a1eb2d98bb956b7acd9979a67854bec6fa7c2973bd73;\n        let sign = true;\n        let p = point_from_x_coord_and_sign(x, sign).unwrap();\n\n        assert_eq(p.x, x);\n        assert_eq(p.y, 0x07fc22c7f2c7057571f137fe46ea9c95114282bc95d37d71ec4bfb88de457d4a);\n        assert_eq(p.is_infinite(), false);\n\n        // Test negative y coordinate\n        let x2 = 0x247371652e55dd74c9af8dbe9fb44931ba29a9229994384bd7077796c14ee2b5;\n        let sign2 = false;\n        let p2 = point_from_x_coord_and_sign(x2, sign2).unwrap();\n\n        assert_eq(p2.x, x2);\n        assert_eq(p2.y, 0x26441aec112e1ae4cee374f42556932001507ad46e255ffb27369c7e3766e5c0);\n        assert_eq(p2.is_infinite(), false);\n    }\n\n    #[test]\n    unconstrained fn test_point_from_x_coord_valid() {\n        // x = 8 is a known quadratic residue - should give a valid point\n        let result = point_from_x_coord(Field::from(8));\n        assert(result.is_some());\n\n        let point = result.unwrap();\n        assert_eq(point.x, Field::from(8));\n        // Check curve equation y^2 = x^3 - 17\n        assert_eq(point.y * point.y, point.x * point.x * point.x - 17);\n    }\n\n    #[test]\n    unconstrained fn test_point_from_x_coord_invalid() {\n        // x = 3 is a non-residue for this curve - should give None\n        let x = Field::from(3);\n        let maybe_point = point_from_x_coord(x);\n        assert(maybe_point.is_none());\n    }\n\n    #[test]\n    unconstrained fn test_both_roots_satisfy_curve() {\n        // Derive a point from x = 8 (known to be valid from test_point_from_x_coord_valid)\n        let x: Field = 8;\n        let point = point_from_x_coord(x).unwrap();\n\n        // Check y satisfies curve equation\n        assert_eq(point.y * point.y, x * x * x - 17);\n\n        // Check -y also satisfies curve equation\n        let neg_y = 0 - point.y;\n        assert_eq(neg_y * neg_y, x * x * x - 17);\n\n        // Verify they are different (unless y = 0)\n        assert(point.y != neg_y);\n    }\n\n    #[test]\n    unconstrained fn test_point_from_x_coord_and_sign_invalid() {\n        // x = 3 has no valid point on the curve (from test_point_from_x_coord_invalid)\n        let x = Field::from(3);\n        let result_positive = point_from_x_coord_and_sign(x, true);\n        let result_negative = point_from_x_coord_and_sign(x, false);\n\n        assert(result_positive.is_none());\n        assert(result_negative.is_none());\n    }\n\n    #[test]\n    unconstrained fn test_get_sign_of_point() {\n        // Derive a point from x = 8, then test both possible y values\n        let point = point_from_x_coord(8).unwrap();\n        let neg_point = EmbeddedCurvePoint { x: point.x, y: 0 - point.y };\n\n        // One should be \"positive\" (y <= MOD_DIV_2) and one \"negative\"\n        let sign1 = get_sign_of_point(point);\n        let sign2 = get_sign_of_point(neg_point);\n        assert(sign1 != sign2);\n\n        // y = 0 should return true (0 <= MOD_DIV_2)\n        let zero_y_point = EmbeddedCurvePoint { x: 0, y: 0 };\n        assert(get_sign_of_point(zero_y_point) == true);\n\n        // y = MOD_DIV_2 should return true (exactly at boundary)\n        let boundary_point = EmbeddedCurvePoint { x: 0, y: BN254_FR_MODULUS_DIV_2 };\n        assert(get_sign_of_point(boundary_point) == true);\n\n        // y = MOD_DIV_2 + 1 should return false (just over boundary)\n        let over_boundary_point = EmbeddedCurvePoint { x: 0, y: BN254_FR_MODULUS_DIV_2 + 1 };\n        assert(get_sign_of_point(over_boundary_point) == false);\n    }\n\n    #[test]\n    unconstrained fn test_point_from_x_coord_zero() {\n        // x = 0: y^2 = 0^3 - 17 = -17, which is not a quadratic residue in BN254 scalar field\n        let result = point_from_x_coord(0);\n        assert(result.is_none());\n    }\n\n    #[test]\n    unconstrained fn test_bn254_fr_modulus_div_2() {\n        // Verify that BN254_FR_MODULUS_DIV_2 == (p - 1) / 2 This means: 2 * BN254_FR_MODULUS_DIV_2 + 1 == p == 0 (in\n        // the field)\n        assert_eq(2 * BN254_FR_MODULUS_DIV_2 + 1, 0);\n    }\n\n}\n"
    },
    "287": {
      "function_locations": [
        {
          "name": "remove_constraints",
          "start": 240
        },
        {
          "name": "remove_constraints_if",
          "start": 579
        },
        {
          "name": "test::return_unit",
          "start": 1152
        },
        {
          "name": "test::return_field",
          "start": 1203
        },
        {
          "name": "test::returns_unit",
          "start": 1256
        },
        {
          "name": "test::returns_original_value",
          "start": 1488
        },
        {
          "name": "test::returns_unit_unconstrained",
          "start": 1740
        },
        {
          "name": "test::returns_original_value_unconstrained",
          "start": 1955
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/utils/remove_constraints.nr",
      "source": "/// Calls a function and returns its return value, but removes any constraints associated with calling the function,\n/// behaving as if the function was unconstrained.\npub unconstrained fn remove_constraints<Env, T>(f: fn[Env]() -> T) -> T {\n    f()\n}\n\n/// Calls a function and returns its return value, removing any constraints associated with calling the function if\n/// `condition` is true, behaving as if the function was unconstrained.\n///\n/// Requires `condition` to be a compile time constant.\npub fn remove_constraints_if<Env, T>(condition: bool, f: fn[Env]() -> T) -> T {\n    // If `condition` is not a compile-time constant, then the compiler won't optimize away the branch not taken in the\n    // if statement below, and we may end up with constraints for `f` regardless of the runtime value of `condition`.\n    assert_constant(condition);\n\n    if condition {\n        // Safety: the purpose of this function is to execute `f` with no constraints when `condition` is true.\n        unsafe {\n            remove_constraints(f)\n        }\n    } else {\n        f()\n    }\n}\n\nmod test {\n    use super::remove_constraints;\n\n    fn return_unit() -> () {\n        ()\n    }\n\n    fn return_field() -> Field {\n        5\n    }\n\n    #[test]\n    fn returns_unit() {\n        let expected = return_unit();\n        // Safety: this is a test\n        let actual = unsafe { remove_constraints(|| return_unit()) };\n        assert_eq(actual, expected);\n    }\n\n    #[test]\n    fn returns_original_value() {\n        let expected = return_field();\n        // Safety: this is a test\n        let actual = unsafe { remove_constraints(|| return_field()) };\n        assert_eq(actual, expected);\n    }\n\n    #[test]\n    unconstrained fn returns_unit_unconstrained() {\n        let expected = return_unit();\n        let actual = remove_constraints(|| return_unit());\n        assert_eq(actual, expected);\n    }\n\n    #[test]\n    unconstrained fn returns_original_value_unconstrained() {\n        let expected = return_field();\n        let actual = remove_constraints(|| return_field());\n        assert_eq(actual, expected);\n    }\n}\n"
    },
    "296": {
      "function_locations": [
        {
          "name": "Poseidon2::hash",
          "start": 333
        },
        {
          "name": "Poseidon2::new",
          "start": 442
        },
        {
          "name": "Poseidon2::perform_duplex",
          "start": 649
        },
        {
          "name": "Poseidon2::absorb",
          "start": 923
        },
        {
          "name": "Poseidon2::squeeze",
          "start": 1453
        },
        {
          "name": "Poseidon2::hash_internal",
          "start": 1814
        },
        {
          "name": "<impl Hasher for Poseidon2Hasher>::finish",
          "start": 4105
        },
        {
          "name": "<impl Hasher for Poseidon2Hasher>::write",
          "start": 4426
        },
        {
          "name": "<impl Default for Poseidon2Hasher>::default",
          "start": 4549
        }
      ],
      "path": "/home/aztec-dev/nargo/github.com/noir-lang/poseidon/v0.3.0/src/poseidon2.nr",
      "source": "use std::default::Default;\nuse std::hash::Hasher;\n\nglobal RATE: u32 = 3;\n\npub struct Poseidon2 {\n    cache: [Field; 3],\n    state: [Field; 4],\n    cache_size: u32,\n    squeeze_mode: bool, // 0 => absorb, 1 => squeeze\n}\n\nimpl Poseidon2 {\n    #[no_predicates]\n    pub fn hash<let N: u32>(input: [Field; N], message_size: u32) -> Field {\n        Poseidon2::hash_internal(input, message_size)\n    }\n\n    pub(crate) fn new(iv: Field) -> Poseidon2 {\n        let mut result =\n            Poseidon2 { cache: [0; 3], state: [0; 4], cache_size: 0, squeeze_mode: false };\n        result.state[RATE] = iv;\n        result\n    }\n\n    fn perform_duplex(&mut self) {\n        // add the cache into sponge state\n        self.state[0] += self.cache[0];\n        self.state[1] += self.cache[1];\n        self.state[2] += self.cache[2];\n        self.state = crate::poseidon2_permutation(self.state);\n    }\n\n    fn absorb(&mut self, input: Field) {\n        assert(!self.squeeze_mode);\n        if self.cache_size == RATE {\n            // If we're absorbing, and the cache is full, apply the sponge permutation to compress the cache\n            self.perform_duplex();\n            self.cache[0] = input;\n            self.cache_size = 1;\n        } else {\n            // If we're absorbing, and the cache is not full, add the input into the cache\n            self.cache[self.cache_size] = input;\n            self.cache_size += 1;\n        }\n    }\n\n    fn squeeze(&mut self) -> Field {\n        assert(!self.squeeze_mode);\n        // If we're in absorb mode, apply sponge permutation to compress the cache.\n        self.perform_duplex();\n        self.squeeze_mode = true;\n\n        // Pop one item off the top of the permutation and return it.\n        self.state[0]\n    }\n\n    fn hash_internal<let N: u32>(input: [Field; N], in_len: u32) -> Field {\n        let two_pow_64 = 18446744073709551616;\n        let iv: Field = (in_len as Field) * two_pow_64;\n        let mut state = [0; 4];\n        state[RATE] = iv;\n\n        if std::runtime::is_unconstrained() {\n            for i in 0..(in_len / RATE) {\n                state[0] += input[i * RATE];\n                state[1] += input[i * RATE + 1];\n                state[2] += input[i * RATE + 2];\n                state = crate::poseidon2_permutation(state);\n            }\n\n            // handle remaining elements after last full RATE-sized chunk\n            let num_extra_fields = in_len % RATE;\n            if num_extra_fields != 0 {\n                let remainder_start = in_len - num_extra_fields;\n                state[0] += input[remainder_start];\n                if num_extra_fields > 1 {\n                    state[1] += input[remainder_start + 1];\n                }\n            }\n        } else {\n            let mut states: [[Field; 4]; N / RATE + 1] = [[0; 4]; N / RATE + 1];\n            states[0] = state;\n\n            // process all full RATE-sized chunks, storing state after each permutation\n            for chunk_idx in 0..(N / RATE) {\n                for i in 0..RATE {\n                    state[i] += input[chunk_idx * RATE + i];\n                }\n                state = crate::poseidon2_permutation(state);\n                states[chunk_idx + 1] = state;\n            }\n\n            // get state at the last full block before in_len\n            let first_partially_filled_chunk = in_len / RATE;\n            state = states[first_partially_filled_chunk];\n\n            // handle remaining elements after last full RATE-sized chunk\n            let remainder_start = (in_len / RATE) * RATE;\n            for j in 0..RATE {\n                let idx = remainder_start + j;\n                if idx < in_len {\n                    state[j] += input[idx];\n                }\n            }\n        }\n\n        // always run final permutation unless we just completed a full chunk\n        // still need to permute once if in_len is 0\n        if (in_len == 0) | (in_len % RATE != 0) {\n            state = crate::poseidon2_permutation(state);\n        };\n\n        state[0]\n    }\n}\n\npub struct Poseidon2Hasher {\n    _state: [Field],\n}\n\nimpl Hasher for Poseidon2Hasher {\n    fn finish(self) -> Field {\n        let iv: Field = (self._state.len() as Field) * 18446744073709551616; // iv = (self._state.len() << 64)\n        let mut sponge = Poseidon2::new(iv);\n        for i in 0..self._state.len() {\n            sponge.absorb(self._state[i]);\n        }\n        sponge.squeeze()\n    }\n\n    fn write(&mut self, input: Field) {\n        self._state = self._state.push_back(input);\n    }\n}\n\nimpl Default for Poseidon2Hasher {\n    fn default() -> Self {\n        Poseidon2Hasher { _state: @[] }\n    }\n}\n"
    },
    "3": {
      "function_locations": [
        {
          "name": "[T; N]::len",
          "start": 480
        },
        {
          "name": "[T; N]::as_vector",
          "start": 735
        },
        {
          "name": "[T; N]::as_slice",
          "start": 1112
        },
        {
          "name": "[T; N]::map",
          "start": 1443
        },
        {
          "name": "[T; N]::mapi",
          "start": 2004
        },
        {
          "name": "[T; N]::for_each",
          "start": 2552
        },
        {
          "name": "[T; N]::for_eachi",
          "start": 2970
        },
        {
          "name": "[T; N]::fold",
          "start": 3837
        },
        {
          "name": "[T; N]::reduce",
          "start": 4355
        },
        {
          "name": "[T; N]::all",
          "start": 4865
        },
        {
          "name": "[T; N]::any",
          "start": 5338
        },
        {
          "name": "[T; N]::concat",
          "start": 5881
        },
        {
          "name": "[T; N]::sort",
          "start": 6778
        },
        {
          "name": "[T; N]::sort_via",
          "start": 7794
        },
        {
          "name": "[u8; N]::as_str_unchecked",
          "start": 8944
        },
        {
          "name": "<impl From<str<N>> for [u8; N]>::from",
          "start": 9071
        },
        {
          "name": "test::map_empty",
          "start": 9145
        },
        {
          "name": "test::sort_u32",
          "start": 10255
        },
        {
          "name": "test::test_sort",
          "start": 10310
        },
        {
          "name": "test::test_sort_empty",
          "start": 10536
        },
        {
          "name": "test::test_sort_via_empty",
          "start": 10682
        },
        {
          "name": "test::test_sort_100_values",
          "start": 10841
        },
        {
          "name": "test::test_sort_100_values_comptime",
          "start": 12009
        },
        {
          "name": "test::test_sort_via",
          "start": 12154
        },
        {
          "name": "test::test_sort_via_100_values",
          "start": 12401
        },
        {
          "name": "test::mapi_empty",
          "start": 13562
        },
        {
          "name": "test::for_each_empty",
          "start": 13657
        },
        {
          "name": "test::for_eachi_empty",
          "start": 13795
        },
        {
          "name": "test::map_example",
          "start": 13934
        },
        {
          "name": "test::mapi_example",
          "start": 14071
        },
        {
          "name": "test::for_each_example",
          "start": 14220
        },
        {
          "name": "test::for_eachi_example",
          "start": 14560
        },
        {
          "name": "test::concat",
          "start": 14771
        },
        {
          "name": "test::concat_zero_length_with_something",
          "start": 15030
        },
        {
          "name": "test::concat_something_with_zero_length",
          "start": 15233
        },
        {
          "name": "test::concat_zero_lengths",
          "start": 15422
        },
        {
          "name": "test::test_fold",
          "start": 15623
        },
        {
          "name": "test::test_reduce",
          "start": 15788
        },
        {
          "name": "test::test_reduce_failure_on_empty_array",
          "start": 15999
        },
        {
          "name": "test::test_all",
          "start": 16147
        },
        {
          "name": "test::test_any",
          "start": 16296
        },
        {
          "name": "test::test_to_string",
          "start": 16451
        },
        {
          "name": "test::test_bytes_from_string",
          "start": 16597
        }
      ],
      "path": "std/array/mod.nr",
      "source": "use crate::cmp::{Eq, Ord};\nuse crate::convert::From;\nuse crate::runtime::is_unconstrained;\n\nmod check_shuffle;\nmod quicksort;\n\nimpl<T, let N: u32> [T; N] {\n    /// Returns the length of this array.\n    ///\n    /// ```noir\n    /// fn len(self) -> Field\n    /// ```\n    ///\n    /// example\n    ///\n    /// ```noir\n    /// fn main() {\n    ///     let array = [42, 42];\n    ///     assert(array.len() == 2);\n    /// }\n    /// ```\n    #[builtin(array_len)]\n    pub fn len(self) -> u32 {}\n\n    /// Returns this array as a vector.\n    ///\n    /// ```noir\n    /// let array = [1, 2];\n    /// let vector = array.as_vector();\n    /// assert_eq(vector, [1, 2].as_vector());\n    /// ```\n    #[builtin(as_vector)]\n    pub fn as_vector(self) -> [T] {}\n\n    /// Returns this array as a vector.\n    /// This method is deprecated in favor of `as_vector`.\n    ///\n    /// ```noir\n    /// let array = [1, 2];\n    /// let vector = array.as_slice();\n    /// assert_eq(vector, [1, 2].as_vector());\n    /// ```\n    #[builtin(as_vector)]\n    #[deprecated(\"This method has been renamed to `as_vector`\")]\n    pub fn as_slice(self) -> [T] {}\n\n    /// Applies a function to each element of this array, returning a new array containing the mapped elements.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// let a = [1, 2, 3];\n    /// let b = a.map(|a| a * 2);\n    /// assert_eq(b, [2, 4, 6]);\n    /// ```\n    pub fn map<U, Env>(&self, f: fn[Env](T) -> U) -> [U; N] {\n        let uninitialized = crate::mem::zeroed();\n        let mut ret = [uninitialized; N];\n\n        for i in 0..self.len() {\n            ret[i] = f(self[i]);\n        }\n\n        ret\n    }\n\n    /// Applies a function to each element of this array along with its index,\n    /// returning a new array containing the mapped elements.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// let a = [1, 2, 3];\n    /// let b = a.mapi(|i, a| i + a * 2);\n    /// assert_eq(b, [2, 5, 8]);\n    /// ```\n    pub fn mapi<U, Env>(&self, f: fn[Env](u32, T) -> U) -> [U; N] {\n        let uninitialized = crate::mem::zeroed();\n        let mut ret = [uninitialized; N];\n\n        for i in 0..self.len() {\n            ret[i] = f(i, self[i]);\n        }\n\n        ret\n    }\n\n    /// Applies a function to each element of this array.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// let a = [1, 2, 3];\n    /// let mut b = [0; 3];\n    /// let mut i = 0;\n    /// a.for_each(|x| {\n    ///     b[i] = x;\n    ///     i += 1;\n    /// });\n    /// assert_eq(a, b);\n    /// ```\n    pub fn for_each<Env>(&self, f: fn[Env](T) -> ()) {\n        for i in 0..self.len() {\n            f(self[i]);\n        }\n    }\n\n    /// Applies a function to each element of this array along with its index.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// let a = [1, 2, 3];\n    /// let mut b = [0; 3];\n    /// a.for_eachi(|i, x| {\n    ///     b[i] = x;\n    /// });\n    /// assert_eq(a, b);\n    /// ```\n    pub fn for_eachi<Env>(&self, f: fn[Env](u32, T) -> ()) {\n        for i in 0..self.len() {\n            f(i, self[i]);\n        }\n    }\n\n    /// Applies a function to each element of the array, returning the final accumulated value. The first\n    /// parameter is the initial value.\n    ///\n    /// This is a left fold, so the given function will be applied to the accumulator and first element of\n    /// the array, then the second, and so on. For a given call the expected result would be equivalent to:\n    ///\n    /// ```rust\n    /// let a1 = [1];\n    /// let a2 = [1, 2];\n    /// let a3 = [1, 2, 3];\n    ///\n    /// let f = |a, b| a - b;\n    /// a1.fold(10, f); //=> f(10, 1)\n    /// a2.fold(10, f); //=> f(f(10, 1), 2)\n    /// a3.fold(10, f); //=> f(f(f(10, 1), 2), 3)\n    ///\n    /// assert_eq(a3.fold(10, f), 10 - 1 - 2 - 3);\n    /// ```\n    pub fn fold<U, Env>(&self, mut accumulator: U, f: fn[Env](U, T) -> U) -> U {\n        for elem in self {\n            accumulator = f(accumulator, elem);\n        }\n        accumulator\n    }\n\n    /// Same as fold, but uses the first element as the starting element.\n    ///\n    /// Requires the input array to be non-empty.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn main() {\n    ///     let arr = [1, 2, 3, 4];\n    ///     let reduced = arr.reduce(|a, b| a + b);\n    ///     assert(reduced == 10);\n    /// }\n    /// ```\n    pub fn reduce<Env>(&self, f: fn[Env](T, T) -> T) -> T {\n        let mut accumulator = self[0];\n        for i in 1..self.len() {\n            accumulator = f(accumulator, self[i]);\n        }\n        accumulator\n    }\n\n    /// Returns true if all the elements in this array satisfy the given predicate.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn main() {\n    ///     let arr = [2, 2, 2, 2, 2];\n    ///     let all = arr.all(|a| a == 2);\n    ///     assert(all);\n    /// }\n    /// ```\n    pub fn all<Env>(&self, predicate: fn[Env](T) -> bool) -> bool {\n        let mut ret = true;\n        for elem in self {\n            ret &= predicate(elem);\n        }\n        ret\n    }\n\n    /// Returns true if any of the elements in this array satisfy the given predicate.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn main() {\n    ///     let arr = [2, 2, 2, 2, 5];\n    ///     let any = arr.any(|a| a == 5);\n    ///     assert(any);\n    /// }\n    /// ```\n    pub fn any<Env>(&self, predicate: fn[Env](T) -> bool) -> bool {\n        let mut ret = false;\n        for elem in self {\n            ret |= predicate(elem);\n        }\n        ret\n    }\n\n    /// Concatenates this array with another array.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn main() {\n    ///     let arr1 = [1, 2, 3, 4];\n    ///     let arr2 = [6, 7, 8, 9, 10, 11];\n    ///     let concatenated_arr = arr1.concat(arr2);\n    ///     assert(concatenated_arr == [1, 2, 3, 4, 6, 7, 8, 9, 10, 11]);\n    /// }\n    /// ```\n    pub fn concat<let M: u32>(&self, array2: [T; M]) -> [T; N + M] {\n        let mut result = [crate::mem::zeroed(); N + M];\n        for i in 0..N {\n            result[i] = self[i];\n        }\n        for i in 0..M {\n            result[i + N] = array2[i];\n        }\n        result\n    }\n}\n\nimpl<T, let N: u32> [T; N]\nwhere\n    T: Ord + Eq,\n{\n    /// Returns a new sorted array. The original array remains untouched. Notice that this function will\n    /// only work for arrays of fields or integers, not for any arbitrary type. This is because the sorting\n    /// logic it uses internally is optimized specifically for these values. If you need a sort function to\n    /// sort any type, you should use the [`Self::sort_via`] function.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// fn main() {\n    ///     let arr = [42, 32];\n    ///     let sorted = arr.sort();\n    ///     assert(sorted == [32, 42]);\n    /// }\n    /// ```\n    pub fn sort(&self) -> Self {\n        self.sort_via(|a, b| a <= b)\n    }\n}\n\nimpl<T, let N: u32> [T; N]\nwhere\n    T: Eq,\n{\n    /// Returns a new sorted array by sorting it with a custom comparison function.\n    /// The original array remains untouched.\n    /// The ordering function must return true if the first argument should be sorted to be before the second argument or is equal to the second argument.\n    ///\n    /// Using this method with an operator like `<` that does not return `true` for equal values will result in an assertion failure for arrays with equal elements.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// fn main() {\n    ///     let arr = [42, 32]\n    ///     let sorted_ascending = arr.sort_via(|a, b| a <= b);\n    ///     assert(sorted_ascending == [32, 42]); // verifies\n    ///\n    ///     let sorted_descending = arr.sort_via(|a, b| a >= b);\n    ///     assert(sorted_descending == [32, 42]); // does not verify\n    /// }\n    /// ```\n    pub fn sort_via<Env>(&self, ordering: fn[Env](T, T) -> bool) -> Self {\n        if N != 0 {\n            // Safety: `sorted` array is checked to be:\n            // a. a permutation of `input`'s elements\n            // b. satisfying the predicate `ordering`\n            let sorted = unsafe { quicksort::quicksort(self, ordering) };\n\n            if !is_unconstrained() {\n                for i in 0..N - 1 {\n                    assert(\n                        ordering(sorted[i], sorted[i + 1]),\n                        \"Array has not been sorted correctly according to `ordering`.\",\n                    );\n                }\n                check_shuffle::check_shuffle(self, &sorted);\n            }\n            sorted\n        } else {\n            *self\n        }\n    }\n}\n\nimpl<let N: u32> [u8; N] {\n    /// Converts a byte array of type `[u8; N]` to a string. Note that this performs no UTF-8 validation -\n    /// the given array is interpreted as-is as a string.\n    ///\n    /// Example:\n    ///\n    /// ```rust\n    /// fn main() {\n    ///     let hi = [104, 105].as_str_unchecked();\n    ///     assert_eq(hi, \"hi\");\n    /// }\n    /// ```\n    #[builtin(array_as_str_unchecked)]\n    pub fn as_str_unchecked(self) -> str<N> {}\n}\n\nimpl<let N: u32> From<str<N>> for [u8; N] {\n    /// Returns an array of the string bytes.\n    fn from(s: str<N>) -> Self {\n        s.as_bytes()\n    }\n}\n\nmod test {\n    #[test]\n    fn map_empty() {\n        assert_eq([].map(|x| x + 1), []);\n    }\n\n    global arr_with_100_values: [u32; 100] = [\n        42, 123, 87, 93, 48, 80, 50, 5, 104, 84, 70, 47, 119, 66, 71, 121, 3, 29, 42, 118, 2, 54,\n        89, 44, 81, 0, 26, 106, 68, 96, 84, 48, 95, 54, 45, 32, 89, 100, 109, 19, 37, 41, 19, 98,\n        53, 114, 107, 66, 6, 74, 13, 19, 105, 64, 123, 28, 44, 50, 89, 58, 123, 126, 21, 43, 86, 35,\n        21, 62, 82, 0, 108, 120, 72, 72, 62, 80, 12, 71, 70, 86, 116, 73, 38, 15, 127, 81, 30, 8,\n        125, 28, 26, 69, 114, 63, 27, 28, 61, 42, 13, 32,\n    ];\n    global expected_with_100_values: [u32; 100] = [\n        0, 0, 2, 3, 5, 6, 8, 12, 13, 13, 15, 19, 19, 19, 21, 21, 26, 26, 27, 28, 28, 28, 29, 30, 32,\n        32, 35, 37, 38, 41, 42, 42, 42, 43, 44, 44, 45, 47, 48, 48, 50, 50, 53, 54, 54, 58, 61, 62,\n        62, 63, 64, 66, 66, 68, 69, 70, 70, 71, 71, 72, 72, 73, 74, 80, 80, 81, 81, 82, 84, 84, 86,\n        86, 87, 89, 89, 89, 93, 95, 96, 98, 100, 104, 105, 106, 107, 108, 109, 114, 114, 116, 118,\n        119, 120, 121, 123, 123, 123, 125, 126, 127,\n    ];\n    fn sort_u32(a: u32, b: u32) -> bool {\n        a <= b\n    }\n\n    #[test]\n    fn test_sort() {\n        let arr: [u32; 7] = [3, 6, 8, 10, 1, 2, 1];\n\n        let sorted = arr.sort();\n\n        let expected: [u32; 7] = [1, 1, 2, 3, 6, 8, 10];\n        assert(sorted == expected);\n    }\n\n    #[test]\n    fn test_sort_empty() {\n        let arr: [u32; 0] = [];\n        let sorted = arr.sort();\n        assert(sorted == arr);\n    }\n\n    #[test]\n    fn test_sort_via_empty() {\n        let arr: [u32; 0] = [];\n        let sorted = arr.sort_via(sort_u32);\n        assert(sorted == arr);\n    }\n\n    #[test]\n    fn test_sort_100_values() {\n        let arr: [u32; 100] = [\n            42, 123, 87, 93, 48, 80, 50, 5, 104, 84, 70, 47, 119, 66, 71, 121, 3, 29, 42, 118, 2,\n            54, 89, 44, 81, 0, 26, 106, 68, 96, 84, 48, 95, 54, 45, 32, 89, 100, 109, 19, 37, 41,\n            19, 98, 53, 114, 107, 66, 6, 74, 13, 19, 105, 64, 123, 28, 44, 50, 89, 58, 123, 126, 21,\n            43, 86, 35, 21, 62, 82, 0, 108, 120, 72, 72, 62, 80, 12, 71, 70, 86, 116, 73, 38, 15,\n            127, 81, 30, 8, 125, 28, 26, 69, 114, 63, 27, 28, 61, 42, 13, 32,\n        ];\n\n        let sorted = arr.sort();\n\n        let expected: [u32; 100] = [\n            0, 0, 2, 3, 5, 6, 8, 12, 13, 13, 15, 19, 19, 19, 21, 21, 26, 26, 27, 28, 28, 28, 29, 30,\n            32, 32, 35, 37, 38, 41, 42, 42, 42, 43, 44, 44, 45, 47, 48, 48, 50, 50, 53, 54, 54, 58,\n            61, 62, 62, 63, 64, 66, 66, 68, 69, 70, 70, 71, 71, 72, 72, 73, 74, 80, 80, 81, 81, 82,\n            84, 84, 86, 86, 87, 89, 89, 89, 93, 95, 96, 98, 100, 104, 105, 106, 107, 108, 109, 114,\n            114, 116, 118, 119, 120, 121, 123, 123, 123, 125, 126, 127,\n        ];\n        assert(sorted == expected);\n    }\n\n    #[test]\n    fn test_sort_100_values_comptime() {\n        let sorted = arr_with_100_values.sort();\n        assert(sorted == expected_with_100_values);\n    }\n\n    #[test]\n    fn test_sort_via() {\n        let arr: [u32; 7] = [3, 6, 8, 10, 1, 2, 1];\n\n        let sorted = arr.sort_via(sort_u32);\n\n        let expected: [u32; 7] = [1, 1, 2, 3, 6, 8, 10];\n        assert(sorted == expected);\n    }\n\n    #[test]\n    fn test_sort_via_100_values() {\n        let arr: [u32; 100] = [\n            42, 123, 87, 93, 48, 80, 50, 5, 104, 84, 70, 47, 119, 66, 71, 121, 3, 29, 42, 118, 2,\n            54, 89, 44, 81, 0, 26, 106, 68, 96, 84, 48, 95, 54, 45, 32, 89, 100, 109, 19, 37, 41,\n            19, 98, 53, 114, 107, 66, 6, 74, 13, 19, 105, 64, 123, 28, 44, 50, 89, 58, 123, 126, 21,\n            43, 86, 35, 21, 62, 82, 0, 108, 120, 72, 72, 62, 80, 12, 71, 70, 86, 116, 73, 38, 15,\n            127, 81, 30, 8, 125, 28, 26, 69, 114, 63, 27, 28, 61, 42, 13, 32,\n        ];\n\n        let sorted = arr.sort_via(sort_u32);\n\n        let expected: [u32; 100] = [\n            0, 0, 2, 3, 5, 6, 8, 12, 13, 13, 15, 19, 19, 19, 21, 21, 26, 26, 27, 28, 28, 28, 29, 30,\n            32, 32, 35, 37, 38, 41, 42, 42, 42, 43, 44, 44, 45, 47, 48, 48, 50, 50, 53, 54, 54, 58,\n            61, 62, 62, 63, 64, 66, 66, 68, 69, 70, 70, 71, 71, 72, 72, 73, 74, 80, 80, 81, 81, 82,\n            84, 84, 86, 86, 87, 89, 89, 89, 93, 95, 96, 98, 100, 104, 105, 106, 107, 108, 109, 114,\n            114, 116, 118, 119, 120, 121, 123, 123, 123, 125, 126, 127,\n        ];\n        assert(sorted == expected);\n    }\n\n    #[test]\n    fn mapi_empty() {\n        assert_eq([].mapi(|i, x| i * x + 1), []);\n    }\n\n    #[test]\n    fn for_each_empty() {\n        let empty_array: [Field; 0] = [];\n        empty_array.for_each(|_x| assert(false));\n    }\n\n    #[test]\n    fn for_eachi_empty() {\n        let empty_array: [Field; 0] = [];\n        empty_array.for_eachi(|_i, _x| assert(false));\n    }\n\n    #[test]\n    fn map_example() {\n        let a = [1, 2, 3];\n        let b = a.map(|a| a * 2);\n        assert_eq(b, [2, 4, 6]);\n    }\n\n    #[test]\n    fn mapi_example() {\n        let a = [1, 2, 3];\n        let b = a.mapi(|i, a| i + a * 2);\n        assert_eq(b, [2, 5, 8]);\n    }\n\n    #[test]\n    fn for_each_example() {\n        let a = [1, 2, 3];\n        let mut b = [0, 0, 0];\n        let b_ref = &mut b;\n        let mut i = 0;\n        let i_ref = &mut i;\n        a.for_each(|x| {\n            b_ref[*i_ref] = x * 2;\n            *i_ref += 1;\n        });\n        assert_eq(b, [2, 4, 6]);\n        assert_eq(i, 3);\n    }\n\n    #[test]\n    fn for_eachi_example() {\n        let a = [1, 2, 3];\n        let mut b = [0, 0, 0];\n        let b_ref = &mut b;\n        a.for_eachi(|i, a| { b_ref[i] = i + a * 2; });\n        assert_eq(b, [2, 5, 8]);\n    }\n\n    #[test]\n    fn concat() {\n        let arr1 = [1, 2, 3, 4];\n        let arr2 = [6, 7, 8, 9, 10, 11];\n        let concatenated_arr = arr1.concat(arr2);\n        assert_eq(concatenated_arr, [1, 2, 3, 4, 6, 7, 8, 9, 10, 11]);\n    }\n\n    #[test]\n    fn concat_zero_length_with_something() {\n        let arr1 = [];\n        let arr2 = [1];\n        let concatenated_arr = arr1.concat(arr2);\n        assert_eq(concatenated_arr, [1]);\n    }\n\n    #[test]\n    fn concat_something_with_zero_length() {\n        let arr1 = [1];\n        let arr2 = [];\n        let concatenated_arr = arr1.concat(arr2);\n        assert_eq(concatenated_arr, [1]);\n    }\n\n    #[test]\n    fn concat_zero_lengths() {\n        let arr1: [Field; 0] = [];\n        let arr2: [Field; 0] = [];\n        let concatenated_arr = arr1.concat(arr2);\n        assert_eq(concatenated_arr, []);\n    }\n\n    #[test]\n    fn test_fold() {\n        let array = [1, 2, 3];\n        let sum_plus_10 = array.fold(10, |x, y| x + y);\n        assert_eq(sum_plus_10, 16);\n    }\n\n    #[test]\n    fn test_reduce() {\n        let array = [1, 2, 3];\n        let sum = array.reduce(|x, y| x + y);\n        assert_eq(sum, 6);\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn test_reduce_failure_on_empty_array() {\n        let array: [Field; 0] = [];\n        let sum = array.reduce(|x, y| x + y);\n        assert_eq(sum, 6);\n    }\n\n    #[test]\n    fn test_all() {\n        let array = [1, 2, 3];\n        assert(array.all(|x| x >= 1));\n        assert(!array.all(|x| x >= 2));\n    }\n\n    #[test]\n    fn test_any() {\n        let array = [1, 2, 3];\n        assert(array.any(|x| x >= 3));\n        assert(!array.any(|x| x >= 4));\n    }\n\n    #[test]\n    fn test_to_string() {\n        let str = [78_u8, 111, 105, 114].as_str_unchecked();\n        assert_eq(str, \"Noir\");\n    }\n\n    #[test]\n    fn test_bytes_from_string() {\n        let bytes: [u8; 4] = crate::convert::From::from(\"Noir\");\n        assert_eq(bytes, [78_u8, 111, 105, 114]);\n    }\n}\n"
    },
    "316": {
      "function_locations": [
        {
          "name": "<impl FromField for FunctionSelector>::from_field",
          "start": 333
        },
        {
          "name": "<impl ToField for FunctionSelector>::to_field",
          "start": 448
        },
        {
          "name": "<impl Empty for FunctionSelector>::empty",
          "start": 544
        },
        {
          "name": "FunctionSelector::from_u32",
          "start": 652
        },
        {
          "name": "FunctionSelector::from_signature",
          "start": 756
        },
        {
          "name": "FunctionSelector::zero",
          "start": 1006
        },
        {
          "name": "test_is_valid_selector",
          "start": 1079
        },
        {
          "name": "test_long_selector",
          "start": 1231
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/abis/function_selector.nr",
      "source": "use crate::traits::{Deserialize, Empty, FromField, Serialize, ToField};\nuse std::meta::derive;\n\n#[derive(Deserialize, Eq, Serialize)]\npub struct FunctionSelector {\n    // Low 32 bits of the poseidon2 hash of the function signature.\n    pub inner: u32,\n}\n\nimpl FromField for FunctionSelector {\n    fn from_field(field: Field) -> Self {\n        Self { inner: field as u32 }\n    }\n}\n\nimpl ToField for FunctionSelector {\n    fn to_field(self) -> Field {\n        self.inner as Field\n    }\n}\n\nimpl Empty for FunctionSelector {\n    fn empty() -> Self {\n        Self { inner: 0 as u32 }\n    }\n}\n\nimpl FunctionSelector {\n    pub fn from_u32(value: u32) -> Self {\n        Self { inner: value }\n    }\n\n    pub fn from_signature<let N: u32>(signature: str<N>) -> Self {\n        let bytes = signature.as_bytes();\n        let hash = crate::hash::poseidon2_hash_bytes(bytes);\n\n        // `hash` is automatically truncated to fit within 32 bits.\n        FunctionSelector::from_field(hash)\n    }\n\n    pub fn zero() -> Self {\n        Self { inner: 0 }\n    }\n}\n\n#[test]\nfn test_is_valid_selector() {\n    let selector = FunctionSelector::from_signature(\"IS_VALID()\");\n    assert_eq(selector.to_field(), 0x73cdda47);\n}\n\n#[test]\nfn test_long_selector() {\n    let selector =\n        FunctionSelector::from_signature(\"foo_and_bar_and_baz_and_foo_bar_baz_and_bar_foo\");\n    assert_eq(selector.to_field(), 0x7590a997);\n}\n"
    },
    "354": {
      "function_locations": [
        {
          "name": "<impl Empty for AztecAddress>::empty",
          "start": 853
        },
        {
          "name": "<impl ToField for AztecAddress>::to_field",
          "start": 953
        },
        {
          "name": "<impl FromField for AztecAddress>::from_field",
          "start": 1065
        },
        {
          "name": "AztecAddress::zero",
          "start": 1160
        },
        {
          "name": "AztecAddress::is_valid",
          "start": 1490
        },
        {
          "name": "AztecAddress::to_address_point",
          "start": 1865
        },
        {
          "name": "AztecAddress::is_positive",
          "start": 2511
        },
        {
          "name": "AztecAddress::get_y",
          "start": 3367
        },
        {
          "name": "AztecAddress::compute",
          "start": 3753
        },
        {
          "name": "AztecAddress::compute_from_class_id",
          "start": 7944
        },
        {
          "name": "AztecAddress::is_zero",
          "start": 8216
        },
        {
          "name": "AztecAddress::assert_is_zero",
          "start": 8281
        },
        {
          "name": "check_max_field_value",
          "start": 8365
        },
        {
          "name": "check_is_positive",
          "start": 8476
        },
        {
          "name": "check_embedded_curve_point_add",
          "start": 8997
        },
        {
          "name": "compute_address_from_partial_and_pub_keys",
          "start": 9262
        },
        {
          "name": "compute_preaddress_from_partial_and_pub_keys",
          "start": 11366
        },
        {
          "name": "from_field_to_field",
          "start": 11715
        },
        {
          "name": "serde",
          "start": 11852
        },
        {
          "name": "to_address_point_valid",
          "start": 12258
        },
        {
          "name": "to_address_point_invalid",
          "start": 12908
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/address/aztec_address.nr",
      "source": "use crate::{\n    address::{\n        partial_address::PartialAddress, salted_initialization_hash::SaltedInitializationHash,\n    },\n    constants::{AZTEC_ADDRESS_LENGTH, DOM_SEP__CONTRACT_ADDRESS_V2, MAX_FIELD_VALUE},\n    contract_class_id::ContractClassId,\n    hash::poseidon2_hash_with_separator,\n    public_keys::{hash_public_key, IvpkM, PublicKeys, ToPoint},\n    traits::{Deserialize, Empty, FromField, Packable, Serialize, ToField},\n    utils::field::sqrt,\n};\n\nuse crate::point::EmbeddedCurvePoint;\n\nuse crate::public_keys::AddressPoint;\nuse std::{\n    embedded_curve_ops::{EmbeddedCurveScalar, fixed_base_scalar_mul as derive_public_key},\n    ops::Add,\n};\nuse std::meta::derive;\n\n// Aztec address\n#[derive(Deserialize, Eq, Packable, Serialize)]\npub struct AztecAddress {\n    pub inner: Field,\n}\n\nimpl Empty for AztecAddress {\n    fn empty() -> Self {\n        Self { inner: 0 }\n    }\n}\n\nimpl ToField for AztecAddress {\n    fn to_field(self) -> Field {\n        self.inner\n    }\n}\n\nimpl FromField for AztecAddress {\n    fn from_field(value: Field) -> AztecAddress {\n        AztecAddress { inner: value }\n    }\n}\n\nimpl AztecAddress {\n    pub fn zero() -> Self {\n        Self { inner: 0 }\n    }\n\n    /// Returns `true` if the address is valid.\n    ///\n    /// An invalid address is one that can be proven to not be correctly derived, meaning it contains no contract code,\n    /// public keys, etc., and can therefore not receive messages nor execute calls.\n    pub fn is_valid(self) -> bool {\n        self.get_y().is_some()\n    }\n\n    /// Returns an address's [`AddressPoint`].\n    ///\n    /// This can be used to create shared secrets with the owner of the address. If the address is invalid (see\n    /// [`AztecAddress::is_valid`]) then this returns `Option::none()`, and no shared secrets can be created.\n    pub fn to_address_point(self) -> Option<AddressPoint> {\n        self.get_y().map(|y| {\n            // If we get a negative y coordinate (y > (r - 1) / 2), we swap it to the\n            // positive one (where y <= (r - 1) / 2) by negating it.\n            let final_y = if Self::is_positive(y) { y } else { -y };\n\n            AddressPoint { inner: EmbeddedCurvePoint { x: self.inner, y: final_y } }\n        })\n    }\n\n    /// Determines whether a y-coordinate is in the lower (positive) or upper (negative) \"half\" of the field.\n    /// I.e.\n    /// y <= (r - 1)/2 => positive.\n    /// y > (r - 1)/2 => negative.\n    /// An AddressPoint always uses the \"positive\" y.\n    fn is_positive(y: Field) -> bool {\n        // Note: The field modulus r is MAX_FIELD_VALUE + 1.\n        let MID = MAX_FIELD_VALUE / 2; // (r - 1) / 2\n        let MID_PLUS_1 = MID + 1; // (r - 1)/2 + 1\n        // Note: y <= m implies y < m + 1.\n        y.lt(MID_PLUS_1)\n    }\n\n    /// Returns one of the two possible y-coordinates.\n    ///\n    /// Not all `AztecAddresses` are valid, in which case there is no corresponding y-coordinate. This returns\n    /// `Option::none()` for invalid addresses.\n    ///\n    /// An `AztecAddress` is defined by an x-coordinate, for which two y-coordinates exist as solutions to the curve\n    /// equation. This function returns either of them. Note that an [`AddressPoint`] must **always** have a positive\n    /// y-coordinate - if trying to obtain the underlying point use [`AztecAddress::to_address_point`] instead.\n    fn get_y(self) -> Option<Field> {\n        // We compute the address point by taking our address as x, and then solving for y in the\n        // equation which defines the grumpkin curve:\n        // y^2 = x^3 - 17; x = address\n        let x = self.inner;\n        let y_squared = x * x * x - 17;\n\n        sqrt(y_squared)\n    }\n\n    pub fn compute(public_keys: PublicKeys, partial_address: PartialAddress) -> AztecAddress {\n        //\n        //                          address = address_point.x\n        //                                          |\n        //                                    address_point = pre_address * G + Ivpk_m (always choose \"positive\" y-coord)\n        //                                                        |               ^\n        //                                                        |               |.....................\n        //                                                    pre_address                              .\n        //                                               /                   \\                         .\n        //                                             /                       \\                       .\n        //                               partial_address                        public_keys_hash       .\n        //                           /                    \\                  /  /  |  |  |   \\         .\n        //                         /                        \\                /  /   |  |  |    \\       .\n        //                                                              npk_m_hash Ivpk_m  ovpk_m_hash  tpk_m_hash  mspk_m_hash  fbpk_m_hash\n        //          contract_class_id                         \\                     |.........................\n        //             /   |    \\                               \\\n        // artifact_hash   |    public_bytecode_commitment        salted_initialization_hash\n        //                 |                                      /        /                  \\                  \\\n        //     private_function_tree_root           salt   initialization_hash         deployer_address     immutables_hash\n        //             /       \\                              /             \\\n        //          ...          ...                 constructor_fn_selector   constructor_args_hash\n        //         /                \\\n        //     /     \\            /      \\\n        //   leaf   leaf        leaf    leaf\n        //           ^\n        //           |\n        //           |---h(function_selector, vk_hash)\n        //               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n        //               Each of these represents a private function of the contract.\n\n        let public_keys_hash = public_keys.hash();\n\n        let pre_address = poseidon2_hash_with_separator(\n            [public_keys_hash.to_field(), partial_address.to_field()],\n            DOM_SEP__CONTRACT_ADDRESS_V2,\n        );\n\n        // Note: `.add()` will fail within the blackbox fn if either of the points are not on the curve. (See tests below).\n        let address_point = derive_public_key(EmbeddedCurveScalar::from_field(pre_address)).add(\n            public_keys.ivpk_m.to_point(),\n        );\n\n        // Note that our address is only the x-coordinate of the full address_point. This is okay because when people want to encrypt something and send it to us\n        // they can recover our full point using the x-coordinate (our address itself). To do this, they recompute the y-coordinate according to the equation y^2 = x^3 - 17.\n        // When they do this, they may get a positive y-coordinate (a value that is less than or equal to MAX_FIELD_VALUE / 2) or\n        // a negative y-coordinate (a value that is more than MAX_FIELD_VALUE), and we cannot dictate which one they get and hence the recovered point may sometimes be different than the one\n        // our secret can decrypt. Regardless though, they should and will always encrypt using point with the positive y-coordinate by convention.\n        // This ensures that everyone encrypts to the same point given an arbitrary x-coordinate (address). This is allowed because even though our original point may not have a positive y-coordinate,\n        // with our original secret, we will be able to derive the secret to the point with the flipped (and now positive) y-coordinate that everyone encrypts to.\n        AztecAddress::from_field(address_point.x)\n    }\n\n    pub fn compute_from_class_id(\n        contract_class_id: ContractClassId,\n        salted_initialization_hash: SaltedInitializationHash,\n        public_keys: PublicKeys,\n    ) -> Self {\n        let partial_address = PartialAddress::compute_from_salted_initialization_hash(\n            contract_class_id,\n            salted_initialization_hash,\n        );\n\n        AztecAddress::compute(public_keys, partial_address)\n    }\n\n    pub fn is_zero(self) -> bool {\n        self.inner == 0\n    }\n\n    pub fn assert_is_zero(self) {\n        assert(self.to_field() == 0);\n    }\n}\n\n#[test]\nfn check_max_field_value() {\n    // Check that it is indeed r-1.\n    assert_eq(MAX_FIELD_VALUE + 1, 0);\n}\n\n#[test]\nfn check_is_positive() {\n    assert(AztecAddress::is_positive(0));\n    assert(AztecAddress::is_positive(1));\n    assert(!AztecAddress::is_positive(-1));\n    assert(AztecAddress::is_positive(MAX_FIELD_VALUE / 2));\n    assert(!AztecAddress::is_positive((MAX_FIELD_VALUE / 2) + 1));\n}\n\n// Gives us confidence that we don't need to manually check that the input public keys need to be on the curve for `add`,\n// because the blackbox function does this check for us.\n#[test(should_fail_with = \"is not on curve\")]\nfn check_embedded_curve_point_add() {\n    // Choose a point not on the curve in the 2nd position.\n    let p1 = EmbeddedCurvePoint::generator();\n    let key = IvpkM { inner: EmbeddedCurvePoint { x: 1, y: 1 } };\n    let _ = p1 + key.to_point();\n}\n\n#[test]\nfn compute_address_from_partial_and_pub_keys() {\n    let npk_m_point = EmbeddedCurvePoint {\n        x: 0x22f7fcddfa3ce3e8f0cc8e82d7b94cdd740afa3e77f8e4a63ea78a239432dcab,\n        y: 0x0471657de2b6216ade6c506d28fbc22ba8b8ed95c871ad9f3e3984e90d9723a7,\n    };\n    let ovpk_m_point = EmbeddedCurvePoint {\n        x: 0x09115c96e962322ffed6522f57194627136b8d03ac7469109707f5e44190c484,\n        y: 0x0c49773308a13d740a7f0d4f0e6163b02c5a408b6f965856b6a491002d073d5b,\n    };\n    let tpk_m_point = EmbeddedCurvePoint {\n        x: 0x00d3d81beb009873eb7116327cf47c612d5758ef083d4fda78e9b63980b2a762,\n        y: 0x2f567d22d2b02fe1f4ad42db9d58a36afd1983e7e2909d1cab61cafedad6193a,\n    };\n    let mspk_m_point = EmbeddedCurvePoint {\n        x: 0x1bd6cb13e0bc8c6e0c1a8b2c5d7f9e0a4b6c8d0e2f4a6c8e0a2c4e6f8a0b2c4d,\n        y: 0x0a032ec7b21c2bdb35f8a13e594764e39ee786c4b275eef3f0435bf6ab2b9822,\n    };\n    let fbpk_m_point = EmbeddedCurvePoint {\n        x: 0x2c8e0a2c4e6f8b0d2f4a6c8e0a2c4e6f8b0d2f4a6c8e0a2c4e6f8b0d2f4a6c90,\n        y: 0x2ef338da3a77e65f90b6d48ac686fc9ff3a95de0c39e0426fc443377425e6634,\n    };\n\n    let public_keys = PublicKeys {\n        npk_m_hash: hash_public_key(npk_m_point),\n        ivpk_m: IvpkM {\n            inner: EmbeddedCurvePoint {\n                x: 0x111223493147f6785514b1c195bb37a2589f22a6596d30bb2bb145fdc9ca8f1e,\n                y: 0x273bbffd678edce8fe30e0deafc4f66d58357c06fd4a820285294b9746c3be95,\n            },\n        },\n        ovpk_m_hash: hash_public_key(ovpk_m_point),\n        tpk_m_hash: hash_public_key(tpk_m_point),\n        mspk_m_hash: hash_public_key(mspk_m_point),\n        fbpk_m_hash: hash_public_key(fbpk_m_point),\n    };\n\n    let partial_address = PartialAddress::from_field(\n        0x0a7c585381b10f4666044266a02405bf6e01fa564c8517d4ad5823493abd31de,\n    );\n\n    let address = AztecAddress::compute(public_keys, partial_address).to_field();\n\n    let expected_computed_address_from_partial_and_pubkeys =\n        0x303ffc8bd456d132463b1fc3a633aeb718a7883c268f3956c05e6fe09b5a5424;\n    assert_eq(address, expected_computed_address_from_partial_and_pubkeys);\n}\n\n#[test]\nfn compute_preaddress_from_partial_and_pub_keys() {\n    let pre_address = poseidon2_hash_with_separator([1, 2], DOM_SEP__CONTRACT_ADDRESS_V2);\n    let expected_computed_preaddress_from_partial_and_pubkey =\n        0x0fa1c698858df1a99170cd39d5f4bfad6d0d60f1f8afa3dc92281ee60b36f3bb;\n    assert(pre_address == expected_computed_preaddress_from_partial_and_pubkey);\n}\n\n#[test]\nfn from_field_to_field() {\n    let address = AztecAddress { inner: 37 };\n    assert_eq(FromField::from_field(address.to_field()), address);\n}\n\n#[test]\nfn serde() {\n    let address = AztecAddress { inner: 37 };\n    // We use the AZTEC_ADDRESS_LENGTH constant to ensure that there is a match between the derived trait\n    // implementation and the constant.\n    let serialized: [Field; AZTEC_ADDRESS_LENGTH] = address.serialize();\n    let deserialized = AztecAddress::deserialize(serialized);\n    assert_eq(address, deserialized);\n}\n\n#[test]\nfn to_address_point_valid() {\n    // x = 8 where x^3 - 17 = 512 - 17 = 495, which is a residue in this field\n    let address = AztecAddress { inner: 8 };\n\n    assert(address.get_y().is_some()); // We don't bother checking the result of get_y as it is only used internally\n    assert(address.is_valid());\n\n    let maybe_point = address.to_address_point();\n    assert(maybe_point.is_some());\n\n    let point = maybe_point.unwrap().inner;\n    // check that x is preserved\n    assert_eq(point.x, Field::from(8));\n\n    // check that the curve equation holds: y^2 == x^3 - 17\n    assert_eq(point.y * point.y, point.x * point.x * point.x - 17);\n}\n\n#[test]\nfn to_address_point_invalid() {\n    // x = 3 where x^3 - 17 = 27 - 17 = 10, which is a non-residue in this field\n    let address = AztecAddress { inner: 3 };\n\n    assert(address.get_y().is_none());\n    assert(!address.is_valid());\n\n    assert(address.to_address_point().is_none());\n}\n"
    },
    "357": {
      "function_locations": [
        {
          "name": "<impl ToField for PartialAddress>::to_field",
          "start": 489
        },
        {
          "name": "<impl Empty for PartialAddress>::empty",
          "start": 574
        },
        {
          "name": "PartialAddress::from_field",
          "start": 677
        },
        {
          "name": "PartialAddress::compute",
          "start": 915
        },
        {
          "name": "PartialAddress::compute_from_salted_initialization_hash",
          "start": 1303
        },
        {
          "name": "PartialAddress::to_field",
          "start": 1545
        },
        {
          "name": "PartialAddress::is_zero",
          "start": 1606
        },
        {
          "name": "PartialAddress::assert_is_zero",
          "start": 1676
        },
        {
          "name": "test::serialization_of_partial_address",
          "start": 1884
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/address/partial_address.nr",
      "source": "use crate::{\n    address::{aztec_address::AztecAddress, salted_initialization_hash::SaltedInitializationHash},\n    constants::DOM_SEP__PARTIAL_ADDRESS,\n    contract_class_id::ContractClassId,\n    hash::poseidon2_hash_with_separator,\n    traits::{Deserialize, Empty, Serialize, ToField},\n};\nuse std::meta::derive;\n\n// Partial address\n#[derive(Deserialize, Eq, Serialize)]\npub struct PartialAddress {\n    pub inner: Field,\n}\n\nimpl ToField for PartialAddress {\n    fn to_field(self) -> Field {\n        self.inner\n    }\n}\n\nimpl Empty for PartialAddress {\n    fn empty() -> Self {\n        Self { inner: 0 }\n    }\n}\n\nimpl PartialAddress {\n    pub fn from_field(field: Field) -> Self {\n        Self { inner: field }\n    }\n\n    pub fn compute(\n        contract_class_id: ContractClassId,\n        salt: Field,\n        initialization_hash: Field,\n        deployer: AztecAddress,\n        immutables_hash: Field,\n    ) -> Self {\n        PartialAddress::compute_from_salted_initialization_hash(\n            contract_class_id,\n            SaltedInitializationHash::compute(salt, initialization_hash, deployer, immutables_hash),\n        )\n    }\n\n    pub fn compute_from_salted_initialization_hash(\n        contract_class_id: ContractClassId,\n        salted_initialization_hash: SaltedInitializationHash,\n    ) -> Self {\n        PartialAddress::from_field(poseidon2_hash_with_separator(\n            [contract_class_id.to_field(), salted_initialization_hash.to_field()],\n            DOM_SEP__PARTIAL_ADDRESS,\n        ))\n    }\n\n    pub fn to_field(self) -> Field {\n        self.inner\n    }\n\n    pub fn is_zero(self) -> bool {\n        self.to_field() == 0\n    }\n\n    pub fn assert_is_zero(self) {\n        assert(self.to_field() == 0);\n    }\n}\n\nmod test {\n    use crate::{address::partial_address::PartialAddress, traits::{Deserialize, Serialize}};\n\n    #[test]\n    fn serialization_of_partial_address() {\n        let item = PartialAddress::from_field(1);\n        let serialized: [Field; 1] = item.serialize();\n        let deserialized = PartialAddress::deserialize(serialized);\n        assert_eq(item, deserialized);\n    }\n}\n"
    },
    "359": {
      "function_locations": [
        {
          "name": "<impl ToField for SaltedInitializationHash>::to_field",
          "start": 394
        },
        {
          "name": "SaltedInitializationHash::from_field",
          "start": 500
        },
        {
          "name": "SaltedInitializationHash::compute",
          "start": 694
        },
        {
          "name": "SaltedInitializationHash::assert_is_zero",
          "start": 950
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/address/salted_initialization_hash.nr",
      "source": "use crate::{\n    address::aztec_address::AztecAddress, constants::DOM_SEP__SALTED_INITIALIZATION_HASH,\n    hash::poseidon2_hash_with_separator, traits::ToField,\n};\n\n// Salted initialization hash. Used in the computation of a partial address.\n#[derive(Eq)]\npub struct SaltedInitializationHash {\n    pub inner: Field,\n}\n\nimpl ToField for SaltedInitializationHash {\n    fn to_field(self) -> Field {\n        self.inner\n    }\n}\n\nimpl SaltedInitializationHash {\n    pub fn from_field(field: Field) -> Self {\n        Self { inner: field }\n    }\n\n    pub fn compute(\n        salt: Field,\n        initialization_hash: Field,\n        deployer: AztecAddress,\n        immutables_hash: Field,\n    ) -> Self {\n        SaltedInitializationHash::from_field(poseidon2_hash_with_separator(\n            [salt, initialization_hash, deployer.to_field(), immutables_hash],\n            DOM_SEP__SALTED_INITIALIZATION_HASH,\n        ))\n    }\n\n    pub fn assert_is_zero(self) {\n        assert(self.to_field() == 0);\n    }\n}\n"
    },
    "369": {
      "function_locations": [
        {
          "name": "<impl Hash for ContractInstance>::hash",
          "start": 1030
        },
        {
          "name": "ContractInstance::to_address",
          "start": 1146
        },
        {
          "name": "test::serde",
          "start": 1781
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/contract_instance.nr",
      "source": "use crate::{\n    address::{aztec_address::AztecAddress, partial_address::PartialAddress},\n    contract_class_id::ContractClassId,\n    public_keys::PublicKeys,\n    traits::{Deserialize, Hash, Serialize, ToField},\n};\nuse std::meta::derive;\n\n/// The complete preimage of an [`AztecAddress`].\n///\n/// All of these values are hashed into the contract's `AztecAddress` (see [`Self::to_address`]), so they are fixed\n/// at deployment time and never change.\n///\n/// In particular, `original_contract_class_id` is the class the contract was *deployed* with. For upgradeable contracts\n/// which utilize the `ContractInstanceRegistry` this is NOT the class currently executing i.e. the 'current' class.\n#[derive(Deserialize, Eq, Serialize)]\npub struct ContractInstance {\n    pub salt: Field,\n    pub deployer: AztecAddress,\n    pub original_contract_class_id: ContractClassId,\n    pub initialization_hash: Field,\n    pub immutables_hash: Field,\n    pub public_keys: PublicKeys,\n}\n\nimpl Hash for ContractInstance {\n    fn hash(self) -> Field {\n        self.to_address().to_field()\n    }\n}\n\nimpl ContractInstance {\n    pub fn to_address(self) -> AztecAddress {\n        AztecAddress::compute(\n            self.public_keys,\n            PartialAddress::compute(\n                self.original_contract_class_id,\n                self.salt,\n                self.initialization_hash,\n                self.deployer,\n                self.immutables_hash,\n            ),\n        )\n    }\n}\n\nmod test {\n    use crate::{\n        address::AztecAddress,\n        constants::CONTRACT_INSTANCE_LENGTH,\n        contract_class_id::ContractClassId,\n        contract_instance::ContractInstance,\n        public_keys::PublicKeys,\n        traits::{Deserialize, FromField, Serialize},\n    };\n\n    #[test]\n    fn serde() {\n        let instance = ContractInstance {\n            salt: 6,\n            deployer: AztecAddress::from_field(12),\n            original_contract_class_id: ContractClassId::from_field(13),\n            initialization_hash: 156,\n            immutables_hash: 789,\n            public_keys: PublicKeys::default(),\n        };\n\n        // We use the CONTRACT_INSTANCE_LENGTH constant to ensure that there is a match between the derived trait\n        // implementation and the constant.\n        let serialized: [Field; CONTRACT_INSTANCE_LENGTH] = instance.serialize();\n\n        let deserialized = ContractInstance::deserialize(serialized);\n\n        assert(instance.eq(deserialized));\n    }\n\n}\n"
    },
    "385": {
      "function_locations": [
        {
          "name": "sha256_to_field",
          "start": 1253
        },
        {
          "name": "private_functions_root_from_siblings",
          "start": 1605
        },
        {
          "name": "compute_siloed_note_hash",
          "start": 2202
        },
        {
          "name": "compute_unique_note_hash",
          "start": 5031
        },
        {
          "name": "compute_note_hash_nonce",
          "start": 5247
        },
        {
          "name": "compute_note_nonce_and_unique_note_hash",
          "start": 5663
        },
        {
          "name": "compute_siloed_nullifier",
          "start": 5899
        },
        {
          "name": "create_protocol_nullifier",
          "start": 6116
        },
        {
          "name": "compute_log_tag",
          "start": 6480
        },
        {
          "name": "compute_siloed_private_log_first_field",
          "start": 6651
        },
        {
          "name": "compute_siloed_private_log",
          "start": 6882
        },
        {
          "name": "compute_contract_class_log_hash",
          "start": 7142
        },
        {
          "name": "compute_app_siloed_secret_key",
          "start": 7333
        },
        {
          "name": "compute_l2_to_l1_message_hash",
          "start": 7628
        },
        {
          "name": "accumulate_sha256",
          "start": 8709
        },
        {
          "name": "poseidon2_hash",
          "start": 9037
        },
        {
          "name": "poseidon2_hash_with_separator",
          "start": 9228
        },
        {
          "name": "poseidon2_hash_subarray",
          "start": 9714
        },
        {
          "name": "poseidon2_hash_with_separator_bounded_vec",
          "start": 10126
        },
        {
          "name": "poseidon2_hash_bytes",
          "start": 10487
        },
        {
          "name": "subarray_hash_matches_fixed",
          "start": 11063
        },
        {
          "name": "subarray_hash_matches_variable",
          "start": 11462
        },
        {
          "name": "smoke_sha256_to_field",
          "start": 11878
        },
        {
          "name": "unique_siloed_note_hash_matches_typescript",
          "start": 13280
        },
        {
          "name": "siloed_nullifier_matches_typescript",
          "start": 14502
        },
        {
          "name": "siloed_private_log_first_field_matches_typescript",
          "start": 14882
        },
        {
          "name": "empty_l2_to_l1_message_hash_matches_typescript",
          "start": 15292
        },
        {
          "name": "l2_to_l1_message_hash_matches_typescript",
          "start": 15743
        },
        {
          "name": "poseidon2_hash_with_separator_bounded_vec_matches_non_bounded_vec_version",
          "start": 16359
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/hash.nr",
      "source": "mod poseidon2_chunks;\n\nuse crate::{\n    abis::{\n        contract_class_function_leaf_preimage::ContractClassFunctionLeafPreimage,\n        function_selector::FunctionSelector, nullifier::Nullifier, private_log::PrivateLog,\n        transaction::tx_request::TxRequest,\n    },\n    address::{AztecAddress, EthAddress},\n    constants::{\n        CONTRACT_CLASS_LOG_SIZE_IN_FIELDS, DOM_SEP__NOTE_HASH_NONCE,\n        DOM_SEP__PRIVATE_LOG_FIRST_FIELD, DOM_SEP__SILOED_NOTE_HASH, DOM_SEP__SILOED_NULLIFIER,\n        DOM_SEP__UNIQUE_NOTE_HASH, FUNCTION_TREE_HEIGHT, NULL_MSG_SENDER_CONTRACT_ADDRESS,\n        TWO_POW_64,\n    },\n    merkle_tree::root_from_sibling_path,\n    messaging::l2_to_l1_message::L2ToL1Message,\n    poseidon2::Poseidon2Sponge,\n    side_effect::{Counted, Scoped},\n    traits::{FromField, Hash, ToField},\n    utils::field::{field_from_bytes, field_from_bytes_32_trunc},\n};\n\npub use poseidon2_chunks::poseidon2_absorb_in_chunks_existing_sponge;\nuse poseidon2_chunks::poseidon2_absorb_in_chunks;\nuse std::embedded_curve_ops::EmbeddedCurveScalar;\n\n// TODO: refactor these into their own files: sha256, poseidon2, some protocol-specific hash computations, some merkle computations.\n\npub fn sha256_to_field<let N: u32>(bytes_to_hash: [u8; N]) -> Field {\n    let sha256_hashed = sha256::digest(bytes_to_hash);\n    let hash_in_a_field = field_from_bytes_32_trunc(sha256_hashed);\n\n    hash_in_a_field\n}\n\npub fn private_functions_root_from_siblings(\n    selector: FunctionSelector,\n    vk_hash: Field,\n    function_leaf_index: Field,\n    function_leaf_sibling_path: [Field; FUNCTION_TREE_HEIGHT],\n) -> Field {\n    let function_leaf_preimage = ContractClassFunctionLeafPreimage { selector, vk_hash };\n    let function_leaf = function_leaf_preimage.hash();\n    root_from_sibling_path(\n        function_leaf,\n        function_leaf_index,\n        function_leaf_sibling_path,\n    )\n}\n\n/// Siloing in the context of Aztec refers to the process of hashing a note hash with a contract address (this way\n/// the note hash is scoped to a specific contract). This is used to prevent intermingling of notes between contracts.\npub fn compute_siloed_note_hash(contract_address: AztecAddress, note_hash: Field) -> Field {\n    poseidon2_hash_with_separator(\n        [contract_address.to_field(), note_hash],\n        DOM_SEP__SILOED_NOTE_HASH,\n    )\n}\n\n/// Computes unique, siloed note hashes from siloed note hashes.\n///\n/// The protocol injects uniqueness into every note_hash, so that every single note_hash in the\n/// tree is unique. This prevents faerie gold attacks, where a malicious sender could create\n/// two identical note_hashes for a recipient (meaning only one would be nullifiable in future).\n///\n/// Most privacy protocols will inject the note's leaf_index (its position in the Note Hashes Tree)\n/// into the note, but this requires the creator of a note to wait until their tx is included in\n/// a block to know the note's final note hash (the unique, siloed note hash), because inserting\n/// leaves into trees is the job of a block producer.\n///\n/// We took a different approach so that the creator of a note will know each note's unique, siloed\n/// note hash before broadcasting their tx to the network.\n/// (There was also a historical requirement relating to \"chained transactions\" -- a feature that\n/// Aztec Connect had to enable notes to be spent from distinct txs earlier in the same block,\n/// and hence before an archive block root had been established for that block -- but that feature\n/// was abandoned for the Aztec Network for having too many bad tradeoffs).\n///\n/// (\n///   Edit: it is no longer true that all final note_hashes will be known by the creator of a tx\n///   before they send it to the network. If a tx makes public function calls, then _revertible_\n///   note_hashes that are created in private will not be made unique in private by the Reset circuit,\n///   but will instead be made unique by the AVM, because the `note_index_in_tx` will not be known\n///   until the AVM has executed the public functions of the tx. (See an explanation in\n///   reset_output_composer.nr for why).\n///   For some such txs, the `note_index_in_tx` might still be predictable through simulation, but\n///   for txs whose public functions create a varying number of non-revertible notes (determined at\n///   runtime), the `note_index_in_tx` will not be deterministically derivable before submitting the\n///   tx to the network.\n/// )\n///\n/// We use the `first_nullifier` of a tx as a seed of uniqueness. We have a guarantee that there will\n/// always be at least one nullifier per tx, because the init circuit will create one if one isn't\n/// created naturally by any functions of the tx. (Search \"protocol_nullifier\").\n/// We combine the `first_nullifier` with the note's index (its position within this tx's new\n/// note_hashes array) (`note_index_in_tx`) to get a truly unique value to inject into a note, which\n/// we call a `note_nonce`.\npub fn compute_unique_note_hash(note_nonce: Field, siloed_note_hash: Field) -> Field {\n    let inputs = [note_nonce, siloed_note_hash];\n    poseidon2_hash_with_separator(inputs, DOM_SEP__UNIQUE_NOTE_HASH)\n}\n\npub fn compute_note_hash_nonce(first_nullifier_in_tx: Field, note_index_in_tx: u32) -> Field {\n    // Hashing the first nullifier with note index in tx is guaranteed to be unique (because all nullifiers are also\n    // unique).\n    poseidon2_hash_with_separator(\n        [first_nullifier_in_tx, note_index_in_tx as Field],\n        DOM_SEP__NOTE_HASH_NONCE,\n    )\n}\n\npub fn compute_note_nonce_and_unique_note_hash(\n    siloed_note_hash: Field,\n    first_nullifier: Field,\n    note_index_in_tx: u32,\n) -> Field {\n    let note_nonce = compute_note_hash_nonce(first_nullifier, note_index_in_tx);\n    compute_unique_note_hash(note_nonce, siloed_note_hash)\n}\n\npub fn compute_siloed_nullifier(contract_address: AztecAddress, nullifier: Field) -> Field {\n    poseidon2_hash_with_separator(\n        [contract_address.to_field(), nullifier],\n        DOM_SEP__SILOED_NULLIFIER,\n    )\n}\n\npub fn create_protocol_nullifier(tx_request: TxRequest) -> Scoped<Counted<Nullifier>> {\n    // The protocol nullifier is ascribed a special side-effect counter of 1. No other side-effect\n    // can have counter 1 (see `validate_as_first_call` for that assertion).\n    Nullifier { value: tx_request.hash(), note_hash: 0 }.count(1).scope(\n        NULL_MSG_SENDER_CONTRACT_ADDRESS,\n    )\n}\n\npub fn compute_log_tag(raw_tag: Field, dom_sep: u32) -> Field {\n    poseidon2_hash_with_separator([raw_tag], dom_sep)\n}\n\npub fn compute_siloed_private_log_first_field(\n    contract_address: AztecAddress,\n    field: Field,\n) -> Field {\n    poseidon2_hash_with_separator(\n        [contract_address.to_field(), field],\n        DOM_SEP__PRIVATE_LOG_FIRST_FIELD,\n    )\n}\n\npub fn compute_siloed_private_log(contract_address: AztecAddress, log: PrivateLog) -> PrivateLog {\n    let mut fields = log.fields;\n    fields[0] = compute_siloed_private_log_first_field(contract_address, fields[0]);\n    PrivateLog::new(fields, log.length)\n}\n\npub fn compute_contract_class_log_hash(log: [Field; CONTRACT_CLASS_LOG_SIZE_IN_FIELDS]) -> Field {\n    poseidon2_hash(log)\n}\n\npub fn compute_app_siloed_secret_key(\n    master_secret_key: EmbeddedCurveScalar,\n    app_address: AztecAddress,\n    key_type_domain_separator: Field,\n) -> Field {\n    poseidon2_hash_with_separator(\n        [master_secret_key.hi, master_secret_key.lo, app_address.to_field()],\n        key_type_domain_separator,\n    )\n}\n\npub fn compute_l2_to_l1_message_hash(\n    message: Scoped<L2ToL1Message>,\n    rollup_version_id: Field,\n    chain_id: Field,\n) -> Field {\n    let contract_address_bytes: [u8; 32] = message.contract_address.to_field().to_be_bytes();\n    let recipient_bytes: [u8; 20] = message.inner.recipient.to_be_bytes();\n    let content_bytes: [u8; 32] = message.inner.content.to_be_bytes();\n    let rollup_version_id_bytes: [u8; 32] = rollup_version_id.to_be_bytes();\n    let chain_id_bytes: [u8; 32] = chain_id.to_be_bytes();\n\n    let mut bytes: [u8; 148] = std::mem::zeroed();\n    for i in 0..32 {\n        bytes[i] = contract_address_bytes[i];\n        bytes[i + 32] = rollup_version_id_bytes[i];\n        // 64 - 84 are for recipient.\n        bytes[i + 84] = chain_id_bytes[i];\n        bytes[i + 116] = content_bytes[i];\n    }\n\n    for i in 0..20 {\n        bytes[64 + i] = recipient_bytes[i];\n    }\n\n    sha256_to_field(bytes)\n}\n\n// TODO: consider a variant that enables domain separation with a u32 (we seem to have standardised u32s for domain separators)\n/// Computes sha256 hash of 2 input fields.\n///\n/// @returns A truncated field (i.e., the first byte is always 0).\npub fn accumulate_sha256(v0: Field, v1: Field) -> Field {\n    // Concatenate two fields into 32 x 2 = 64 bytes\n    let v0_as_bytes: [u8; 32] = v0.to_be_bytes();\n    let v1_as_bytes: [u8; 32] = v1.to_be_bytes();\n    let hash_input_flattened = v0_as_bytes.concat(v1_as_bytes);\n\n    sha256_to_field(hash_input_flattened)\n}\n\npub fn poseidon2_hash<let N: u32>(inputs: [Field; N]) -> Field {\n    poseidon::poseidon2::Poseidon2::hash(inputs, N)\n}\n\n#[no_predicates]\npub fn poseidon2_hash_with_separator<let N: u32, T>(inputs: [Field; N], separator: T) -> Field\nwhere\n    T: ToField,\n{\n    let inputs_with_separator = [separator.to_field()].concat(inputs);\n    poseidon2_hash(inputs_with_separator)\n}\n\n/// Computes a Poseidon2 hash over a dynamic-length subarray of the given input.\n/// Only the first `in_len` fields of `input` are absorbed; any remaining fields are ignored.\n/// The caller is responsible for ensuring that the input is padded with zeros if required.\n#[no_predicates]\npub fn poseidon2_hash_subarray<let N: u32>(input: [Field; N], in_len: u32) -> Field {\n    let mut sponge = poseidon2_absorb_in_chunks(input, in_len);\n    sponge.squeeze()\n}\n\n// This function is  unconstrained because it is intended to be used in unconstrained context only as\n// in constrained contexts it would be too inefficient.\npub unconstrained fn poseidon2_hash_with_separator_bounded_vec<let N: u32, T>(\n    inputs: BoundedVec<Field, N>,\n    separator: T,\n) -> Field\nwhere\n    T: ToField,\n{\n    let in_len = inputs.len() + 1;\n    let iv: Field = (in_len as Field) * TWO_POW_64;\n    let mut sponge = Poseidon2Sponge::new(iv);\n    sponge.absorb(separator.to_field());\n\n    for i in 0..inputs.len() {\n        sponge.absorb(inputs.get(i));\n    }\n\n    sponge.squeeze()\n}\n\n#[no_predicates]\npub fn poseidon2_hash_bytes<let N: u32>(inputs: [u8; N]) -> Field {\n    let mut fields = [0; (N + 30) / 31];\n    let mut field_index = 0;\n    let mut current_field = [0; 31];\n    for i in 0..inputs.len() {\n        let index = i % 31;\n        current_field[index] = inputs[i];\n        if index == 30 {\n            fields[field_index] = field_from_bytes(current_field, false);\n            current_field = [0; 31];\n            field_index += 1;\n        }\n    }\n    if field_index != fields.len() {\n        fields[field_index] = field_from_bytes(current_field, false);\n    }\n    poseidon2_hash(fields)\n}\n\n#[test]\nfn subarray_hash_matches_fixed() {\n    let values_to_hash = [3; 17];\n    let padded = values_to_hash.concat([0; 11]);\n    let subarray_hash = poseidon2_hash_subarray(padded, values_to_hash.len());\n\n    // Hash the entire values_to_hash.\n    let fixed_len_hash = poseidon::poseidon2::Poseidon2::hash(values_to_hash, values_to_hash.len());\n\n    assert_eq(subarray_hash, fixed_len_hash);\n}\n\n#[test]\nfn subarray_hash_matches_variable() {\n    let values_to_hash = [3; 17];\n    let padded = values_to_hash.concat([0; 11]);\n    let subarray_hash = poseidon2_hash_subarray(padded, values_to_hash.len());\n\n    // Hash up to values_to_hash.len() fields of the padded array.\n    let variable_len_hash = poseidon::poseidon2::Poseidon2::hash(padded, values_to_hash.len());\n\n    assert_eq(subarray_hash, variable_len_hash);\n}\n\n#[test]\nfn smoke_sha256_to_field() {\n    let full_buffer = [\n        0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,\n        25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,\n        48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70,\n        71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93,\n        94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,\n        113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130,\n        131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148,\n        149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,\n    ];\n    let result = sha256_to_field(full_buffer);\n\n    assert(result == 0x448ebbc9e1a31220a2f3830c18eef61b9bd070e5084b7fa2a359fe729184c7);\n\n    // to show correctness of the current ver (truncate one byte) vs old ver (mod full bytes):\n    let result_bytes = sha256::digest(full_buffer);\n    let truncated_field = crate::utils::field::field_from_bytes_32_trunc(result_bytes);\n    assert(truncated_field == result);\n    let mod_res = result + (result_bytes[31] as Field);\n    assert(mod_res == 0x448ebbc9e1a31220a2f3830c18eef61b9bd070e5084b7fa2a359fe729184e0);\n}\n\n#[test]\nfn unique_siloed_note_hash_matches_typescript() {\n    let inner_note_hash = 1;\n    let contract_address = AztecAddress::from_field(2);\n    let first_nullifier = 3;\n    let note_index_in_tx = 4;\n\n    let siloed_note_hash = compute_siloed_note_hash(contract_address, inner_note_hash);\n    let siloed_note_hash_from_ts =\n        0x1986a4bea3eddb1fff917d629a13e10f63f514f401bdd61838c6b475db949169;\n    assert_eq(siloed_note_hash, siloed_note_hash_from_ts);\n\n    let nonce: Field = compute_note_hash_nonce(first_nullifier, note_index_in_tx);\n    let note_hash_nonce_from_ts =\n        0x28e7799791bf066a57bb51fdd0fbcaf3f0926414314c7db515ea343f44f5d58b;\n    assert_eq(nonce, note_hash_nonce_from_ts);\n\n    let unique_siloed_note_hash_from_nonce = compute_unique_note_hash(nonce, siloed_note_hash);\n    let unique_siloed_note_hash = compute_note_nonce_and_unique_note_hash(\n        siloed_note_hash,\n        first_nullifier,\n        note_index_in_tx,\n    );\n    assert_eq(unique_siloed_note_hash_from_nonce, unique_siloed_note_hash);\n\n    let unique_siloed_note_hash_from_ts =\n        0x29949aef207b715303b24639737c17fbfeb375c1d965ecfa85c7e4f0febb7d16;\n    assert_eq(unique_siloed_note_hash, unique_siloed_note_hash_from_ts);\n}\n\n#[test]\nfn siloed_nullifier_matches_typescript() {\n    let contract_address = AztecAddress::from_field(123);\n    let nullifier = 456;\n\n    let res = compute_siloed_nullifier(contract_address, nullifier);\n\n    let siloed_nullifier_from_ts =\n        0x169b50336c1f29afdb8a03d955a81e485f5ac7d5f0b8065673d1e407e5877813;\n\n    assert_eq(res, siloed_nullifier_from_ts);\n}\n\n#[test]\nfn siloed_private_log_first_field_matches_typescript() {\n    let contract_address = AztecAddress::from_field(123);\n    let field = 456;\n    let res = compute_siloed_private_log_first_field(contract_address, field);\n\n    let siloed_private_log_first_field_from_ts =\n        0x29480984f7b9257fded523d50addbcfc8d1d33adcf2db73ef3390a8fd5cdffaa;\n\n    assert_eq(res, siloed_private_log_first_field_from_ts);\n}\n\n#[test]\nfn empty_l2_to_l1_message_hash_matches_typescript() {\n    // All zeroes\n    let res = compute_l2_to_l1_message_hash(\n        L2ToL1Message { recipient: EthAddress::zero(), content: 0 }.scope(AztecAddress::from_field(\n            0,\n        )),\n        0,\n        0,\n    );\n\n    let empty_l2_to_l1_msg_hash_from_ts =\n        0x003b18c58c739716e76429634a61375c45b3b5cd470c22ab6d3e14cee23dd992;\n\n    assert_eq(res, empty_l2_to_l1_msg_hash_from_ts);\n}\n\n#[test]\nfn l2_to_l1_message_hash_matches_typescript() {\n    let message = L2ToL1Message { recipient: EthAddress::from_field(1), content: 2 }.scope(\n        AztecAddress::from_field(3),\n    );\n    let version = 4;\n    let chainId = 5;\n\n    let hash = compute_l2_to_l1_message_hash(message, version, chainId);\n\n    // The following value was generated by `yarn-project/stdlib/src/hash/hash.test.ts`\n    let l2_to_l1_message_hash_from_ts =\n        0x0081edf209e087ad31b3fd24263698723d57190bd1d6e9fe056fc0c0a68ee661;\n\n    assert_eq(hash, l2_to_l1_message_hash_from_ts);\n}\n\n#[test]\nunconstrained fn poseidon2_hash_with_separator_bounded_vec_matches_non_bounded_vec_version() {\n    let inputs = BoundedVec::<Field, 4>::from_array([1, 2, 3]);\n    let separator = 42;\n\n    // Hash using bounded vec version\n    let bounded_result = poseidon2_hash_with_separator_bounded_vec(inputs, separator);\n\n    // Hash using regular version\n    let regular_result = poseidon2_hash_with_separator([1, 2, 3], separator);\n\n    // Results should match\n    assert_eq(bounded_result, regular_result);\n}\n"
    },
    "387": {
      "function_locations": [
        {
          "name": "fatal_log",
          "start": 395
        },
        {
          "name": "error_log",
          "start": 473
        },
        {
          "name": "warn_log",
          "start": 550
        },
        {
          "name": "info_log",
          "start": 626
        },
        {
          "name": "verbose_log",
          "start": 705
        },
        {
          "name": "debug_log",
          "start": 785
        },
        {
          "name": "trace_log",
          "start": 863
        },
        {
          "name": "fatal_log_format",
          "start": 1033
        },
        {
          "name": "error_log_format",
          "start": 1161
        },
        {
          "name": "warn_log_format",
          "start": 1288
        },
        {
          "name": "info_log_format",
          "start": 1414
        },
        {
          "name": "verbose_log_format",
          "start": 1543
        },
        {
          "name": "debug_log_format",
          "start": 1673
        },
        {
          "name": "trace_log_format",
          "start": 1801
        },
        {
          "name": "log_format",
          "start": 1934
        },
        {
          "name": "log_oracle_wrapper",
          "start": 2248
        },
        {
          "name": "log_oracle",
          "start": 2802
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/logging.nr",
      "source": "// Log levels matching the JS logger:\n\n// global SILENT_LOG_LEVEL: u8 = 0;\nglobal FATAL_LOG_LEVEL: u8 = 1;\nglobal ERROR_LOG_LEVEL: u8 = 2;\nglobal WARN_LOG_LEVEL: u8 = 3;\nglobal INFO_LOG_LEVEL: u8 = 4;\nglobal VERBOSE_LOG_LEVEL: u8 = 5;\nglobal DEBUG_LOG_LEVEL: u8 = 6;\nglobal TRACE_LOG_LEVEL: u8 = 7;\n\n// --- Per-level log functions (no format args) ---\n\npub fn fatal_log<let N: u32>(msg: str<N>) {\n    fatal_log_format(msg, []);\n}\n\npub fn error_log<let N: u32>(msg: str<N>) {\n    error_log_format(msg, []);\n}\n\npub fn warn_log<let N: u32>(msg: str<N>) {\n    warn_log_format(msg, []);\n}\n\npub fn info_log<let N: u32>(msg: str<N>) {\n    info_log_format(msg, []);\n}\n\npub fn verbose_log<let N: u32>(msg: str<N>) {\n    verbose_log_format(msg, []);\n}\n\npub fn debug_log<let N: u32>(msg: str<N>) {\n    debug_log_format(msg, []);\n}\n\npub fn trace_log<let N: u32>(msg: str<N>) {\n    trace_log_format(msg, []);\n}\n\n// --- Per-level log functions (with format args) ---\n\npub fn fatal_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(FATAL_LOG_LEVEL, msg, args);\n}\n\npub fn error_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(ERROR_LOG_LEVEL, msg, args);\n}\n\npub fn warn_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(WARN_LOG_LEVEL, msg, args);\n}\n\npub fn info_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(INFO_LOG_LEVEL, msg, args);\n}\n\npub fn verbose_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(VERBOSE_LOG_LEVEL, msg, args);\n}\n\npub fn debug_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(DEBUG_LOG_LEVEL, msg, args);\n}\n\npub fn trace_log_format<let M: u32, let N: u32>(msg: str<M>, args: [Field; N]) {\n    log_format(TRACE_LOG_LEVEL, msg, args);\n}\n\nfn log_format<let M: u32, let N: u32>(log_level: u8, msg: str<M>, args: [Field; N]) {\n    // Safety: This oracle call returns nothing: we only call it for its side effects. It is therefore always safe\n    // to call.\n    unsafe { log_oracle_wrapper(log_level, msg, args) };\n}\n\nunconstrained fn log_oracle_wrapper<let M: u32, let N: u32>(\n    log_level: u8,\n    msg: str<M>,\n    args: [Field; N],\n) {\n    log_oracle(log_level, msg, N, args);\n}\n\n// While the length parameter might seem unnecessary given that we have N, we keep it around because at the AVM\n// bytecode level we want to support non-comptime-known lengths for such opcodes, even if Noir code will not generally\n// take that route. The AVM transpiler maps this oracle to the DEBUGLOG opcode, which reads the fields size from memory.\n#[oracle(aztec_misc_log)]\nunconstrained fn log_oracle<let M: u32, let N: u32>(\n    log_level: u8,\n    msg: str<M>,\n    length: u32,\n    args: [Field; N],\n) {}\n"
    },
    "403": {
      "function_locations": [
        {
          "name": "get_generics_declarations",
          "start": 941
        },
        {
          "name": "get_where_trait_clause",
          "start": 2911
        },
        {
          "name": "derive_packable",
          "start": 5843
        },
        {
          "name": "test::packable_on_empty",
          "start": 11541
        },
        {
          "name": "test::packable_on_smol",
          "start": 11848
        },
        {
          "name": "test::packable_on_contains_array_with_generics",
          "start": 12285
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/meta/mod.nr",
      "source": "pub use serde::serialization::{derive_deserialize, derive_serialize};\n\npub mod utils;\n\n/// Generates the generic parameter declarations for a struct's trait implementation.\n///\n/// This function takes a struct type definition and generates the generic parameter declarations\n/// that go after the `impl` keyword. For example, given a struct with generics `N: u32` and `T`,\n/// it generates `<let N: u32, T>`.\n///\n/// # Parameters\n/// - `s`: The struct type definition to generate generic declarations for\n///\n/// # Returns\n/// A quoted code block containing the generic parameter declarations, or an empty quote if the struct\n/// has no generic parameters\n///\n/// # Example\n/// For a struct defined as:\n/// ```\n/// struct Container<T, let N: u32> {\n///     items: [T; N],\n///     count: u32\n/// }\n/// ```\n///\n/// This function generates:\n/// ```\n/// <let N: u32, T>\n/// ```\ncomptime fn get_generics_declarations(s: TypeDefinition) -> Quoted {\n    let generics = s.generics();\n\n    if generics.len() > 0 {\n        let generics_declarations_items = generics\n            .map(|(name, maybe_integer_typ)| {\n                // The second item in the generics tuple is an Option of an integer type that is Some only if\n                // the generic is numeric.\n                if maybe_integer_typ.is_some() {\n                    // The generic is numeric, so we return a quote defined as e.g. \"let N: u32\"\n                    let integer_type = maybe_integer_typ.unwrap();\n                    quote {let $name: $integer_type}\n                } else {\n                    // The generic is not numeric, so we return a quote containing the name of the generic (e.g. \"T\")\n                    quote { $name }\n                }\n            })\n            .join(quote {,});\n        quote {<$generics_declarations_items>}\n    } else {\n        // The struct doesn't have any generics defined, so we just return an empty quote.\n        quote {}\n    }\n}\n\n/// Generates the `where` clause for a trait implementation that constrains non-numeric generic type parameters.\n///\n/// This function takes a struct type definition and a trait name, and generates a `where` clause that\n/// requires all non-numeric generic type parameters to implement the specified trait.\n///\n/// # Parameters\n/// - `s`: The struct type definition to generate the where clause for\n/// - `trait_name`: The name of the trait that non-numeric generic parameters must implement\n///\n/// # Returns\n/// A quoted code block containing the where clause, or an empty quote if the struct has no non-numeric\n/// generic parameters\n///\n/// # Example\n/// For a struct defined as:\n/// ```\n/// struct Container<T, let N: u32> {\n///     items: [T; N],\n///     count: u32\n/// }\n/// ```\n///\n/// And trait name \"Serialize\", this function generates:\n/// ```\n/// where T: Serialize\n/// ```\ncomptime fn get_where_trait_clause(s: TypeDefinition, trait_name: Quoted) -> Quoted {\n    let generics = s.generics();\n\n    // The second item in the generics tuple is an Option of an integer type that is Some only if the generic is\n    // numeric.\n    let non_numeric_generics =\n        generics.filter(|(_, maybe_integer_typ)| maybe_integer_typ.is_none());\n\n    if non_numeric_generics.len() > 0 {\n        let non_numeric_generics_declarations =\n            non_numeric_generics.map(|(name, _)| quote {$name: $trait_name}).join(quote {,});\n        quote {where $non_numeric_generics_declarations}\n    } else {\n        // There are no non-numeric generics, so we return an empty quote.\n        quote {}\n    }\n}\n\n/// Generates a [`Packable`](crate::traits::Packable) trait implementation for a given struct `s`.\n///\n/// # Arguments\n/// * `s` - The struct type definition to generate the implementation for\n///\n/// # Returns\n/// A `Quoted` block containing the generated trait implementation\n///\n/// # Requirements\n/// Each struct member type must implement the `Packable` trait (it gets used in the generated code).\n///\n/// # Example\n/// For a struct like:\n/// ```\n/// struct MyStruct {\n///     x: AztecAddress,\n///     y: Field,\n/// }\n/// ```\n///\n/// This generates:\n/// ```\n/// impl Packable for MyStruct {\n///     let N: u32 = 2;\n///\n///     fn pack(self) -> [Field; 2] {\n///         let mut result: [Field; 2] = [0_Field; 2];\n///         let mut offset: u32 = 0_u32;\n///         let packed_member: [Field; 1] = self.x.pack();\n///         let packed_member_len: u32 = <Field as Packable>::N;\n///         for i in 0_u32..packed_member_len {\n///             {\n///                 result[i + offset] = packed_member[i];\n///             }\n///         }\n///         offset = offset + packed_member_len;\n///         let packed_member: [Field; 1] = self.y.pack();\n///         let packed_member_len: u32 = <Field as Packable>::N;\n///         for i in 0_u32..packed_member_len {\n///             {\n///                 result[i + offset] = packed_member[i];\n///             }\n///         }\n///         offset = offset + packed_member_len;\n///         result\n///     }\n///\n///     fn unpack(packed: [Field; 2]) -> Self {\n///         let mut offset: u32 = 0_u32;\n///         let mut member_fields: [Field; 1] = [0_Field; 1];\n///         for i in 0_u32..<AztecAddress as Packable>::N {\n///             member_fields[i] = packed[i + offset];\n///         }\n///         let x: AztecAddress = <AztecAddress as Packable>::unpack(member_fields);\n///         offset = offset + <AztecAddress as Packable>::N;\n///         let mut member_fields: [Field; 1] = [0_Field; 1];\n///         for i in 0_u32..<Field as Packable>::N {\n///             member_fields[i] = packed[i + offset];\n///         }\n///         let y: Field = <Field as Packable>::unpack(member_fields);\n///         offset = offset + <Field as Packable>::N;\n///         Self { x: x, y: y }\n///     }\n/// }\n/// ```\npub comptime fn derive_packable(s: TypeDefinition) -> Quoted {\n    let typ = s.as_type();\n    let nested_struct = typ.as_data_type().unwrap();\n    let params = nested_struct.0.fields(nested_struct.1);\n\n    // Generates the generic parameter declarations (to be placed after the `impl` keyword) and the `where` clause\n    // for the `Packable` trait.\n    let generics_declarations = get_generics_declarations(s);\n    let where_packable_clause = get_where_trait_clause(s, quote { Packable });\n\n    // The following will give us:\n    // <type_of_struct_member_1 as Packable>::N + <type_of_struct_member_2 as Packable>::N + ...\n    // (or 0 if the struct has no members)\n    let right_hand_side_of_definition_of_n = if params.len() > 0 {\n        params\n            .map(|(_, param_type, _): (Quoted, Type, Quoted)| {\n                quote {\n            <$param_type as $crate::traits::Packable>::N\n        }\n            })\n            .join(quote {+})\n    } else {\n        quote { 0 }\n    };\n\n    // For structs containing a single member, we can enhance performance by directly returning the packed member,\n    // bypassing the need for loop-based array construction. While this optimization yields significant benefits in\n    // Brillig where the loops are expected to not be optimized, it is not relevant in ACIR where the loops are\n    // expected to be optimized away.\n    let pack_function_body = if params.len() > 1 {\n        // For multiple struct members, generate packing code that:\n        // 1. Packs each member\n        // 2. Copies the packed fields into the result array at the correct offset\n        // 3. Updates the offset for the next member\n        let packing_of_struct_members = params\n            .map(|(param_name, param_type, _): (Quoted, Type, Quoted)| {\n                quote {\n                    let packed_member = $crate::traits::Packable::pack(self.$param_name);\n                    let packed_member_len = <$param_type as $crate::traits::Packable>::N;\n                    for i in 0..packed_member_len {\n                        result[i + offset] = packed_member[i];\n                    }\n                    offset += packed_member_len;\n                }\n            })\n            .join(quote {});\n\n        quote {\n            let mut result = [0; Self::N];\n            let mut offset = 0;\n\n            $packing_of_struct_members\n\n            result\n        }\n    } else if params.len() == 1 {\n        let param_name = params[0].0;\n        quote {\n            $crate::traits::Packable::pack(self.$param_name)\n        }\n    } else {\n        quote {\n            [0; Self::N]\n        }\n    };\n\n    // For structs containing a single member, we can enhance performance by directly unpacking the input array,\n    // bypassing the need for loop-based array construction. While this optimization yields significant benefits in\n    // Brillig where the loops are expected to not be optimized, it is not relevant in ACIR where the loops are\n    // expected to be optimized away.\n    let unpack_function_body = if params.len() > 1 {\n        // For multiple struct members, generate unpacking code that:\n        // 1. Unpacks each member\n        // 2. Copies packed fields into member array at correct offset\n        // 3. Updates offset for next member\n        let unpacking_of_struct_members = params\n            .map(|(param_name, param_type, _): (Quoted, Type, Quoted)| {\n                quote {\n                    let mut member_fields = [0; <$param_type as $crate::traits::Packable>::N];\n                    for i in 0..<$param_type as $crate::traits::Packable>::N {\n                        member_fields[i] = packed[i + offset];\n                    }\n                    let $param_name = <$param_type as $crate::traits::Packable>::unpack(member_fields);\n                    offset += <$param_type as $crate::traits::Packable>::N;\n                }\n            })\n            .join(quote {});\n\n        // We join the struct member names with a comma to be used in the `Self { ... }` syntax\n        let struct_members = params\n            .map(|(param_name, _, _): (Quoted, Type, Quoted)| quote { $param_name })\n            .join(quote {,});\n\n        quote {\n            let mut offset = 0;\n            $unpacking_of_struct_members\n            Self { $struct_members }\n        }\n    } else if params.len() == 1 {\n        let param_name = params[0].0;\n        quote {\n            Self { $param_name: $crate::traits::Packable::unpack(packed) }\n        }\n    } else {\n        quote {\n            Self {}\n        }\n    };\n\n    quote {\n        impl$generics_declarations $crate::traits::Packable for $typ\n            $where_packable_clause\n        {\n            let N: u32 = $right_hand_side_of_definition_of_n;\n\n            #[inline_always]\n            fn pack(self) -> [Field; Self::N] {\n                $pack_function_body\n            }\n\n            #[inline_always]\n            fn unpack(packed: [Field; Self::N]) -> Self {\n                $unpack_function_body\n            }\n        }\n    }\n}\n\nmod test {\n    use crate::traits::{Deserialize, Packable, Serialize};\n\n    #[derive(Deserialize, Eq, Packable, Serialize)]\n    pub struct Empty {}\n\n    #[derive(Deserialize, Eq, Packable, Serialize)]\n    pub struct Smol {\n        a: Field,\n        b: Field,\n    }\n\n    #[derive(Deserialize, Eq, Serialize)]\n    pub struct HasArray {\n        a: [Field; 2],\n        b: bool,\n    }\n\n    #[derive(Deserialize, Eq, Serialize)]\n    pub struct Fancier {\n        a: Smol,\n        b: [Field; 2],\n        c: [u8; 3],\n        d: str<16>,\n    }\n\n    #[derive(Deserialize, Eq, Packable, Serialize)]\n    pub struct HasArrayWithGenerics<T, let N: u32> {\n        pub fields: [T; N],\n        pub length: u32,\n    }\n\n    #[test]\n    fn packable_on_empty() {\n        let original = Empty {};\n        let packed = original.pack();\n        assert_eq(packed, [], \"Packed does not match empty array\");\n        let unpacked = Empty::unpack(packed);\n        assert_eq(unpacked, original, \"Unpacked does not match original\");\n    }\n\n    #[test]\n    fn packable_on_smol() {\n        let smol = Smol { a: 1, b: 2 };\n        let serialized = smol.serialize();\n        assert(serialized == [1, 2], serialized);\n\n        // None of the struct members implements the `Packable` trait so the packed and serialized data should be the same\n        let packed = smol.pack();\n        assert_eq(packed, serialized, \"Packed does not match serialized\");\n    }\n\n    #[test]\n    fn packable_on_contains_array_with_generics() {\n        let struct_with_array_of_generics = HasArrayWithGenerics { fields: [1, 2, 3], length: 3 };\n        let packed = struct_with_array_of_generics.pack();\n        assert(packed == [1, 2, 3, 3], packed);\n\n        let unpacked = HasArrayWithGenerics::unpack(packed);\n        assert(unpacked == struct_with_array_of_generics);\n    }\n\n}\n"
    },
    "406": {
      "function_locations": [
        {
          "name": "Poseidon2Sponge::hash",
          "start": 798
        },
        {
          "name": "Poseidon2Sponge::new",
          "start": 938
        },
        {
          "name": "Poseidon2Sponge::perform_duplex",
          "start": 1151
        },
        {
          "name": "Poseidon2Sponge::absorb",
          "start": 1592
        },
        {
          "name": "Poseidon2Sponge::squeeze",
          "start": 2126
        },
        {
          "name": "Poseidon2Sponge::hash_internal",
          "start": 2544
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/poseidon2.nr",
      "source": "use crate::constants::TWO_POW_64;\nuse crate::traits::{Deserialize, Serialize};\nuse std::meta::derive;\n// NB: This is a clone of noir/noir-repo/noir_stdlib/src/hash/poseidon2.nr\n// It exists as we sometimes need to perform custom absorption, but the stdlib version\n// has a private absorb() method (it's also designed to just be a hasher)\n// Can be removed when standalone noir poseidon lib exists: See noir#6679\n// TODO: Poseidon is stand-alone now\n\nglobal RATE: u32 = 3;\n\n#[derive(Deserialize, Eq, Serialize)]\npub struct Poseidon2Sponge {\n    pub cache: [Field; 3],\n    pub state: [Field; 4],\n    pub cache_size: u32,\n    pub squeeze_mode: bool, // 0 => absorb, 1 => squeeze\n}\n\nimpl Poseidon2Sponge {\n    #[no_predicates]\n    pub fn hash<let N: u32>(input: [Field; N], message_size: u32) -> Field {\n        Poseidon2Sponge::hash_internal(input, message_size, message_size != N)\n    }\n\n    pub(crate) fn new(iv: Field) -> Poseidon2Sponge {\n        let mut result =\n            Poseidon2Sponge { cache: [0; 3], state: [0; 4], cache_size: 0, squeeze_mode: false };\n        result.state[RATE] = iv;\n        result\n    }\n\n    fn perform_duplex(&mut self) {\n        // add the cache into sponge state\n        for i in 0..RATE {\n            // We effectively zero-pad the cache by only adding to the state\n            // cache that is less than the specified `cache_size`\n            if i < self.cache_size {\n                self.state[i] += self.cache[i];\n            }\n        }\n        self.state = std::hash::poseidon2_permutation(self.state);\n    }\n\n    pub fn absorb(&mut self, input: Field) {\n        assert(!self.squeeze_mode);\n        if self.cache_size == RATE {\n            // If we're absorbing, and the cache is full, apply the sponge permutation to compress the cache\n            self.perform_duplex();\n            self.cache[0] = input;\n            self.cache_size = 1;\n        } else {\n            // If we're absorbing, and the cache is not full, add the input into the cache\n            self.cache[self.cache_size] = input;\n            self.cache_size += 1;\n        }\n    }\n\n    pub fn squeeze(&mut self) -> Field {\n        assert(!self.squeeze_mode);\n        // If we're in absorb mode, apply sponge permutation to compress the cache.\n        self.perform_duplex();\n        self.squeeze_mode = true;\n\n        // Pop one item off the top of the permutation and return it.\n        self.state[0]\n    }\n\n    fn hash_internal<let N: u32>(\n        input: [Field; N],\n        in_len: u32,\n        is_variable_length: bool,\n    ) -> Field {\n        let iv: Field = (in_len as Field) * TWO_POW_64;\n        let mut sponge = Poseidon2Sponge::new(iv);\n        for i in 0..input.len() {\n            if i < in_len {\n                sponge.absorb(input[i]);\n            }\n        }\n\n        sponge.squeeze()\n    }\n}\n"
    },
    "413": {
      "function_locations": [
        {
          "name": "hash_public_key",
          "start": 772
        },
        {
          "name": "<impl ToPoint for IvpkM>::to_point",
          "start": 1029
        },
        {
          "name": "<impl Hash for IvpkM>::hash",
          "start": 1108
        },
        {
          "name": "<impl Default for PublicKeys>::default",
          "start": 1840
        },
        {
          "name": "PublicKeys::hash",
          "start": 2297
        },
        {
          "name": "PublicKeys::validate_on_curve",
          "start": 2986
        },
        {
          "name": "PublicKeys::validate_non_infinity",
          "start": 3299
        },
        {
          "name": "<impl ToPoint for AddressPoint>::to_point",
          "start": 3543
        },
        {
          "name": "test::default_hashes_match_default_points",
          "start": 4538
        },
        {
          "name": "test::compute_public_keys_hash",
          "start": 5437
        },
        {
          "name": "test::test_validate_on_curve",
          "start": 5970
        },
        {
          "name": "test::test_validate_not_on_curve",
          "start": 6363
        },
        {
          "name": "test::test_validate_non_infinity",
          "start": 6708
        },
        {
          "name": "test::test_validate_infinity",
          "start": 7113
        },
        {
          "name": "test::compute_default_hash",
          "start": 7462
        },
        {
          "name": "test::serde",
          "start": 7756
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/public_keys.nr",
      "source": "use crate::{\n    address::public_keys_hash::PublicKeysHash,\n    constants::{\n        DEFAULT_FBPK_M_HASH, DEFAULT_IVPK_M_X, DEFAULT_IVPK_M_Y, DEFAULT_MSPK_M_HASH,\n        DEFAULT_NPK_M_HASH, DEFAULT_OVPK_M_HASH, DEFAULT_TPK_M_HASH, DOM_SEP__PUBLIC_KEYS_HASH,\n        DOM_SEP__SINGLE_PUBLIC_KEY_HASH,\n    },\n    hash::poseidon2_hash_with_separator,\n    point::{EmbeddedCurvePoint, validate_on_curve},\n    traits::{Deserialize, Hash, Serialize},\n};\n\nuse std::{default::Default, meta::derive};\n\npub trait ToPoint {\n    fn to_point(self) -> EmbeddedCurvePoint;\n}\n\n/// Hashes a public key point under the canonical single-public-key domain separator.\n///\n/// Defined as `Poseidon2(DOM_SEP__SINGLE_PUBLIC_KEY_HASH, x, y)`.\npub fn hash_public_key(p: EmbeddedCurvePoint) -> Field {\n    poseidon2_hash_with_separator([p.x, p.y], DOM_SEP__SINGLE_PUBLIC_KEY_HASH as Field)\n}\n\n#[derive(Deserialize, Eq, Serialize)]\npub struct IvpkM {\n    pub inner: EmbeddedCurvePoint,\n}\n\nimpl ToPoint for IvpkM {\n    fn to_point(self) -> EmbeddedCurvePoint {\n        self.inner\n    }\n}\n\nimpl Hash for IvpkM {\n    fn hash(self) -> Field {\n        hash_public_key(self.inner)\n    }\n}\n\n/// A non-owner's view of an account's master public keys.\n///\n/// `npk_m_hash`, `ovpk_m_hash`, `tpk_m_hash`, `mspk_m_hash`, and `fbpk_m_hash` are the\n/// [`hash_public_key`] digests of the underlying points. The points themselves are not exposed\n/// here - they are only known to the owner. `ivpk_m` remains a point because address derivation\n/// (encrypt-to-address) requires the raw point in-circuit.\n#[derive(Deserialize, Eq, Serialize)]\npub struct PublicKeys {\n    pub npk_m_hash: Field,\n    pub ivpk_m: IvpkM,\n    pub ovpk_m_hash: Field,\n    pub tpk_m_hash: Field,\n    pub mspk_m_hash: Field,\n    pub fbpk_m_hash: Field,\n}\n\nimpl Default for PublicKeys {\n    fn default() -> Self {\n        PublicKeys {\n            npk_m_hash: DEFAULT_NPK_M_HASH,\n            ivpk_m: IvpkM {\n                inner: EmbeddedCurvePoint { x: DEFAULT_IVPK_M_X, y: DEFAULT_IVPK_M_Y },\n            },\n            ovpk_m_hash: DEFAULT_OVPK_M_HASH,\n            tpk_m_hash: DEFAULT_TPK_M_HASH,\n            mspk_m_hash: DEFAULT_MSPK_M_HASH,\n            fbpk_m_hash: DEFAULT_FBPK_M_HASH,\n        }\n    }\n}\n\nimpl PublicKeys {\n    pub fn hash(self) -> PublicKeysHash {\n        PublicKeysHash::from_field(poseidon2_hash_with_separator(\n            [\n                self.npk_m_hash,\n                self.ivpk_m.hash(),\n                self.ovpk_m_hash,\n                self.tpk_m_hash,\n                self.mspk_m_hash,\n                self.fbpk_m_hash,\n            ],\n            DOM_SEP__PUBLIC_KEYS_HASH as Field,\n        ))\n    }\n\n    /// Validates that the (only) point-form key, `ivpk_m`, lies on the Grumpkin curve.\n    ///\n    /// The other five keys are exposed only as hashes and are unverifiable on-circuit; the PXE\n    /// is responsible for ensuring they were derived from on-curve points before persistence.\n    pub fn validate_on_curve(self) {\n        validate_on_curve(self.ivpk_m.inner);\n    }\n\n    /// Validates that `ivpk_m` is not the point at infinity.\n    ///\n    /// As with [`Self::validate_on_curve`], the other five keys are now exposed only as hashes\n    /// and this property must be enforced PXE-side.\n    pub fn validate_non_infinity(self) {\n        assert_eq(self.ivpk_m.inner.is_infinite(), false, \"IvpkM is the point at infinity\");\n    }\n}\n\npub struct AddressPoint {\n    pub inner: EmbeddedCurvePoint,\n}\n\nimpl ToPoint for AddressPoint {\n    fn to_point(self) -> EmbeddedCurvePoint {\n        self.inner\n    }\n}\n\nmod test {\n    use crate::constants::{\n        DEFAULT_FBPK_M_HASH, DEFAULT_FBPK_M_X, DEFAULT_FBPK_M_Y, DEFAULT_MSPK_M_HASH,\n        DEFAULT_MSPK_M_X, DEFAULT_MSPK_M_Y, DEFAULT_NPK_M_HASH, DEFAULT_NPK_M_X, DEFAULT_NPK_M_Y,\n        DEFAULT_OVPK_M_HASH, DEFAULT_OVPK_M_X, DEFAULT_OVPK_M_Y, DEFAULT_TPK_M_HASH,\n        DEFAULT_TPK_M_X, DEFAULT_TPK_M_Y,\n    };\n    use crate::{\n        point::EmbeddedCurvePoint,\n        public_keys::{hash_public_key, IvpkM, PublicKeys},\n        traits::{Deserialize, Serialize},\n    };\n\n    global PUBLIC_KEYS_LENGTH: u32 = 7;\n\n    /// Catches drift between the precomputed `DEFAULT_*_M_HASH` constants and the\n    /// `DEFAULT_*_M_X/Y` curve points they're derived from. If anyone updates the X/Y\n    /// constants (or the hashing primitive) without also updating the *_HASH constants,\n    /// this test fails and `PublicKeys::default()` would silently produce a stale value.\n    #[test]\n    fn default_hashes_match_default_points() {\n        let npk = hash_public_key(\n            EmbeddedCurvePoint { x: DEFAULT_NPK_M_X, y: DEFAULT_NPK_M_Y },\n        );\n        assert_eq(npk, DEFAULT_NPK_M_HASH);\n\n        let ovpk = hash_public_key(\n            EmbeddedCurvePoint { x: DEFAULT_OVPK_M_X, y: DEFAULT_OVPK_M_Y },\n        );\n        assert_eq(ovpk, DEFAULT_OVPK_M_HASH);\n\n        let tpk = hash_public_key(\n            EmbeddedCurvePoint { x: DEFAULT_TPK_M_X, y: DEFAULT_TPK_M_Y },\n        );\n        assert_eq(tpk, DEFAULT_TPK_M_HASH);\n\n        let mspk = hash_public_key(\n            EmbeddedCurvePoint { x: DEFAULT_MSPK_M_X, y: DEFAULT_MSPK_M_Y },\n        );\n        assert_eq(mspk, DEFAULT_MSPK_M_HASH);\n\n        let fbpk = hash_public_key(\n            EmbeddedCurvePoint { x: DEFAULT_FBPK_M_X, y: DEFAULT_FBPK_M_Y },\n        );\n        assert_eq(fbpk, DEFAULT_FBPK_M_HASH);\n    }\n\n    #[test]\n    fn compute_public_keys_hash() {\n        let keys = PublicKeys {\n            npk_m_hash: 11,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint { x: 3, y: 4 } },\n            ovpk_m_hash: 22,\n            tpk_m_hash: 33,\n            mspk_m_hash: 44,\n            fbpk_m_hash: 55,\n        };\n\n        let actual = keys.hash().to_field();\n\n        let expected_public_keys_hash =\n            0x1e57c605207e2b607720b8e3023f69f5af25683277db5ff3b99f7948213c7878;\n\n        assert_eq(actual, expected_public_keys_hash);\n    }\n\n    #[test]\n    fn test_validate_on_curve() {\n        let keys = PublicKeys {\n            npk_m_hash: 0,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint::generator().double() },\n            ovpk_m_hash: 0,\n            tpk_m_hash: 0,\n            mspk_m_hash: 0,\n            fbpk_m_hash: 0,\n        };\n\n        keys.validate_on_curve();\n    }\n\n    #[test(should_fail_with = \"Point not on curve\")]\n    fn test_validate_not_on_curve() {\n        let keys = PublicKeys {\n            npk_m_hash: 0,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint { x: 3, y: 4 } },\n            ovpk_m_hash: 0,\n            tpk_m_hash: 0,\n            mspk_m_hash: 0,\n            fbpk_m_hash: 0,\n        };\n\n        keys.validate_on_curve();\n    }\n\n    #[test]\n    fn test_validate_non_infinity() {\n        let keys = PublicKeys {\n            npk_m_hash: 0,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint::generator().double() },\n            ovpk_m_hash: 0,\n            tpk_m_hash: 0,\n            mspk_m_hash: 0,\n            fbpk_m_hash: 0,\n        };\n\n        keys.validate_non_infinity();\n    }\n\n    #[test(should_fail_with = \"IvpkM is the point at infinity\")]\n    fn test_validate_infinity() {\n        let keys = PublicKeys {\n            npk_m_hash: 0,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint::point_at_infinity() },\n            ovpk_m_hash: 0,\n            tpk_m_hash: 0,\n            mspk_m_hash: 0,\n            fbpk_m_hash: 0,\n        };\n\n        keys.validate_non_infinity();\n    }\n\n    #[test]\n    fn compute_default_hash() {\n        let keys = PublicKeys::default();\n\n        let actual = keys.hash().to_field();\n\n        let test_data_default_hash =\n            0x13c13fbec22a396f700180c621fb8c67b830b431fed47d4dd71a20d828829eaa;\n\n        assert_eq(actual, test_data_default_hash);\n    }\n\n    #[test]\n    fn serde() {\n        let keys = PublicKeys {\n            npk_m_hash: 11,\n            ivpk_m: IvpkM { inner: EmbeddedCurvePoint { x: 3, y: 4 } },\n            ovpk_m_hash: 22,\n            tpk_m_hash: 33,\n            mspk_m_hash: 44,\n            fbpk_m_hash: 55,\n        };\n\n        let serialized: [Field; PUBLIC_KEYS_LENGTH] = keys.serialize();\n        let deserialized = PublicKeys::deserialize(serialized);\n\n        assert_eq(keys, deserialized);\n    }\n}\n"
    },
    "418": {
      "function_locations": [
        {
          "name": "derive_storage_slot_in_map",
          "start": 274
        },
        {
          "name": "test::test_derive_storage_slot_in_map_matches_typescript",
          "start": 587
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/storage/map.nr",
      "source": "use crate::{\n    constants::DOM_SEP__PUBLIC_STORAGE_MAP_SLOT, hash::poseidon2_hash_with_separator,\n    traits::ToField,\n};\n\n// TODO: Move this to src/public_data/storage/map.nr\npub fn derive_storage_slot_in_map<K>(storage_slot: Field, key: K) -> Field\nwhere\n    K: ToField,\n{\n    poseidon2_hash_with_separator(\n        [storage_slot, key.to_field()],\n        DOM_SEP__PUBLIC_STORAGE_MAP_SLOT,\n    )\n}\n\nmod test {\n    use crate::{address::AztecAddress, storage::map::derive_storage_slot_in_map, traits::FromField};\n\n    #[test]\n    fn test_derive_storage_slot_in_map_matches_typescript() {\n        let map_slot = 0x132258fb6962c4387ba659d9556521102d227549a386d39f0b22d1890d59c2b5;\n        let key = AztecAddress::from_field(\n            0x302dbc2f9b50a73283d5fb2f35bc01eae8935615817a0b4219a057b2ba8a5a3f,\n        );\n\n        let slot = derive_storage_slot_in_map(map_slot, key);\n\n        // The following value was generated by `map_slot.test.ts`\n        let slot_from_typescript =\n            0x2d225f361108379adc2da91378b9702675c5546b57e78bafc1e74ec7fec55967;\n\n        assert_eq(slot, slot_from_typescript);\n    }\n}\n"
    },
    "42": {
      "function_locations": [
        {
          "name": "Option<T>::none",
          "start": 389
        },
        {
          "name": "Option<T>::some",
          "start": 553
        },
        {
          "name": "Option<T>::is_none",
          "start": 672
        },
        {
          "name": "Option<T>::is_some",
          "start": 774
        },
        {
          "name": "Option<T>::unwrap",
          "start": 898
        },
        {
          "name": "Option<T>::unwrap_unchecked",
          "start": 1196
        },
        {
          "name": "Option<T>::unwrap_or",
          "start": 1368
        },
        {
          "name": "Option<T>::unwrap_or_else",
          "start": 1668
        },
        {
          "name": "Option<T>::expect",
          "start": 1969
        },
        {
          "name": "Option<T>::map",
          "start": 2190
        },
        {
          "name": "Option<T>::map_or",
          "start": 2490
        },
        {
          "name": "Option<T>::map_or_else",
          "start": 2784
        },
        {
          "name": "Option<T>::and",
          "start": 3009
        },
        {
          "name": "Option<T>::and_then",
          "start": 3446
        },
        {
          "name": "Option<T>::or",
          "start": 3669
        },
        {
          "name": "Option<T>::or_else",
          "start": 3902
        },
        {
          "name": "Option<T>::xor",
          "start": 4192
        },
        {
          "name": "Option<T>::filter",
          "start": 4636
        },
        {
          "name": "Option<T>::flatten",
          "start": 5065
        },
        {
          "name": "<impl Default for Option<T>>::default",
          "start": 5242
        },
        {
          "name": "<impl Eq for Option<T>>::eq",
          "start": 5357
        },
        {
          "name": "<impl Hash for Option<T>>::hash",
          "start": 5706
        },
        {
          "name": "<impl Ord for Option<T>>::cmp",
          "start": 5975
        },
        {
          "name": "tests::some_and_none",
          "start": 6447
        },
        {
          "name": "tests::unwrap_succeeds",
          "start": 6677
        },
        {
          "name": "tests::unwrap_fails",
          "start": 6781
        },
        {
          "name": "tests::unwrap_or",
          "start": 6868
        },
        {
          "name": "tests::unwrap_or_else",
          "start": 7016
        },
        {
          "name": "tests::expect_succeeds",
          "start": 7181
        },
        {
          "name": "tests::expect_fails",
          "start": 7328
        },
        {
          "name": "tests::map",
          "start": 7427
        },
        {
          "name": "tests::map_or",
          "start": 7595
        },
        {
          "name": "tests::map_or_else",
          "start": 7762
        },
        {
          "name": "tests::and",
          "start": 7937
        },
        {
          "name": "tests::and_then",
          "start": 8277
        },
        {
          "name": "tests::or",
          "start": 8663
        },
        {
          "name": "tests::or_else",
          "start": 9000
        },
        {
          "name": "tests::xor",
          "start": 9365
        },
        {
          "name": "tests::filter",
          "start": 9704
        },
        {
          "name": "tests::flatten",
          "start": 10030
        },
        {
          "name": "tests::default",
          "start": 10301
        },
        {
          "name": "tests::eq",
          "start": 10394
        },
        {
          "name": "tests::cmp",
          "start": 10714
        }
      ],
      "path": "std/option.nr",
      "source": "use crate::cmp::{Eq, Ord, Ordering};\nuse crate::default::Default;\nuse crate::hash::{Hash, Hasher};\n\n/// Represents a value of type T or its absence.\n/// Use `Option::some(value)` to construct a value or `Option::none()` to record the absence of one.\npub struct Option<T> {\n    _is_some: bool,\n    _value: T,\n}\n\nimpl<T> Option<T> {\n    /// Constructs a None value\n    pub fn none() -> Self {\n        Self { _is_some: false, _value: crate::mem::zeroed() }\n    }\n\n    /// Constructs a Some wrapper around the given value\n    pub fn some(_value: T) -> Self {\n        Self { _is_some: true, _value }\n    }\n\n    /// True if this Option is None\n    pub fn is_none(&self) -> bool {\n        !self._is_some\n    }\n\n    /// True if this Option is Some\n    pub fn is_some(&self) -> bool {\n        self._is_some\n    }\n\n    /// Asserts `self.is_some()` and returns the wrapped value.\n    pub fn unwrap(self) -> T {\n        assert(self._is_some);\n        self._value\n    }\n\n    /// Returns the inner value without asserting `self.is_some()`\n    /// Note that if `self` is `None`, there is no guarantee what value will be returned,\n    /// only that it will be of type `T`.\n    pub fn unwrap_unchecked(self) -> T {\n        self._value\n    }\n\n    /// Returns the wrapped value if `self.is_some()`. Otherwise, returns the given default value.\n    pub fn unwrap_or(self, default: T) -> T {\n        if self._is_some {\n            self._value\n        } else {\n            default\n        }\n    }\n\n    /// Returns the wrapped value if `self.is_some()`. Otherwise, calls the given function to return\n    /// a default value.\n    pub fn unwrap_or_else<Env>(self, default: fn[Env]() -> T) -> T {\n        if self._is_some {\n            self._value\n        } else {\n            default()\n        }\n    }\n\n    /// Asserts `self.is_some()` with a provided custom message and returns the contained `Some` value\n    pub fn expect<let N: u32, MessageTypes>(self, message: fmtstr<N, MessageTypes>) -> T {\n        assert(self.is_some(), message);\n        self._value\n    }\n\n    /// If self is `Some(x)`, this returns `Some(f(x))`. Otherwise, this returns `None`.\n    pub fn map<U, Env>(self, f: fn[Env](T) -> U) -> Option<U> {\n        if self._is_some {\n            Option::some(f(self._value))\n        } else {\n            Option::none()\n        }\n    }\n\n    /// If self is `Some(x)`, this returns `f(x)`. Otherwise, this returns the given default value.\n    pub fn map_or<U, Env>(self, default: U, f: fn[Env](T) -> U) -> U {\n        if self._is_some {\n            f(self._value)\n        } else {\n            default\n        }\n    }\n\n    /// If self is `Some(x)`, this returns `f(x)`. Otherwise, this returns `default()`.\n    pub fn map_or_else<U, Env1, Env2>(self, default: fn[Env1]() -> U, f: fn[Env2](T) -> U) -> U {\n        if self._is_some {\n            f(self._value)\n        } else {\n            default()\n        }\n    }\n\n    /// Returns None if self is None. Otherwise, this returns `other`.\n    pub fn and(self, other: Self) -> Self {\n        if self.is_none() {\n            Option::none()\n        } else {\n            other\n        }\n    }\n\n    /// If self is None, this returns None. Otherwise, this calls the given function\n    /// with the Some value contained within self, and returns the result of that call.\n    ///\n    /// In some languages this function is called `flat_map` or `bind`.\n    pub fn and_then<U, Env>(self, f: fn[Env](T) -> Option<U>) -> Option<U> {\n        if self._is_some {\n            f(self._value)\n        } else {\n            Option::none()\n        }\n    }\n\n    /// If self is Some, return self. Otherwise, return `other`.\n    pub fn or(self, other: Self) -> Self {\n        if self._is_some {\n            self\n        } else {\n            other\n        }\n    }\n\n    /// If self is Some, return self. Otherwise, return `default()`.\n    pub fn or_else<Env>(self, default: fn[Env]() -> Self) -> Self {\n        if self._is_some {\n            self\n        } else {\n            default()\n        }\n    }\n\n    // If only one of the two Options is Some, return that option.\n    // Otherwise, if both options are Some or both are None, None is returned.\n    pub fn xor(self, other: Self) -> Self {\n        if self._is_some {\n            if other._is_some {\n                Option::none()\n            } else {\n                self\n            }\n        } else if other._is_some {\n            other\n        } else {\n            Option::none()\n        }\n    }\n\n    /// Returns `Some(x)` if self is `Some(x)` and `predicate(x)` is true.\n    /// Otherwise, this returns `None`\n    pub fn filter<Env>(self, predicate: fn[Env](T) -> bool) -> Self {\n        if self._is_some {\n            if predicate(self._value) {\n                self\n            } else {\n                Option::none()\n            }\n        } else {\n            Option::none()\n        }\n    }\n\n    /// Flattens an Option<Option<T>> into a Option<T>.\n    /// This returns None if the outer Option is None. Otherwise, this returns the inner Option.\n    pub fn flatten(option: Option<Option<T>>) -> Option<T> {\n        if option._is_some {\n            option._value\n        } else {\n            Option::none()\n        }\n    }\n}\n\nimpl<T> Default for Option<T> {\n    fn default() -> Self {\n        Option::none()\n    }\n}\n\nimpl<T> Eq for Option<T>\nwhere\n    T: Eq,\n{\n    fn eq(self, other: Self) -> bool {\n        if self._is_some == other._is_some {\n            if self._is_some {\n                self._value == other._value\n            } else {\n                true\n            }\n        } else {\n            false\n        }\n    }\n}\n\nimpl<T> Hash for Option<T>\nwhere\n    T: Hash,\n{\n    fn hash<H>(self, state: &mut H)\n    where\n        H: Hasher,\n    {\n        self._is_some.hash(state);\n        if self._is_some {\n            self._value.hash(state);\n        }\n    }\n}\n\n// For this impl we're declaring Option::none < Option::some\nimpl<T> Ord for Option<T>\nwhere\n    T: Ord,\n{\n    fn cmp(self, other: Self) -> Ordering {\n        if self._is_some {\n            if other._is_some {\n                self._value.cmp(other._value)\n            } else {\n                Ordering::greater()\n            }\n        } else if other._is_some {\n            Ordering::less()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nmod tests {\n    use crate::cmp::Ord;\n    use crate::cmp::Ordering;\n    use crate::default::Default as _;\n    use super::Option;\n\n    #[test]\n    fn some_and_none() {\n        assert(Option::<u8>::none().is_none());\n        assert(!Option::<u8>::none().is_some());\n        assert(Option::some(1).is_some());\n        assert(!Option::some(1).is_none());\n    }\n\n    #[test]\n    fn unwrap_succeeds() {\n        assert_eq(Option::some(1).unwrap(), 1);\n    }\n\n    #[test(should_fail)]\n    fn unwrap_fails() {\n        let _ = Option::<u8>::none().unwrap();\n    }\n\n    #[test]\n    fn unwrap_or() {\n        assert_eq(Option::some(1).unwrap_or(2), 1);\n        assert_eq(Option::none().unwrap_or(2), 2);\n    }\n\n    #[test]\n    fn unwrap_or_else() {\n        assert_eq(Option::some(1).unwrap_or_else(|| 2), 1);\n        assert_eq(Option::none().unwrap_or_else(|| 2), 2);\n    }\n\n    #[test]\n    fn expect_succeeds() {\n        assert_eq(Option::some(1).expect(f\"Should be there\"), 1);\n    }\n\n    #[test(should_fail_with = \"Should be there\")]\n    fn expect_fails() {\n        let _ = Option::<u8>::none().expect(f\"Should be there\");\n    }\n\n    #[test]\n    fn map() {\n        assert(Option::<u8>::none().map(|x| x + 1).is_none());\n        assert_eq(Option::some(1).map(|x| x + 1), Option::some(2));\n    }\n\n    #[test]\n    fn map_or() {\n        assert_eq(Option::<u8>::none().map_or(0, |x| x + 1), 0);\n        assert_eq(Option::some(1).map_or(0, |x| x + 1), 2);\n    }\n\n    #[test]\n    fn map_or_else() {\n        assert_eq(Option::<u8>::none().map_or_else(|| 0, |x| x + 1), 0);\n        assert_eq(Option::some(1).map_or_else(|| 0, |x| x + 1), 2);\n    }\n\n    #[test]\n    fn and() {\n        assert_eq(Option::<u8>::none().and(Option::none()), Option::none());\n        assert_eq(Option::<u8>::none().and(Option::some(1)), Option::none());\n        assert_eq(Option::some(1).and(Option::some(2)), Option::some(2));\n        assert_eq(Option::some(1).and(Option::none()), Option::none());\n    }\n\n    #[test]\n    fn and_then() {\n        assert_eq(Option::<u8>::none().and_then(|_| Option::<u8>::none()), Option::none());\n        assert_eq(Option::<u8>::none().and_then(|_| Option::some(1)), Option::none());\n        assert_eq(Option::some(1).and_then(|x| Option::some(x + 1)), Option::some(2));\n        assert_eq(Option::some(1).and_then(|_| Option::<u8>::none()), Option::none());\n    }\n\n    #[test]\n    fn or() {\n        assert_eq(Option::<u8>::none().or(Option::none()), Option::none());\n        assert_eq(Option::<u8>::none().or(Option::some(1)), Option::some(1));\n        assert_eq(Option::some(1).or(Option::some(2)), Option::some(1));\n        assert_eq(Option::some(1).or(Option::none()), Option::some(1));\n    }\n\n    #[test]\n    fn or_else() {\n        assert_eq(Option::<u8>::none().or_else(|| Option::none()), Option::none());\n        assert_eq(Option::<u8>::none().or_else(|| Option::some(1)), Option::some(1));\n        assert_eq(Option::some(1).or_else(|| Option::some(2)), Option::some(1));\n        assert_eq(Option::some(1).or_else(|| Option::none()), Option::some(1));\n    }\n\n    #[test]\n    fn xor() {\n        assert_eq(Option::<u8>::none().xor(Option::none()), Option::none());\n        assert_eq(Option::<u8>::none().xor(Option::some(1)), Option::some(1));\n        assert_eq(Option::some(1).xor(Option::some(2)), Option::none());\n        assert_eq(Option::some(1).xor(Option::none()), Option::some(1));\n    }\n\n    #[test]\n    fn filter() {\n        assert_eq(Option::<u8>::none().filter(|_| true), Option::none());\n        assert_eq(Option::some(1).filter(|x| x == 1), Option::some(1));\n        assert_eq(Option::some(1).filter(|x| x == 2), Option::none());\n        assert_eq(Option::some(1).filter(|x| x == 2), Option::none());\n    }\n\n    #[test]\n    fn flatten() {\n        assert_eq(Option::<Option<u8>>::none().flatten(), Option::none());\n        assert_eq(Option::some(Option::<u8>::none()).flatten(), Option::none());\n        assert_eq(Option::some(Option::some(1)).flatten(), Option::some(1));\n    }\n\n    #[test]\n    fn default() {\n        assert_eq(Option::<u8>::default(), Option::none());\n    }\n\n    #[test]\n    fn eq() {\n        assert(Option::<u8>::none() == Option::none());\n        assert(Option::<u8>::some(1) != Option::none());\n        assert(Option::<u8>::none() != Option::some(1));\n        assert(Option::<u8>::some(1) == Option::some(1));\n        assert(Option::<u8>::some(1) != Option::some(2));\n    }\n\n    #[test]\n    fn cmp() {\n        let none = Option::<u8>::none();\n        let one = Option::<u8>::some(1);\n        let two = Option::<u8>::some(2);\n        assert_eq(none.cmp(none), Ordering::equal());\n        assert_eq(none.cmp(one), Ordering::less());\n        assert_eq(one.cmp(none), Ordering::greater());\n        assert_eq(one.cmp(one), Ordering::equal());\n        assert_eq(one.cmp(two), Ordering::less());\n        assert_eq(two.cmp(one), Ordering::greater());\n    }\n}\n"
    },
    "425": {
      "function_locations": [
        {
          "name": "<impl ToField for Field>::to_field",
          "start": 176
        },
        {
          "name": "<impl ToField for bool>::to_field",
          "start": 276
        },
        {
          "name": "<impl ToField for u8>::to_field",
          "start": 382
        },
        {
          "name": "<impl ToField for u16>::to_field",
          "start": 468
        },
        {
          "name": "<impl ToField for u32>::to_field",
          "start": 575
        },
        {
          "name": "<impl ToField for u64>::to_field",
          "start": 682
        },
        {
          "name": "<impl ToField for u128>::to_field",
          "start": 790
        },
        {
          "name": "<impl ToField for str<N>>::to_field",
          "start": 912
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/traits/to_field.nr",
      "source": "use crate::utils::field::field_from_bytes;\n\npub trait ToField {\n    fn to_field(self) -> Field;\n}\n\nimpl ToField for Field {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self\n    }\n}\n\nimpl ToField for bool {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl ToField for u8 {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl ToField for u16 {\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl ToField for u32 {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl ToField for u64 {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl ToField for u128 {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        self as Field\n    }\n}\nimpl<let N: u32> ToField for str<N> {\n    #[inline_always]\n    fn to_field(self) -> Field {\n        assert(N < 32, \"String doesn't fit in a field, consider using Serialize instead\");\n        field_from_bytes(self.as_bytes(), true)\n    }\n}\n"
    },
    "426": {
      "function_locations": [
        {
          "name": "<impl Packable for bool>::pack",
          "start": 564
        },
        {
          "name": "<impl Packable for bool>::unpack",
          "start": 946
        },
        {
          "name": "<impl Packable for u8>::pack",
          "start": 1397
        },
        {
          "name": "<impl Packable for u8>::unpack",
          "start": 1499
        },
        {
          "name": "<impl Packable for u16>::pack",
          "start": 1651
        },
        {
          "name": "<impl Packable for u16>::unpack",
          "start": 1753
        },
        {
          "name": "<impl Packable for u32>::pack",
          "start": 1906
        },
        {
          "name": "<impl Packable for u32>::unpack",
          "start": 2008
        },
        {
          "name": "<impl Packable for u64>::pack",
          "start": 2161
        },
        {
          "name": "<impl Packable for u64>::unpack",
          "start": 2263
        },
        {
          "name": "<impl Packable for u128>::pack",
          "start": 2418
        },
        {
          "name": "<impl Packable for u128>::unpack",
          "start": 2520
        },
        {
          "name": "<impl Packable for Field>::pack",
          "start": 2678
        },
        {
          "name": "<impl Packable for Field>::unpack",
          "start": 2771
        },
        {
          "name": "<impl Packable for i8>::pack",
          "start": 2915
        },
        {
          "name": "<impl Packable for i8>::unpack",
          "start": 3023
        },
        {
          "name": "<impl Packable for i16>::pack",
          "start": 3181
        },
        {
          "name": "<impl Packable for i16>::unpack",
          "start": 3290
        },
        {
          "name": "<impl Packable for i32>::pack",
          "start": 3450
        },
        {
          "name": "<impl Packable for i32>::unpack",
          "start": 3559
        },
        {
          "name": "<impl Packable for i64>::pack",
          "start": 3719
        },
        {
          "name": "<impl Packable for i64>::unpack",
          "start": 3828
        },
        {
          "name": "<impl Packable for super::point::EmbeddedCurvePoint>::pack",
          "start": 3997
        },
        {
          "name": "<impl Packable for super::point::EmbeddedCurvePoint>::unpack",
          "start": 4079
        },
        {
          "name": "<impl Packable for [T; M]>::pack",
          "start": 4290
        },
        {
          "name": "<impl Packable for [T; M]>::unpack",
          "start": 4652
        },
        {
          "name": "test_u16_packing",
          "start": 4897
        },
        {
          "name": "test_i8_packing",
          "start": 4993
        },
        {
          "name": "test_i16_packing",
          "start": 5089
        },
        {
          "name": "test_i32_packing",
          "start": 5187
        },
        {
          "name": "test_i64_packing",
          "start": 5285
        },
        {
          "name": "test_bool_unpack_accepts_canonical_values",
          "start": 5408
        },
        {
          "name": "test_bool_unpack_rejects_even_non_bool",
          "start": 5594
        },
        {
          "name": "test_bool_unpack_rejects_odd_non_bool",
          "start": 5827
        },
        {
          "name": "test_bool_unpack_rejects_large_field",
          "start": 6058
        },
        {
          "name": "test_bool_pack_unpack_roundtrip",
          "start": 6145
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/type_packing.nr",
      "source": "use crate::traits::{Deserialize, Packable, Serialize};\n\nglobal BOOL_PACKED_LEN: u32 = 1;\nglobal U8_PACKED_LEN: u32 = 1;\nglobal U16_PACKED_LEN: u32 = 1;\nglobal U32_PACKED_LEN: u32 = 1;\nglobal U64_PACKED_LEN: u32 = 1;\nglobal U128_PACKED_LEN: u32 = 1;\nglobal FIELD_PACKED_LEN: u32 = 1;\nglobal I8_PACKED_LEN: u32 = 1;\nglobal I16_PACKED_LEN: u32 = 1;\nglobal I32_PACKED_LEN: u32 = 1;\nglobal I64_PACKED_LEN: u32 = 1;\nglobal POINT_PACKED_LEN: u32 = 2;\n\nimpl Packable for bool {\n    let N: u32 = BOOL_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    /// Unpacks a `bool`, constraining the field to be a canonical boolean. A field outside `{0, 1}` is\n    /// rejected (rather than silently reinterpreted), so an arbitrary-origin field cannot be misread.\n    /// `pack` always emits `0` or `1`, so round-tripping is unaffected.\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> bool {\n        let v = fields[0];\n        // v * v == v holds iff v is 0 or 1: a single degree-2 constraint that both validates the field\n        // is a canonical bool and avoids the byte-range decomposition that a cast to u8 would require.\n        assert(v * v == v, \"Packable::unpack: bool field must be 0 or 1\");\n        v == 1\n    }\n}\n\nimpl Packable for u8 {\n    let N: u32 = U8_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u8\n    }\n}\n\nimpl Packable for u16 {\n    let N: u32 = U16_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u16\n    }\n}\n\nimpl Packable for u32 {\n    let N: u32 = U32_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u32\n    }\n}\n\nimpl Packable for u64 {\n    let N: u32 = U64_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u64\n    }\n}\n\nimpl Packable for u128 {\n    let N: u32 = U128_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u128\n    }\n}\n\nimpl Packable for Field {\n    let N: u32 = FIELD_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0]\n    }\n}\n\nimpl Packable for i8 {\n    let N: u32 = I8_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as u8 as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u8 as i8\n    }\n}\n\nimpl Packable for i16 {\n    let N: u32 = I16_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as u16 as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u16 as i16\n    }\n}\n\nimpl Packable for i32 {\n    let N: u32 = I32_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as u32 as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u32 as i32\n    }\n}\n\nimpl Packable for i64 {\n    let N: u32 = I64_PACKED_LEN;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        [self as u64 as Field]\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        fields[0] as u64 as i64\n    }\n}\n\nimpl Packable for super::point::EmbeddedCurvePoint {\n    let N: u32 = POINT_PACKED_LEN;\n    fn pack(self) -> [Field; Self::N] {\n        self.serialize()\n    }\n\n    fn unpack(packed: [Field; Self::N]) -> Self {\n        Self::deserialize(packed)\n    }\n}\n\nimpl<T, let M: u32> Packable for [T; M]\nwhere\n    T: Packable,\n{\n    let N: u32 = M * <T as Packable>::N;\n\n    #[inline_always]\n    fn pack(self) -> [Field; Self::N] {\n        let mut result: [Field; Self::N] = std::mem::zeroed();\n        for i in 0..M {\n            let serialized = self[i].pack();\n            for j in 0..<T as Packable>::N {\n                result[i * <T as Packable>::N + j] = serialized[j];\n            }\n        }\n        result\n    }\n\n    #[inline_always]\n    fn unpack(fields: [Field; Self::N]) -> Self {\n        let mut reader = crate::utils::reader::Reader::new(fields);\n        let result: [T; M] = std::mem::zeroed();\n        reader.read_struct_array::<T, <T as Packable>::N, M>(Packable::unpack, result)\n    }\n}\n\n#[test]\nfn test_u16_packing() {\n    let a: u16 = 10;\n    assert_eq(a, u16::unpack(a.pack()));\n}\n\n#[test]\nfn test_i8_packing() {\n    let a: i8 = -10;\n    assert_eq(a, i8::unpack(a.pack()));\n}\n\n#[test]\nfn test_i16_packing() {\n    let a: i16 = -10;\n    assert_eq(a, i16::unpack(a.pack()));\n}\n\n#[test]\nfn test_i32_packing() {\n    let a: i32 = -10;\n    assert_eq(a, i32::unpack(a.pack()));\n}\n\n#[test]\nfn test_i64_packing() {\n    let a: i64 = -10;\n    assert_eq(a, i64::unpack(a.pack()));\n}\n\n#[test]\nfn test_bool_unpack_accepts_canonical_values() {\n    assert_eq(bool::unpack([0]), false);\n    assert_eq(bool::unpack([1]), true);\n}\n\n#[test(should_fail_with = \"bool field must be 0 or 1\")]\nfn test_bool_unpack_rejects_even_non_bool() {\n    // 2 has LSB 0, so the previous LSB-based unpack silently returned false; now it is rejected.\n    let _ = bool::unpack([2]);\n}\n\n#[test(should_fail_with = \"bool field must be 0 or 1\")]\nfn test_bool_unpack_rejects_odd_non_bool() {\n    // 3 has LSB 1, so the previous LSB-based unpack silently returned true; now it is rejected.\n    let _ = bool::unpack([3]);\n}\n\n#[test(should_fail_with = \"bool field must be 0 or 1\")]\nfn test_bool_unpack_rejects_large_field() {\n    let _ = bool::unpack([1000000]);\n}\n\n#[test]\nfn test_bool_pack_unpack_roundtrip() {\n    // `pack` always emits 0 or 1, so it round-trips through the canonical-bool check in `unpack`.\n    assert_eq(true.pack(), [1]);\n    assert_eq(false.pack(), [0]);\n    assert_eq(bool::unpack(true.pack()), true);\n    assert_eq(bool::unpack(false.pack()), false);\n}\n"
    },
    "43": {
      "function_locations": [
        {
          "name": "panic",
          "start": 196
        },
        {
          "name": "tests::panics",
          "start": 469
        }
      ],
      "path": "std/panic.nr",
      "source": "/// Halt the program at runtime with the given error message.\n///\n/// The provided error message must be either a `str` or a `fmtstr`.\npub fn panic<T, U>(message: T) -> U\nwhere\n    T: StringLike,\n{\n    assert(false, message);\n    crate::mem::zeroed()\n}\n\ntrait StringLike {}\n\nimpl<let N: u32> StringLike for str<N> {}\nimpl<let N: u32, T> StringLike for fmtstr<N, T> {}\n\nmod tests {\n    use crate::prelude::panic;\n\n    #[test(should_fail_with = \"OH NO\")]\n    fn panics() {\n        panic(\"OH NO\");\n    }\n}\n"
    },
    "433": {
      "function_locations": [
        {
          "name": "field_from_bytes",
          "start": 79
        },
        {
          "name": "field_from_bytes_32_trunc",
          "start": 555
        },
        {
          "name": "min",
          "start": 1056
        },
        {
          "name": "pow",
          "start": 1901
        },
        {
          "name": "sqrt",
          "start": 2235
        },
        {
          "name": "is_square",
          "start": 2917
        },
        {
          "name": "tonelli_shanks_sqrt",
          "start": 3345
        },
        {
          "name": "__sqrt",
          "start": 3953
        },
        {
          "name": "validate_sqrt_hint",
          "start": 4797
        },
        {
          "name": "validate_not_sqrt_hint",
          "start": 4934
        },
        {
          "name": "bytes_field_test",
          "start": 6572
        },
        {
          "name": "max_field_test",
          "start": 7555
        },
        {
          "name": "sqrt_valid_test",
          "start": 8179
        },
        {
          "name": "sqrt_invalid_test",
          "start": 8381
        },
        {
          "name": "sqrt_zero_test",
          "start": 8550
        },
        {
          "name": "sqrt_one_test",
          "start": 8687
        },
        {
          "name": "field_from_bytes_empty_test",
          "start": 8856
        },
        {
          "name": "field_from_bytes_little_endian_test",
          "start": 9109
        },
        {
          "name": "pow_test",
          "start": 9494
        },
        {
          "name": "min_test",
          "start": 9717
        },
        {
          "name": "sqrt_has_two_roots_test",
          "start": 9891
        },
        {
          "name": "sqrt_negative_one_test",
          "start": 10564
        },
        {
          "name": "validate_sqrt_hint_valid_test",
          "start": 10770
        },
        {
          "name": "validate_sqrt_hint_invalid_test",
          "start": 11201
        },
        {
          "name": "validate_not_sqrt_hint_valid_test",
          "start": 11333
        },
        {
          "name": "validate_not_sqrt_hint_zero_test",
          "start": 11613
        },
        {
          "name": "validate_not_sqrt_hint_wrong_hint_test",
          "start": 11830
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/types/src/utils/field.nr",
      "source": "pub fn field_from_bytes<let N: u32>(bytes: [u8; N], big_endian: bool) -> Field {\n    std::static_assert(N < 32, \"field_from_bytes: N must be less than 32\");\n    let mut as_field = 0;\n    let mut offset = 1;\n    for i in 0..N {\n        let mut index = i;\n        if big_endian {\n            index = N - i - 1;\n        }\n        as_field += (bytes[index] as Field) * offset;\n        offset *= 256;\n    }\n\n    as_field\n}\n\n// Convert a 32 byte array to a field element by truncating the final byte\npub fn field_from_bytes_32_trunc(bytes32: [u8; 32]) -> Field {\n    // Convert it to a field element\n    let mut v = 1;\n    let mut high = 0 as Field;\n    let mut low = 0 as Field;\n\n    for i in 0..15 {\n        // covers bytes 16..30 (31 is truncated and ignored)\n        low = low + (bytes32[15 + 15 - i] as Field) * v;\n        v = v * 256;\n        // covers bytes 0..14\n        high = high + (bytes32[14 - i] as Field) * v;\n    }\n    // covers byte 15\n    low = low + (bytes32[15] as Field) * v;\n\n    low + high * v\n}\n\npub fn min(f1: Field, f2: Field) -> Field {\n    if f1.lt(f2) {\n        f1\n    } else {\n        f2\n    }\n}\n\n// TODO: write doc-comments and tests for these magic constants.\n\nglobal KNOWN_NON_RESIDUE: Field = 5; // This is a non-residue in Noir's native Field.\nglobal C1: u32 = 28;\nglobal C3: Field = 40770029410420498293352137776570907027550720424234931066070132305055;\nglobal C5: Field = 19103219067921713944291392827692070036145651957329286315305642004821462161904;\n\n// @dev: only use this for _huge_ exponents y, when writing a constrained function.\n// If you're only exponentiating by a small value, first consider writing-out the multiplications by hand.\n// Only after you've measured the gates of that approach, consider using the native Field::pow_32 function.\n// Only if your exponent is larger than 32 bits, resort to using this function.\npub fn pow(x: Field, y: Field) -> Field {\n    let mut r = 1 as Field;\n    let b: [bool; 254] = y.to_le_bits();\n\n    for i in 0..254 {\n        r *= r;\n        r *= (b[254 - 1 - i] as Field) * x + (1 - b[254 - 1 - i] as Field);\n    }\n\n    r\n}\n\n/// Returns Option::some(sqrt) if there is a square root, and Option::none() if there isn't.\npub fn sqrt(x: Field) -> Option<Field> {\n    // Safety: if the hint returns the square root of x, then we simply square it\n    // check the result equals x. If x is not square, we return a value that\n    // enables us to prove that fact (see the `else` clause below).\n    let (is_sq, maybe_sqrt) = unsafe { __sqrt(x) };\n\n    if is_sq {\n        let sqrt = maybe_sqrt;\n        validate_sqrt_hint(x, sqrt);\n        Option::some(sqrt)\n    } else {\n        let not_sqrt_hint = maybe_sqrt;\n        validate_not_sqrt_hint(x, not_sqrt_hint);\n        Option::none()\n    }\n}\n\n// Boolean indicating whether Field element is a square, i.e. whether there exists a y in Field s.t. x = y*y.\nunconstrained fn is_square(x: Field) -> bool {\n    let v = pow(x, -1 / 2);\n    v * (v - 1) == 0\n}\n\n// Tonelli-Shanks algorithm for computing the square root of a Field element.\n// Requires C1 = max{c: 2^c divides (p-1)}, where p is the order of Field\n// as well as C3 = (C2 - 1)/2, where C2 = (p-1)/(2^c1),\n// and C5 = ZETA^C2, where ZETA is a non-square element of Field.\n// These are pre-computed above as globals.\nunconstrained fn tonelli_shanks_sqrt(x: Field) -> Field {\n    let mut z = pow(x, C3);\n    let mut t = z * z * x;\n    z *= x;\n    let mut b = t;\n    let mut c = C5;\n\n    for i in 0..(C1 - 1) {\n        for _j in 1..(C1 - i - 1) {\n            b *= b;\n        }\n\n        z *= if b == 1 { 1 } else { c };\n\n        c *= c;\n\n        t *= if b == 1 { 1 } else { c };\n\n        b = t;\n    }\n\n    z\n}\n\n// NB: this doesn't return an option, because in the case of there _not_ being a square root, we still want to return a field element that allows us to then assert in the _constrained_ sqrt function that there is no sqrt.\nunconstrained fn __sqrt(x: Field) -> (bool, Field) {\n    let is_sq = is_square(x);\n    if is_sq {\n        let sqrt = tonelli_shanks_sqrt(x);\n        (true, sqrt)\n    } else {\n        // Demonstrate that x is not a square (a.k.a. a \"quadratic non-residue\").\n        // Facts:\n        // The Legendre symbol (\"LS\") of x, is x^((p-1)/2) (mod p).\n        // - If x is a square, LS(x) = 1\n        // - If x is not a square, LS(x) = -1\n        // - If x = 0, LS(x) = 0.\n        //\n        // Hence:\n        // sq * sq = sq // 1 * 1 = 1\n        // non-sq * non-sq = sq // -1 * -1 = 1\n        // sq * non-sq = non-sq // -1 * 1 = -1\n        //\n        // See: https://en.wikipedia.org/wiki/Legendre_symbol\n        let demo_x_not_square = x * KNOWN_NON_RESIDUE;\n        let not_sqrt = tonelli_shanks_sqrt(demo_x_not_square);\n        (false, not_sqrt)\n    }\n}\n\nfn validate_sqrt_hint(x: Field, hint: Field) {\n    assert(hint * hint == x, f\"The claimed_sqrt {hint} is not the sqrt of x {x}\");\n}\n\nfn validate_not_sqrt_hint(x: Field, hint: Field) {\n    // We need this assertion, because x = 0 would pass the other assertions in this\n    // function, and we don't want people to be able to prove that 0 is not square!\n    assert(x != 0, \"0 has a square root; you cannot claim it is not square\");\n    // Demonstrate that x is not a square (a.k.a. a \"quadratic non-residue\").\n    //\n    // Facts:\n    // The Legendre symbol (\"LS\") of x, is x^((p-1)/2) (mod p).\n    // - If x is a square, LS(x) = 1\n    // - If x is not a square, LS(x) = -1\n    // - If x = 0, LS(x) = 0.\n    //\n    // Hence:\n    // 1. sq * sq = sq // 1 * 1 = 1\n    // 2. non-sq * non-sq = sq // -1 * -1 = 1\n    // 3. sq * non-sq = non-sq // -1 * 1 = -1\n    //\n    // See: https://en.wikipedia.org/wiki/Legendre_symbol\n    //\n    // We want to demonstrate that this below multiplication falls under bullet-point (2):\n    let demo_x_not_square = x * KNOWN_NON_RESIDUE;\n    // I.e. we want to demonstrate that `demo_x_not_square` has Legendre symbol 1\n    // (i.e. that it is a square), so we prove that it is square below.\n    // Why do we want to prove that it has LS 1?\n    // Well, since it was computed with a known-non-residue, its squareness implies we're\n    // in case 2 (something multiplied by a known-non-residue yielding a result which\n    // has a LS of 1), which implies that x must be a non-square. The unconstrained\n    // function gave us the sqrt of demo_x_not_square, so all we need to do is\n    // assert its squareness:\n    assert(\n        hint * hint == demo_x_not_square,\n        f\"The hint {hint} does not demonstrate that {x} is not a square\",\n    );\n}\n\n#[test]\nunconstrained fn bytes_field_test() {\n    // Tests correctness of field_from_bytes_32_trunc against existing methods\n    // Bytes representing 0x543e0a6642ffeb8039296861765a53407bba62bd1c97ca43374de950bbe0a7\n    let inputs = [\n        84, 62, 10, 102, 66, 255, 235, 128, 57, 41, 104, 97, 118, 90, 83, 64, 123, 186, 98, 189, 28,\n        151, 202, 67, 55, 77, 233, 80, 187, 224, 167,\n    ];\n    let field = field_from_bytes(inputs, true);\n    let return_bytes: [u8; 31] = field.to_be_bytes();\n    assert_eq(inputs, return_bytes);\n    // 32 bytes - we remove the final byte, and check it matches the field\n    let inputs2 = [\n        84, 62, 10, 102, 66, 255, 235, 128, 57, 41, 104, 97, 118, 90, 83, 64, 123, 186, 98, 189, 28,\n        151, 202, 67, 55, 77, 233, 80, 187, 224, 167, 158,\n    ];\n    let field2 = field_from_bytes_32_trunc(inputs2);\n    let return_bytes2: [u8; 31] = field2.to_be_bytes();\n\n    assert_eq(return_bytes2, return_bytes);\n    assert_eq(field2, field);\n}\n\n#[test]\nunconstrained fn max_field_test() {\n    // Tests the hardcoded value in constants.nr vs underlying modulus\n    // NB: We can't use 0-1 in constants.nr as it will be transpiled incorrectly to ts and sol constants files\n    let max_value = crate::constants::MAX_FIELD_VALUE;\n    assert_eq(max_value, 0 - 1);\n    // modulus == 0 is tested elsewhere, so below is more of a sanity check\n    let max_bytes: [u8; 32] = max_value.to_be_bytes();\n    let mod_bytes = std::field::modulus_be_bytes();\n    for i in 0..31 {\n        assert_eq(max_bytes[i], mod_bytes[i]);\n    }\n    assert_eq(max_bytes[31], mod_bytes[31] - 1);\n}\n\n#[test]\nunconstrained fn sqrt_valid_test() {\n    let x = 16; // examples: 16, 9, 25, 81\n    let result = sqrt(x);\n    assert(result.is_some());\n    assert_eq(result.unwrap() * result.unwrap(), x);\n}\n\n#[test]\nunconstrained fn sqrt_invalid_test() {\n    let x = KNOWN_NON_RESIDUE; // has no square root in the field\n    let result = sqrt(x);\n    assert(result.is_none());\n}\n\n#[test]\nunconstrained fn sqrt_zero_test() {\n    let result = sqrt(0);\n    assert(result.is_some());\n    assert_eq(result.unwrap(), 0);\n}\n\n#[test]\nunconstrained fn sqrt_one_test() {\n    let result = sqrt(1);\n    assert(result.is_some());\n    assert_eq(result.unwrap() * result.unwrap(), 1);\n}\n\n#[test]\nunconstrained fn field_from_bytes_empty_test() {\n    let empty: [u8; 0] = [];\n    let result = field_from_bytes(empty, true);\n    assert_eq(result, 0);\n\n    let result_le = field_from_bytes(empty, false);\n    assert_eq(result_le, 0);\n}\n\n#[test]\nunconstrained fn field_from_bytes_little_endian_test() {\n    // Test little-endian conversion: [0x01, 0x02] should be 0x0201 = 513\n    let bytes = [0x01, 0x02];\n    let result_le = field_from_bytes(bytes, false);\n    assert_eq(result_le, 0x0201);\n\n    // Compare with big-endian: [0x01, 0x02] should be 0x0102 = 258\n    let result_be = field_from_bytes(bytes, true);\n    assert_eq(result_be, 0x0102);\n}\n\n#[test]\nunconstrained fn pow_test() {\n    assert_eq(pow(2, 0), 1);\n    assert_eq(pow(2, 1), 2);\n    assert_eq(pow(2, 10), 1024);\n    assert_eq(pow(3, 5), 243);\n    assert_eq(pow(0, 5), 0);\n    assert_eq(pow(1, 100), 1);\n}\n\n#[test]\nunconstrained fn min_test() {\n    assert_eq(min(5, 10), 5);\n    assert_eq(min(10, 5), 5);\n    assert_eq(min(7, 7), 7);\n    assert_eq(min(0, 1), 0);\n}\n\n#[test]\nunconstrained fn sqrt_has_two_roots_test() {\n    // Every square has two roots: r and -r (i.e., p - r)\n    // sqrt(16) can return 4 or -4\n    let x = 16;\n    let result = sqrt(x).unwrap();\n    assert(result * result == x);\n    // The other root is -result\n    let other_root = 0 - result;\n    assert(other_root * other_root == x);\n    // Verify they are different (unless x = 0)\n    assert(result != other_root);\n\n    // Same for 9: roots are 3 and -3\n    let y = 9;\n    let result_y = sqrt(y).unwrap();\n    assert(result_y * result_y == y);\n    let other_root_y = 0 - result_y;\n    assert(other_root_y * other_root_y == y);\n    assert(result_y != other_root_y);\n}\n\n#[test]\nunconstrained fn sqrt_negative_one_test() {\n    let x = 0 - 1;\n    let result = sqrt(x);\n    assert(result.unwrap() == 0x30644e72e131a029048b6e193fd841045cea24f6fd736bec231204708f703636);\n}\n\n#[test]\nunconstrained fn validate_sqrt_hint_valid_test() {\n    // 4 is a valid sqrt of 16\n    validate_sqrt_hint(16, 4);\n    // -4 is also a valid sqrt of 16\n    validate_sqrt_hint(16, 0 - 4);\n    // 0 is a valid sqrt of 0\n    validate_sqrt_hint(0, 0);\n    // 1 is a valid sqrt of 1\n    validate_sqrt_hint(1, 1);\n    // -1 is also a valid sqrt of 1\n    validate_sqrt_hint(1, 0 - 1);\n}\n\n#[test(should_fail_with = \"is not the sqrt of x\")]\nunconstrained fn validate_sqrt_hint_invalid_test() {\n    // 5 is not a valid sqrt of 16\n    validate_sqrt_hint(16, 5);\n}\n\n#[test]\nunconstrained fn validate_not_sqrt_hint_valid_test() {\n    // 5 (KNOWN_NON_RESIDUE) is not a square.\n    let x = KNOWN_NON_RESIDUE;\n    let hint = tonelli_shanks_sqrt(x * KNOWN_NON_RESIDUE);\n    validate_not_sqrt_hint(x, hint);\n}\n\n#[test(should_fail_with = \"0 has a square root\")]\nunconstrained fn validate_not_sqrt_hint_zero_test() {\n    // 0 has a square root, so we cannot claim it is not square\n    validate_not_sqrt_hint(0, 0);\n}\n\n#[test(should_fail_with = \"does not demonstrate that\")]\nunconstrained fn validate_not_sqrt_hint_wrong_hint_test() {\n    // Provide a wrong hint for a non-square\n    let x = KNOWN_NON_RESIDUE;\n    validate_not_sqrt_hint(x, 123);\n}\n"
    },
    "439": {
      "function_locations": [
        {
          "name": "Reader<N>::new",
          "start": 144
        },
        {
          "name": "Reader<N>::read",
          "start": 222
        },
        {
          "name": "Reader<N>::read_u32",
          "start": 355
        },
        {
          "name": "Reader<N>::read_u64",
          "start": 429
        },
        {
          "name": "Reader<N>::read_bool",
          "start": 505
        },
        {
          "name": "Reader<N>::read_array",
          "start": 598
        },
        {
          "name": "Reader<N>::read_struct",
          "start": 855
        },
        {
          "name": "Reader<N>::read_struct_array",
          "start": 1094
        },
        {
          "name": "Reader<N>::peek_offset",
          "start": 1263
        },
        {
          "name": "Reader<N>::advance_offset",
          "start": 1362
        },
        {
          "name": "Reader<N>::finish",
          "start": 1426
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/serde/src/reader.nr",
      "source": "pub struct Reader<let N: u32> {\n    data: [Field; N],\n    offset: u32,\n}\n\nimpl<let N: u32> Reader<N> {\n    pub fn new(data: [Field; N]) -> Self {\n        Self { data, offset: 0 }\n    }\n\n    pub fn read(&mut self) -> Field {\n        let result = self.data[self.offset];\n        self.offset += 1;\n        result\n    }\n\n    pub fn read_u32(&mut self) -> u32 {\n        self.read() as u32\n    }\n\n    pub fn read_u64(&mut self) -> u64 {\n        self.read() as u64\n    }\n\n    pub fn read_bool(&mut self) -> bool {\n        self.read() != 0\n    }\n\n    pub fn read_array<let K: u32>(&mut self) -> [Field; K] {\n        let mut result = [0; K];\n        for i in 0..K {\n            result[i] = self.data[self.offset + i];\n        }\n        self.offset += K;\n        result\n    }\n\n    pub fn read_struct<T, let K: u32>(&mut self, deserialise: fn([Field; K]) -> T) -> T {\n        let result = deserialise(self.read_array());\n        result\n    }\n\n    pub fn read_struct_array<T, let K: u32, let C: u32>(\n        &mut self,\n        deserialise: fn([Field; K]) -> T,\n        mut result: [T; C],\n    ) -> [T; C] {\n        for i in 0..C {\n            result[i] = self.read_struct(deserialise);\n        }\n        result\n    }\n\n    pub fn peek_offset(&mut self, offset: u32) -> Field {\n        self.data[self.offset + offset]\n    }\n\n    pub fn advance_offset(&mut self, offset: u32) {\n        self.offset += offset;\n    }\n\n    pub fn finish(self) {\n        assert_eq(self.offset, self.data.len(), \"Reader did not read all data\");\n    }\n}\n"
    },
    "440": {
      "function_locations": [
        {
          "name": "derive_serialize",
          "start": 3018
        },
        {
          "name": "derive_deserialize",
          "start": 7208
        },
        {
          "name": "get_params_len_quote",
          "start": 10934
        },
        {
          "name": "get_generics_declarations",
          "start": 11393
        },
        {
          "name": "get_where_trait_clause",
          "start": 12477
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/serde/src/serialization.nr",
      "source": "use crate::{reader::Reader, writer::Writer};\n\n/// Trait for serializing Noir types into arrays of Fields.\n///\n/// An implementation of the Serialize trait has to follow Noir's intrinsic serialization (each member of a struct\n/// converted directly into one or more Fields without any packing or compression). This trait (and Deserialize) are\n/// typically used to communicate between Noir and TypeScript (via oracles and function arguments).\n///\n/// # On Following Noir's Intrinsic Serialization\n/// When calling a Noir function from TypeScript (TS), first the function arguments are serialized into an array\n/// of fields. This array is then included in the initial witness. Noir's intrinsic serialization is then used\n/// to deserialize the arguments from the witness. When the same Noir function is called from Noir this Serialize trait\n/// is used instead of the serialization in TS. For this reason we need to have a match between TS serialization,\n/// Noir's intrinsic serialization and the implementation of this trait. If there is a mismatch, the function calls\n/// fail with an arguments hash mismatch error message.\n///\n/// # Associated Constants\n/// * `N` - The length of the output Field array, known at compile time\n///\n/// # Example\n/// ```\n/// impl<let N: u32> Serialize for str<N> {\n///     let N: u32 = N;\n///\n///     fn serialize(self) -> [Field; Self::N] {\n///         let mut writer: Writer<Self::N> = Writer::new();\n///         self.stream_serialize(&mut writer);\n///         writer.finish()\n///     }\n///\n///     fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n///         let bytes = self.as_bytes();\n///         for i in 0..bytes.len() {\n///             writer.write(bytes[i] as Field);\n///         }\n///     }\n/// }\n/// ```\n#[derive_via(derive_serialize)]\npub trait Serialize {\n    let N: u32;\n\n    fn serialize(self) -> [Field; Self::N];\n\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>);\n}\n\n/// Generates a `Serialize` trait implementation for a struct type.\n///\n/// # Parameters\n/// - `s`: The struct type definition to generate the implementation for\n///\n/// # Returns\n/// A quoted code block containing the trait implementation\n///\n/// # Example\n/// For a struct defined as:\n/// ```\n/// struct Log<N> {\n///     fields: [Field; N],\n///     length: u32\n/// }\n/// ```\n///\n/// This function generates code equivalent to:\n/// ```\n/// impl<let N: u32> Serialize for Log<N> {\n///     let N: u32 = <[Field; N] as Serialize>::N + <u32 as Serialize>::N;\n///\n///     fn serialize(self) -> [Field; Self::N] {\n///         let mut writer: Writer<Self::N> = Writer::new();\n///         self.stream_serialize(&mut writer);\n///         writer.finish()\n///     }\n///\n///     #[inline_always]\n///     fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n///         Serialize::stream_serialize(self.fields, writer);\n///         Serialize::stream_serialize(self.length, writer);\n///     }\n/// }\n/// ```\npub comptime fn derive_serialize(s: TypeDefinition) -> Quoted {\n    let typ = s.as_type();\n    let nested_struct = typ.as_data_type().unwrap();\n\n    // We care only about the name and type so we drop the last item of the tuple\n    let params = nested_struct.0.fields(nested_struct.1).map(|(name, typ, _)| (name, typ));\n\n    // Generates the generic parameter declarations (to be placed after the `impl` keyword) and the `where` clause\n    // for the `Serialize` trait.\n    let generics_declarations = get_generics_declarations(s);\n    let where_serialize_clause = get_where_trait_clause(s, quote { Serialize });\n\n    let params_len_quote = get_params_len_quote(params);\n\n    let function_body = params\n        .map(|(name, _typ): (Quoted, Type)| {\n            quote {\n                $crate::serialization::Serialize::stream_serialize(self.$name, writer);\n            }\n        })\n        .join(quote {});\n\n    quote {\n        impl$generics_declarations $crate::serialization::Serialize for $typ\n            $where_serialize_clause\n        {\n            let N: u32 = $params_len_quote;\n\n\n            fn serialize(self) -> [Field; Self::N] {\n                let mut writer: $crate::writer::Writer<Self::N> = $crate::writer::Writer::new();\n                $crate::serialization::Serialize::stream_serialize(self, &mut writer);\n                writer.finish()\n            }\n\n\n            #[inline_always]\n             fn stream_serialize<let K: u32>(self, writer: &mut $crate::writer::Writer<K>) {\n                $function_body\n            }\n        }\n    }\n}\n\n/// Trait for deserializing Noir types from arrays of Fields.\n///\n/// An implementation of the Deserialize trait has to follow Noir's intrinsic serialization (each member of a struct\n/// converted directly into one or more Fields without any packing or compression). This trait is typically used when\n/// deserializing return values from function calls in Noir. Since the same function could be called from TypeScript\n/// (TS), in which case the TS deserialization would get used, we need to have a match between the 2.\n///\n/// # Associated Constants\n/// * `N` - The length of the input Field array, known at compile time\n///\n/// # Example\n/// ```\n/// impl<let M: u32> Deserialize for str<M> {\n///     let N: u32 = M;\n///\n///     fn deserialize(fields: [Field; Self::N]) -> Self {\n///         let mut reader = Reader::new(fields);\n///         let result = Self::stream_deserialize(&mut reader);\n///         reader.finish();\n///         result\n///     }\n///\n///     fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n///         let mut bytes = [0 as u8; M];\n///         for i in 0..M {\n///             bytes[i] = reader.read() as u8;\n///         }\n///         str::<M>::from(bytes)\n///     }\n/// }\n/// ```\n#[derive_via(derive_deserialize)]\npub trait Deserialize {\n    let N: u32;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self;\n\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self;\n}\n\n/// Generates a `Deserialize` trait implementation for a given struct `s`.\n///\n/// # Arguments\n/// * `s` - The struct type definition to generate the implementation for\n///\n/// # Returns\n/// A `Quoted` block containing the generated trait implementation\n///\n/// # Requirements\n/// Each struct member type must implement the `Deserialize` trait (it gets used in the generated code).\n///\n/// # Example\n/// For a struct like:\n/// ```\n/// struct MyStruct {\n///     x: AztecAddress,\n///     y: Field,\n/// }\n/// ```\n///\n/// This generates:\n/// ```\n/// impl Deserialize for MyStruct {\n///     let N: u32 = <AztecAddress as Deserialize>::N + <Field as Deserialize>::N;\n///\n///     fn deserialize(fields: [Field; Self::N]) -> Self {\n///         let mut reader = Reader::new(fields);\n///         let result = Self::stream_deserialize(&mut reader);\n///         reader.finish();\n///         result\n///     }\n///\n///     #[inline_always]\n///     fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n///         let x = <AztecAddress as Deserialize>::stream_deserialize(reader);\n///         let y = <Field as Deserialize>::stream_deserialize(reader);\n///         Self { x, y }\n///     }\n/// }\n/// ```\npub comptime fn derive_deserialize(s: TypeDefinition) -> Quoted {\n    let typ = s.as_type();\n    let nested_struct = typ.as_data_type().unwrap();\n    let params = nested_struct.0.fields(nested_struct.1);\n\n    // Generates the generic parameter declarations (to be placed after the `impl` keyword) and the `where` clause\n    // for the `Deserialize` trait.\n    let generics_declarations = get_generics_declarations(s);\n    let where_deserialize_clause = get_where_trait_clause(s, quote { Deserialize });\n\n    // The following will give us:\n    // <type_of_struct_member_1 as Deserialize>::N + <type_of_struct_member_2 as Deserialize>::N + ...\n    // (or 0 if the struct has no members)\n    let right_hand_side_of_definition_of_n = if params.len() > 0 {\n        params\n            .map(|(_, param_type, _): (Quoted, Type, Quoted)| {\n                quote {\n            <$param_type as $crate::serialization::Deserialize>::N\n        }\n            })\n            .join(quote {+})\n    } else {\n        quote { 0 }\n    };\n\n    // For structs containing a single member, we can enhance performance by directly deserializing the input array,\n    // bypassing the need for loop-based array construction. While this optimization yields significant benefits in\n    // Brillig where the loops are expected to not be optimized, it is not relevant in ACIR where the loops are\n    // expected to be optimized away.\n    let function_body = if params.len() > 1 {\n        // This generates deserialization code for each struct member and concatenates them together.\n        let deserialization_of_struct_members = params\n            .map(|(param_name, param_type, _): (Quoted, Type, Quoted)| {\n                quote {\n                    let $param_name = <$param_type as Deserialize>::stream_deserialize(reader);\n                }\n            })\n            .join(quote {});\n\n        // We join the struct member names with a comma to be used in the `Self { ... }` syntax\n        // This will give us e.g. `a, b, c` for a struct with three fields named `a`, `b`, and `c`.\n        let struct_members = params\n            .map(|(param_name, _, _): (Quoted, Type, Quoted)| quote { $param_name })\n            .join(quote {,});\n\n        quote {\n            $deserialization_of_struct_members\n\n            Self { $struct_members }\n        }\n    } else if params.len() == 1 {\n        let param_name = params[0].0;\n        quote {\n            Self { $param_name: $crate::serialization::Deserialize::stream_deserialize(reader) }\n        }\n    } else {\n        quote {\n            Self {}\n        }\n    };\n\n    quote {\n        impl$generics_declarations $crate::serialization::Deserialize for $typ\n            $where_deserialize_clause\n        {\n            let N: u32 = $right_hand_side_of_definition_of_n;\n\n            fn deserialize(fields: [Field; Self::N]) -> Self {\n                let mut reader = $crate::reader::Reader::new(fields);\n                let result = Self::stream_deserialize(&mut reader);\n                reader.finish();\n                result\n            }\n\n            #[inline_always]\n            fn stream_deserialize<let K: u32>(reader: &mut $crate::reader::Reader<K>) -> Self {\n                $function_body\n            }\n        }\n    }\n}\n\n/// Generates a quoted expression that computes the total serialized length of function parameters.\n///\n/// # Parameters\n/// * `params` - An array of tuples where each tuple contains a quoted parameter name and its Type. The type needs\n///              to implement the Serialize trait.\n///\n/// # Returns\n/// A quoted expression that evaluates to:\n/// * `0` if there are no parameters\n/// * `(<type1 as Serialize>::N + <type2 as Serialize>::N + ...)` for one or more parameters\ncomptime fn get_params_len_quote(params: [(Quoted, Type)]) -> Quoted {\n    if params.len() == 0 {\n        quote { 0 }\n    } else {\n        let params_quote_without_parentheses = params\n            .map(|(_, param_type): (Quoted, Type)| {\n                quote {\n                    <$param_type as $crate::serialization::Serialize>::N\n                }\n            })\n            .join(quote {+});\n        quote { ($params_quote_without_parentheses) }\n    }\n}\n\ncomptime fn get_generics_declarations(s: TypeDefinition) -> Quoted {\n    let generics = s.generics();\n\n    if generics.len() > 0 {\n        let generics_declarations_items = generics\n            .map(|(name, maybe_integer_typ)| {\n                // The second item in the generics tuple is an Option of an integer type that is Some only if\n                // the generic is numeric.\n                if maybe_integer_typ.is_some() {\n                    // The generic is numeric, so we return a quote defined as e.g. \"let N: u32\"\n                    let integer_type = maybe_integer_typ.unwrap();\n                    quote {let $name: $integer_type}\n                } else {\n                    // The generic is not numeric, so we return a quote containing the name of the generic (e.g. \"T\")\n                    quote { $name }\n                }\n            })\n            .join(quote {,});\n        quote {<$generics_declarations_items>}\n    } else {\n        // The struct doesn't have any generics defined, so we just return an empty quote.\n        quote {}\n    }\n}\n\ncomptime fn get_where_trait_clause(s: TypeDefinition, trait_name: Quoted) -> Quoted {\n    let generics = s.generics();\n\n    // The second item in the generics tuple is an Option of an integer type that is Some only if the generic is\n    // numeric.\n    let non_numeric_generics =\n        generics.filter(|(_, maybe_integer_typ)| maybe_integer_typ.is_none());\n\n    if non_numeric_generics.len() > 0 {\n        let non_numeric_generics_declarations =\n            non_numeric_generics.map(|(name, _)| quote {$name: $trait_name}).join(quote {,});\n        quote {where $non_numeric_generics_declarations}\n    } else {\n        // There are no non-numeric generics, so we return an empty quote.\n        quote {}\n    }\n}\n"
    },
    "442": {
      "function_locations": [
        {
          "name": "<impl Serialize for bool>::serialize",
          "start": 693
        },
        {
          "name": "<impl Serialize for bool>::stream_serialize",
          "start": 914
        },
        {
          "name": "<impl Deserialize for bool>::deserialize",
          "start": 1082
        },
        {
          "name": "<impl Deserialize for bool>::stream_deserialize",
          "start": 1328
        },
        {
          "name": "<impl Serialize for u8>::serialize",
          "start": 1470
        },
        {
          "name": "<impl Serialize for u8>::stream_serialize",
          "start": 1691
        },
        {
          "name": "<impl Deserialize for u8>::deserialize",
          "start": 1855
        },
        {
          "name": "<impl Deserialize for u8>::stream_deserialize",
          "start": 2101
        },
        {
          "name": "<impl Serialize for u16>::serialize",
          "start": 2246
        },
        {
          "name": "<impl Serialize for u16>::stream_serialize",
          "start": 2467
        },
        {
          "name": "<impl Deserialize for u16>::deserialize",
          "start": 2633
        },
        {
          "name": "<impl Deserialize for u16>::stream_deserialize",
          "start": 2879
        },
        {
          "name": "<impl Serialize for u32>::serialize",
          "start": 3025
        },
        {
          "name": "<impl Serialize for u32>::stream_serialize",
          "start": 3246
        },
        {
          "name": "<impl Deserialize for u32>::deserialize",
          "start": 3412
        },
        {
          "name": "<impl Deserialize for u32>::stream_deserialize",
          "start": 3658
        },
        {
          "name": "<impl Serialize for u64>::serialize",
          "start": 3804
        },
        {
          "name": "<impl Serialize for u64>::stream_serialize",
          "start": 4025
        },
        {
          "name": "<impl Deserialize for u64>::deserialize",
          "start": 4191
        },
        {
          "name": "<impl Deserialize for u64>::stream_deserialize",
          "start": 4437
        },
        {
          "name": "<impl Serialize for u128>::serialize",
          "start": 4585
        },
        {
          "name": "<impl Serialize for u128>::stream_serialize",
          "start": 4806
        },
        {
          "name": "<impl Deserialize for u128>::deserialize",
          "start": 4974
        },
        {
          "name": "<impl Deserialize for u128>::stream_deserialize",
          "start": 5220
        },
        {
          "name": "<impl Serialize for Field>::serialize",
          "start": 5371
        },
        {
          "name": "<impl Serialize for Field>::stream_serialize",
          "start": 5592
        },
        {
          "name": "<impl Deserialize for Field>::deserialize",
          "start": 5753
        },
        {
          "name": "<impl Deserialize for Field>::stream_deserialize",
          "start": 5999
        },
        {
          "name": "<impl Serialize for i8>::serialize",
          "start": 6136
        },
        {
          "name": "<impl Serialize for i8>::stream_serialize",
          "start": 6357
        },
        {
          "name": "<impl Deserialize for i8>::deserialize",
          "start": 6527
        },
        {
          "name": "<impl Deserialize for i8>::stream_deserialize",
          "start": 6773
        },
        {
          "name": "<impl Serialize for i16>::serialize",
          "start": 6924
        },
        {
          "name": "<impl Serialize for i16>::stream_serialize",
          "start": 7145
        },
        {
          "name": "<impl Deserialize for i16>::deserialize",
          "start": 7318
        },
        {
          "name": "<impl Deserialize for i16>::stream_deserialize",
          "start": 7564
        },
        {
          "name": "<impl Serialize for i32>::serialize",
          "start": 7717
        },
        {
          "name": "<impl Serialize for i32>::stream_serialize",
          "start": 7938
        },
        {
          "name": "<impl Deserialize for i32>::deserialize",
          "start": 8111
        },
        {
          "name": "<impl Deserialize for i32>::stream_deserialize",
          "start": 8357
        },
        {
          "name": "<impl Serialize for i64>::serialize",
          "start": 8510
        },
        {
          "name": "<impl Serialize for i64>::stream_serialize",
          "start": 8731
        },
        {
          "name": "<impl Deserialize for i64>::deserialize",
          "start": 8904
        },
        {
          "name": "<impl Deserialize for i64>::stream_deserialize",
          "start": 9150
        },
        {
          "name": "<impl Serialize for [T; M]>::serialize",
          "start": 9350
        },
        {
          "name": "<impl Serialize for [T; M]>::stream_serialize",
          "start": 9571
        },
        {
          "name": "<impl Deserialize for [T; M]>::deserialize",
          "start": 9831
        },
        {
          "name": "<impl Deserialize for [T; M]>::stream_deserialize",
          "start": 10077
        },
        {
          "name": "<impl Serialize for Option<T>>::serialize",
          "start": 10389
        },
        {
          "name": "<impl Serialize for Option<T>>::stream_serialize",
          "start": 10610
        },
        {
          "name": "<impl Deserialize for Option<T>>::deserialize",
          "start": 10997
        },
        {
          "name": "<impl Deserialize for Option<T>>::stream_deserialize",
          "start": 11243
        },
        {
          "name": "<impl Serialize for EmbeddedCurveScalar>::serialize",
          "start": 11621
        },
        {
          "name": "<impl Serialize for EmbeddedCurveScalar>::stream_serialize",
          "start": 11744
        },
        {
          "name": "<impl Deserialize for EmbeddedCurveScalar>::deserialize",
          "start": 11944
        },
        {
          "name": "<impl Deserialize for EmbeddedCurveScalar>::stream_deserialize",
          "start": 12090
        },
        {
          "name": "<impl Serialize for EmbeddedCurvePoint>::serialize",
          "start": 12297
        },
        {
          "name": "<impl Serialize for EmbeddedCurvePoint>::stream_serialize",
          "start": 12397
        },
        {
          "name": "<impl Deserialize for EmbeddedCurvePoint>::deserialize",
          "start": 12593
        },
        {
          "name": "<impl Deserialize for EmbeddedCurvePoint>::stream_deserialize",
          "start": 12737
        },
        {
          "name": "<impl Deserialize for str<M>>::deserialize",
          "start": 12916
        },
        {
          "name": "<impl Deserialize for str<M>>::stream_deserialize",
          "start": 13162
        },
        {
          "name": "<impl Serialize for str<M>>::serialize",
          "start": 13395
        },
        {
          "name": "<impl Serialize for str<M>>::stream_serialize",
          "start": 13616
        },
        {
          "name": "<impl Deserialize for BoundedVec<T, M>>::deserialize",
          "start": 13997
        },
        {
          "name": "<impl Deserialize for BoundedVec<T, M>>::stream_deserialize",
          "start": 14243
        },
        {
          "name": "<impl Deserialize for ()>::deserialize",
          "start": 15299
        },
        {
          "name": "<impl Deserialize for ()>::stream_deserialize",
          "start": 15546
        },
        {
          "name": "<impl Serialize for BoundedVec<T, M>>::serialize",
          "start": 15911
        },
        {
          "name": "<impl Serialize for BoundedVec<T, M>>::stream_serialize",
          "start": 16132
        },
        {
          "name": "make_slice",
          "start": 16617
        },
        {
          "name": "impl_serialize_for_tuple",
          "start": 16867
        },
        {
          "name": "<impl Serialize for (T1,)>::serialize",
          "start": 20178
        },
        {
          "name": "<impl Serialize for (T1,)>::stream_serialize",
          "start": 20429
        },
        {
          "name": "<impl Deserialize for (T1,)>::deserialize",
          "start": 20636
        },
        {
          "name": "<impl Deserialize for (T1,)>::stream_deserialize",
          "start": 20897
        },
        {
          "name": "bounded_vec_serialization",
          "start": 21246
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/serde/src/type_impls.nr",
      "source": "use crate::{reader::Reader, serialization::{Deserialize, Serialize}, writer::Writer};\nuse std::embedded_curve_ops::EmbeddedCurvePoint;\nuse std::embedded_curve_ops::EmbeddedCurveScalar;\n\nglobal BOOL_SERIALIZED_LEN: u32 = 1;\nglobal U8_SERIALIZED_LEN: u32 = 1;\nglobal U16_SERIALIZED_LEN: u32 = 1;\nglobal U32_SERIALIZED_LEN: u32 = 1;\nglobal U64_SERIALIZED_LEN: u32 = 1;\nglobal U128_SERIALIZED_LEN: u32 = 1;\nglobal FIELD_SERIALIZED_LEN: u32 = 1;\nglobal I8_SERIALIZED_LEN: u32 = 1;\nglobal I16_SERIALIZED_LEN: u32 = 1;\nglobal I32_SERIALIZED_LEN: u32 = 1;\nglobal I64_SERIALIZED_LEN: u32 = 1;\n\nimpl Serialize for bool {\n    let N: u32 = BOOL_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for bool {\n    let N: u32 = BOOL_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> bool {\n        reader.read() != 0\n    }\n}\n\nimpl Serialize for u8 {\n    let N: u32 = U8_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for u8 {\n    let N: u32 = U8_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u8\n    }\n}\n\nimpl Serialize for u16 {\n    let N: u32 = U16_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for u16 {\n    let N: u32 = U16_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u16\n    }\n}\n\nimpl Serialize for u32 {\n    let N: u32 = U32_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for u32 {\n    let N: u32 = U32_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u32\n    }\n}\n\nimpl Serialize for u64 {\n    let N: u32 = U64_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for u64 {\n    let N: u32 = U64_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u64\n    }\n}\n\nimpl Serialize for u128 {\n    let N: u32 = U128_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as Field);\n    }\n}\n\nimpl Deserialize for u128 {\n    let N: u32 = U128_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u128\n    }\n}\n\nimpl Serialize for Field {\n    let N: u32 = FIELD_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self);\n    }\n}\n\nimpl Deserialize for Field {\n    let N: u32 = FIELD_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read()\n    }\n}\n\nimpl Serialize for i8 {\n    let N: u32 = I8_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as u8 as Field);\n    }\n}\n\nimpl Deserialize for i8 {\n    let N: u32 = I8_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u8 as i8\n    }\n}\n\nimpl Serialize for i16 {\n    let N: u32 = I16_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as u16 as Field);\n    }\n}\n\nimpl Deserialize for i16 {\n    let N: u32 = I16_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u16 as i16\n    }\n}\n\nimpl Serialize for i32 {\n    let N: u32 = I32_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as u32 as Field);\n    }\n}\n\nimpl Deserialize for i32 {\n    let N: u32 = I32_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u32 as i32\n    }\n}\n\nimpl Serialize for i64 {\n    let N: u32 = I64_SERIALIZED_LEN;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self as u64 as Field);\n    }\n}\n\nimpl Deserialize for i64 {\n    let N: u32 = I64_SERIALIZED_LEN;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        reader.read() as u64 as i64\n    }\n}\n\nimpl<T, let M: u32> Serialize for [T; M]\nwhere\n    T: Serialize,\n{\n    let N: u32 = <T as Serialize>::N * M;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        for i in 0..M {\n            self[i].stream_serialize(writer);\n        }\n    }\n}\n\nimpl<T, let M: u32> Deserialize for [T; M]\nwhere\n    T: Deserialize,\n{\n    let N: u32 = <T as Deserialize>::N * M;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        let mut result: [T; M] = std::mem::zeroed();\n        for i in 0..M {\n            result[i] = T::stream_deserialize(reader);\n        }\n        result\n    }\n}\n\nimpl<T> Serialize for Option<T>\nwhere\n    T: Serialize,\n{\n    let N: u32 = <T as Serialize>::N + 1;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write_bool(self.is_some());\n        if self.is_some() {\n            self.unwrap_unchecked().stream_serialize(writer);\n        } else {\n            writer.advance_offset(<T as Serialize>::N);\n        }\n    }\n}\n\nimpl<T> Deserialize for Option<T>\nwhere\n    T: Deserialize,\n{\n    let N: u32 = <T as Deserialize>::N + 1;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        if reader.read_bool() {\n            Option::some(<T as Deserialize>::stream_deserialize(reader))\n        } else {\n            reader.advance_offset(<T as Deserialize>::N);\n            Option::none()\n        }\n    }\n}\n\nglobal SCALAR_SIZE: u32 = 2;\n\nimpl Serialize for EmbeddedCurveScalar {\n\n    let N: u32 = SCALAR_SIZE;\n\n    fn serialize(self) -> [Field; SCALAR_SIZE] {\n        [self.lo, self.hi]\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self.lo);\n        writer.write(self.hi);\n    }\n}\n\nimpl Deserialize for EmbeddedCurveScalar {\n    let N: u32 = SCALAR_SIZE;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        Self { lo: fields[0], hi: fields[1] }\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        Self { lo: reader.read(), hi: reader.read() }\n    }\n}\n\nglobal POINT_SIZE: u32 = 2;\n\nimpl Serialize for EmbeddedCurvePoint {\n    let N: u32 = POINT_SIZE;\n\n    fn serialize(self) -> [Field; Self::N] {\n        [self.x, self.y]\n    }\n\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self.x);\n        writer.write(self.y);\n    }\n}\n\nimpl Deserialize for EmbeddedCurvePoint {\n    let N: u32 = POINT_SIZE;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        Self { x: fields[0], y: fields[1] }\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        Self { x: reader.read(), y: reader.read() }\n    }\n}\n\nimpl<let M: u32> Deserialize for str<M> {\n    let N: u32 = M;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        let u8_arr = <[u8; Self::N] as Deserialize>::stream_deserialize(reader);\n        str::<Self::N>::from(u8_arr)\n    }\n}\n\nimpl<let M: u32> Serialize for str<M> {\n    let N: u32 = M;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        self.as_bytes().stream_serialize(writer);\n    }\n}\n\n// Note: Not deriving this because it's not supported to call derive_serialize on a \"remote\" struct (and it will never\n// be supported).\nimpl<T, let M: u32> Deserialize for BoundedVec<T, M>\nwhere\n    T: Deserialize,\n{\n    let N: u32 = <T as Deserialize>::N * M + 1;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        let mut new_bounded_vec: BoundedVec<T, M> = BoundedVec::new();\n        let payload_len = Self::N - 1;\n\n        // Length is stored in the last field as we need to match intrinsic Noir serialization and the `len` struct\n        // field is after `storage` struct field (see `bounded_vec.nr` in noir-stdlib)\n        let len = reader.peek_offset(payload_len) as u32;\n\n        for i in 0..M {\n            if i < len {\n                new_bounded_vec.push(<T as Deserialize>::stream_deserialize(reader));\n            }\n        }\n\n        // +1 for the length of the BoundedVec\n        reader.advance_offset((M - len) * <T as Deserialize>::N + 1);\n\n        new_bounded_vec\n    }\n}\n\n// This may cause issues if used as program input, because noir disallows empty arrays for program input.\n// I think this is okay because I don't foresee a unit type being used as input. But leaving this comment as a hint\n// if someone does run into this in the future.\nimpl Deserialize for () {\n    let N: u32 = 0;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(_reader: &mut Reader<K>) -> Self {\n        ()\n    }\n}\n\n// Note: Not deriving this because it's not supported to call derive_serialize on a \"remote\" struct (and it will never\n// be supported).\nimpl<T, let M: u32> Serialize for BoundedVec<T, M>\nwhere\n    T: Serialize,\n{\n    let N: u32 = <T as Serialize>::N * M + 1; // +1 for the length of the BoundedVec\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: Writer<Self::N> = Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        self.storage().stream_serialize(writer);\n        // Length is stored in the last field as we need to match intrinsic Noir serialization and the `len` struct\n        // field is after `storage` struct field (see `bounded_vec.nr` in noir-stdlib)\n        writer.write_u32(self.len() as u32);\n    }\n}\n\n// Create a slice of the given length with each element made from `f(i)` where `i` is the current index\ncomptime fn make_slice<Env, T>(length: u32, f: fn[Env](u32) -> T) -> [T] {\n    let mut slice = @[];\n    for i in 0..length {\n        slice = slice.push_back(f(i));\n    }\n    slice\n}\n\n// Implements Serialize and Deserialize for an arbitrary tuple type\ncomptime fn impl_serialize_for_tuple(_m: Module, length: u32) -> Quoted {\n    // `T0`, `T1`, `T2`\n    let type_names = make_slice(length, |i| f\"T{i}\".quoted_contents());\n\n    // `result0`, `result1`, `result2`\n    let result_names = make_slice(length, |i| f\"result{i}\".quoted_contents());\n\n    // `T0, T1, T2`\n    let field_generics = type_names.join(quote [,]);\n\n    // `<T0 as Serialize>::N + <T1 as Serialize>::N + <T2 as Serialize>::N`\n    let full_size_serialize = type_names\n        .map(|type_name| quote {\n            <$type_name as Serialize>::N\n        })\n        .join(quote [+]);\n\n    // `<T0 as Deserialize>::N + <T1 as Deserialize>::N + <T2 as Deserialize>::N`\n    let full_size_deserialize = type_names\n        .map(|type_name| quote {\n            <$type_name as Deserialize>::N\n        })\n        .join(quote [+]);\n\n    // `T0: Serialize, T1: Serialize, T2: Serialize,`\n    let serialize_constraints = type_names\n        .map(|field_name| quote {\n        $field_name: Serialize,\n    })\n        .join(quote []);\n\n    // `T0: Deserialize, T1: Deserialize, T2: Deserialize,`\n    let deserialize_constraints = type_names\n        .map(|field_name| quote {\n        $field_name: Deserialize,\n    })\n        .join(quote []);\n\n    // Statements to serialize each field\n    let serialized_fields = type_names\n        .mapi(|i, _type_name| quote {\n            $crate::serialization::Serialize::stream_serialize(self.$i, writer);\n        })\n        .join(quote []);\n\n    // Statements to deserialize each field\n    let deserialized_fields = type_names\n        .mapi(|i, type_name| {\n            let result_name = result_names[i];\n            quote {\n            let $result_name = <$type_name as $crate::serialization::Deserialize>::stream_deserialize(reader);\n        }\n        })\n        .join(quote []);\n    let deserialize_results = result_names.join(quote [,]);\n\n    quote {\n        impl<$field_generics> Serialize for ($field_generics) where $serialize_constraints {\n            let N: u32 = $full_size_serialize;\n\n            fn serialize(self) -> [Field; Self::N] {\n                let mut writer: $crate::writer::Writer<Self::N> = $crate::writer::Writer::new();\n                self.stream_serialize(&mut writer);\n                writer.finish()\n            }\n\n            #[inline_always]\n            fn stream_serialize<let K: u32>(self, writer: &mut $crate::writer::Writer<K>) {\n\n                $serialized_fields\n            }\n        }\n\n        impl<$field_generics> Deserialize for ($field_generics) where $deserialize_constraints {\n            let N: u32 = $full_size_deserialize;\n\n            fn deserialize(fields: [Field; Self::N]) -> Self {\n                let mut reader = $crate::reader::Reader::new(fields);\n                let result = Self::stream_deserialize(&mut reader);\n                reader.finish();\n                result\n            }\n    \n            #[inline_always]\n            fn stream_deserialize<let K: u32>(reader: &mut $crate::reader::Reader<K>) -> Self {\n                $deserialized_fields\n                ($deserialize_results)\n            }\n        }\n    }\n}\n\n// Keeping these manual impls. They are more efficient since they do not\n// require copying sub-arrays from any serialized arrays.\nimpl<T1> Serialize for (T1,)\nwhere\n    T1: Serialize,\n{\n    let N: u32 = <T1 as Serialize>::N;\n\n    fn serialize(self) -> [Field; Self::N] {\n        let mut writer: crate::writer::Writer<Self::N> = crate::writer::Writer::new();\n        self.stream_serialize(&mut writer);\n        writer.finish()\n    }\n\n    #[inline_always]\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        self.0.stream_serialize(writer);\n    }\n}\n\nimpl<T1> Deserialize for (T1,)\nwhere\n    T1: Deserialize,\n{\n    let N: u32 = <T1 as Deserialize>::N;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        let mut reader = crate::reader::Reader::new(fields);\n        let result = Self::stream_deserialize(&mut reader);\n        reader.finish();\n        result\n    }\n\n    #[inline_always]\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        (<T1 as Deserialize>::stream_deserialize(reader),)\n    }\n}\n\n#[impl_serialize_for_tuple(2)]\n#[impl_serialize_for_tuple(3)]\n#[impl_serialize_for_tuple(4)]\n#[impl_serialize_for_tuple(5)]\n#[impl_serialize_for_tuple(6)]\nmod impls {\n    use crate::serialization::{Deserialize, Serialize};\n}\n\n#[test]\nunconstrained fn bounded_vec_serialization() {\n    // Test empty BoundedVec\n    let empty_vec: BoundedVec<Field, 3> = BoundedVec::from_array([]);\n    let serialized = empty_vec.serialize();\n    let deserialized = BoundedVec::<Field, 3>::deserialize(serialized);\n    assert_eq(empty_vec, deserialized);\n    assert_eq(deserialized.len(), 0);\n\n    // Test partially filled BoundedVec\n    let partial_vec: BoundedVec<[u32; 2], 3> = BoundedVec::from_array([[1, 2]]);\n    let serialized = partial_vec.serialize();\n    let deserialized = BoundedVec::<[u32; 2], 3>::deserialize(serialized);\n    assert_eq(partial_vec, deserialized);\n    assert_eq(deserialized.len(), 1);\n    assert_eq(deserialized.get(0), [1, 2]);\n\n    // Test full BoundedVec\n    let full_vec: BoundedVec<[u32; 2], 3> = BoundedVec::from_array([[1, 2], [3, 4], [5, 6]]);\n    let serialized = full_vec.serialize();\n    let deserialized = BoundedVec::<[u32; 2], 3>::deserialize(serialized);\n    assert_eq(full_vec, deserialized);\n    assert_eq(deserialized.len(), 3);\n    assert_eq(deserialized.get(0), [1, 2]);\n    assert_eq(deserialized.get(1), [3, 4]);\n    assert_eq(deserialized.get(2), [5, 6]);\n}\n"
    },
    "443": {
      "function_locations": [
        {
          "name": "Writer<N>::new",
          "start": 128
        },
        {
          "name": "Writer<N>::write",
          "start": 220
        },
        {
          "name": "Writer<N>::write_u32",
          "start": 339
        },
        {
          "name": "Writer<N>::write_u64",
          "start": 428
        },
        {
          "name": "Writer<N>::write_bool",
          "start": 519
        },
        {
          "name": "Writer<N>::write_array",
          "start": 629
        },
        {
          "name": "Writer<N>::write_struct",
          "start": 841
        },
        {
          "name": "Writer<N>::write_struct_array",
          "start": 1040
        },
        {
          "name": "Writer<N>::advance_offset",
          "start": 1185
        },
        {
          "name": "Writer<N>::finish",
          "start": 1263
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-protocol-circuits/crates/serde/src/writer.nr",
      "source": "pub struct Writer<let N: u32> {\n    data: [Field; N],\n    offset: u32,\n}\n\nimpl<let N: u32> Writer<N> {\n    pub fn new() -> Self {\n        Self { data: [0; N], offset: 0 }\n    }\n\n    pub fn write(&mut self, value: Field) {\n        self.data[self.offset] = value;\n        self.offset += 1;\n    }\n\n    pub fn write_u32(&mut self, value: u32) {\n        self.write(value as Field);\n    }\n\n    pub fn write_u64(&mut self, value: u64) {\n        self.write(value as Field);\n    }\n\n    pub fn write_bool(&mut self, value: bool) {\n        self.write(value as Field);\n    }\n\n    pub fn write_array<let K: u32>(&mut self, value: [Field; K]) {\n        for i in 0..K {\n            self.data[i + self.offset] = value[i];\n        }\n        self.offset += K;\n    }\n\n    pub fn write_struct<T, let K: u32>(&mut self, value: T, serialize: fn(T) -> [Field; K]) {\n        self.write_array(serialize(value));\n    }\n\n    pub fn write_struct_array<T, let K: u32, let C: u32>(\n        &mut self,\n        value: [T; C],\n        serialize: fn(T) -> [Field; K],\n    ) {\n        for i in 0..C {\n            self.write_struct(value[i], serialize);\n        }\n    }\n\n    pub fn advance_offset(&mut self, offset: u32) {\n        self.offset += offset;\n    }\n\n    pub fn finish(self) -> [Field; N] {\n        assert_eq(self.offset, self.data.len(), \"Writer did not write all data\");\n        self.data\n    }\n}\n"
    },
    "49": {
      "function_locations": [
        {
          "name": "[T]::len",
          "start": 138
        },
        {
          "name": "[T]::push_back",
          "start": 374
        },
        {
          "name": "[T]::push_front",
          "start": 614
        },
        {
          "name": "[T]::pop_back",
          "start": 799
        },
        {
          "name": "[T]::pop_front",
          "start": 987
        },
        {
          "name": "[T]::insert",
          "start": 1174
        },
        {
          "name": "[T]::remove",
          "start": 1418
        },
        {
          "name": "[T]::append",
          "start": 1618
        },
        {
          "name": "[T]::as_array",
          "start": 1877
        },
        {
          "name": "[T]::map",
          "start": 2226
        },
        {
          "name": "[T]::mapi",
          "start": 2560
        },
        {
          "name": "[T]::for_each",
          "start": 2863
        },
        {
          "name": "[T]::for_eachi",
          "start": 3058
        },
        {
          "name": "[T]::fold",
          "start": 3481
        },
        {
          "name": "[T]::reduce",
          "start": 3886
        },
        {
          "name": "[T]::filter",
          "start": 4222
        },
        {
          "name": "[T]::join",
          "start": 4567
        },
        {
          "name": "[T]::all",
          "start": 4941
        },
        {
          "name": "[T]::any",
          "start": 5202
        },
        {
          "name": "test::map_empty",
          "start": 5369
        },
        {
          "name": "test::mapi_empty",
          "start": 5476
        },
        {
          "name": "test::for_each_empty",
          "start": 5595
        },
        {
          "name": "test::for_eachi_empty",
          "start": 5792
        },
        {
          "name": "test::map_example",
          "start": 5990
        },
        {
          "name": "test::mapi_example",
          "start": 6196
        },
        {
          "name": "test::for_each_example",
          "start": 6414
        },
        {
          "name": "test::for_eachi_example",
          "start": 6672
        },
        {
          "name": "test::len_empty",
          "start": 6930
        },
        {
          "name": "test::len_single",
          "start": 7051
        },
        {
          "name": "test::len_multiple",
          "start": 7140
        },
        {
          "name": "test::push_back_empty",
          "start": 7243
        },
        {
          "name": "test::push_back_non_empty",
          "start": 7450
        },
        {
          "name": "test::push_front_empty",
          "start": 7672
        },
        {
          "name": "test::push_front_non_empty",
          "start": 7872
        },
        {
          "name": "test::pop_back_empty",
          "start": 8135
        },
        {
          "name": "test::pop_back_one",
          "start": 8264
        },
        {
          "name": "test::pop_back_multiple",
          "start": 8464
        },
        {
          "name": "test::pop_front_empty",
          "start": 8755
        },
        {
          "name": "test::pop_front_one",
          "start": 8886
        },
        {
          "name": "test::pop_front_multiple",
          "start": 9088
        },
        {
          "name": "test::insert_beginning",
          "start": 9339
        },
        {
          "name": "test::insert_middle",
          "start": 9558
        },
        {
          "name": "test::insert_end",
          "start": 9776
        },
        {
          "name": "test::insert_end_out_of_bounds",
          "start": 10048
        },
        {
          "name": "test::remove_empty",
          "start": 10211
        },
        {
          "name": "test::remove_beginning",
          "start": 10343
        },
        {
          "name": "test::remove_middle",
          "start": 10589
        },
        {
          "name": "test::remove_end",
          "start": 10832
        },
        {
          "name": "test::remove_end_out_of_bounds",
          "start": 11131
        },
        {
          "name": "test::fold_empty",
          "start": 11252
        },
        {
          "name": "test::fold_single",
          "start": 11416
        },
        {
          "name": "test::fold_multiple",
          "start": 11585
        },
        {
          "name": "test::reduce_empty",
          "start": 11803
        },
        {
          "name": "test::reduce_single",
          "start": 11936
        },
        {
          "name": "test::reduce_multiple",
          "start": 12102
        },
        {
          "name": "test::filter_empty",
          "start": 12273
        },
        {
          "name": "test::filter_all_true",
          "start": 12437
        },
        {
          "name": "test::filter_all_false",
          "start": 12613
        },
        {
          "name": "test::filter_some",
          "start": 12786
        },
        {
          "name": "test::all_empty",
          "start": 12975
        },
        {
          "name": "test::all_true",
          "start": 13126
        },
        {
          "name": "test::all_false",
          "start": 13290
        },
        {
          "name": "test::any_empty",
          "start": 13455
        },
        {
          "name": "test::any_true",
          "start": 13607
        },
        {
          "name": "test::any_false",
          "start": 13771
        },
        {
          "name": "test::append_empty_to_empty",
          "start": 13977
        },
        {
          "name": "test::append_empty_to_non_empty",
          "start": 14205
        },
        {
          "name": "test::append_non_empty_to_empty",
          "start": 14419
        },
        {
          "name": "test::append_two_non_empty",
          "start": 14628
        },
        {
          "name": "test::as_array_single",
          "start": 14863
        },
        {
          "name": "test::as_array_multiple",
          "start": 15034
        },
        {
          "name": "test::chain_operations",
          "start": 15297
        },
        {
          "name": "test::nested_operations",
          "start": 15549
        },
        {
          "name": "test::single_element_operations",
          "start": 15864
        },
        {
          "name": "test::boundary_conditions",
          "start": 16815
        },
        {
          "name": "test::complex_predicates",
          "start": 17458
        },
        {
          "name": "test::identity_operations",
          "start": 17960
        },
        {
          "name": "test::as_array_size_mismatch",
          "start": 18362
        }
      ],
      "path": "std/vector.nr",
      "source": "use crate::append::Append;\n\nimpl<T> [T] {\n    /// Returns the length of the vector.\n    #[builtin(array_len)]\n    pub fn len(self) -> u32 {}\n\n    /// Push a new element to the end of the vector, returning a\n    /// new vector with a length one greater than the\n    /// original unmodified vector.\n    #[builtin(vector_push_back)]\n    pub fn push_back(self, elem: T) -> Self {}\n\n    /// Push a new element to the front of the vector, returning a\n    /// new vector with a length one greater than the\n    /// original unmodified vector.\n    #[builtin(vector_push_front)]\n    pub fn push_front(self, elem: T) -> Self {}\n\n    /// Remove the last element of the vector, returning the\n    /// popped vector and the element in a tuple\n    #[builtin(vector_pop_back)]\n    pub fn pop_back(self) -> (Self, T) {}\n\n    /// Remove the first element of the vector, returning the\n    /// element and the popped vector in a tuple\n    #[builtin(vector_pop_front)]\n    pub fn pop_front(self) -> (T, Self) {}\n\n    /// Insert an element at a specified index, shifting all elements\n    /// after it to the right\n    #[builtin(vector_insert)]\n    pub fn insert(self, index: u32, elem: T) -> Self {}\n\n    /// Remove an element at a specified index, shifting all elements\n    /// after it to the left, returning the altered vector and\n    /// the removed element\n    #[builtin(vector_remove)]\n    pub fn remove(self, index: u32) -> (Self, T) {}\n\n    /// Append each element of the `other` vector to the end of `self`.\n    /// This returns a new vector and leaves both input vectors unchanged.\n    pub fn append(mut self, other: Self) -> Self {\n        for elem in other {\n            self = self.push_back(elem);\n        }\n        self\n    }\n\n    /// Converts this vector into an array of length N.\n    /// Panics if the length of this vector is not N.\n    pub fn as_array<let N: u32>(self) -> [T; N] {\n        assert(self.len() == N);\n\n        let mut array = [crate::mem::zeroed(); N];\n        for i in 0..N {\n            array[i] = self[i];\n        }\n        array\n    }\n\n    /// Apply a function to each element of the vector, returning a new vector\n    /// containing the mapped elements.\n    pub fn map<U, Env>(self, f: fn[Env](T) -> U) -> [U] {\n        let mut ret = [].as_vector();\n        for elem in self {\n            ret = ret.push_back(f(elem));\n        }\n        ret\n    }\n\n    /// Apply a function to each element of the vector with its index, returning a\n    /// new vector containing the mapped elements.\n    pub fn mapi<U, Env>(self, f: fn[Env](u32, T) -> U) -> [U] {\n        let mut ret = [].as_vector();\n        let mut index = 0;\n        for elem in self {\n            ret = ret.push_back(f(index, elem));\n            index += 1;\n        }\n        ret\n    }\n\n    /// Apply a function to each element of the vector\n    pub fn for_each<Env>(self, f: fn[Env](T) -> ()) {\n        for elem in self {\n            f(elem);\n        }\n    }\n\n    /// Apply a function to each element of the vector with its index\n    pub fn for_eachi<Env>(self, f: fn[Env](u32, T) -> ()) {\n        let mut index = 0;\n        for elem in self {\n            f(index, elem);\n            index += 1;\n        }\n    }\n\n    /// Apply a function to each element of the vector and an accumulator value,\n    /// returning the final accumulated value. This function is also sometimes\n    /// called `foldl`, `fold_left`, `reduce`, or `inject`.\n    pub fn fold<U, Env>(self, mut accumulator: U, f: fn[Env](U, T) -> U) -> U {\n        for elem in self {\n            accumulator = f(accumulator, elem);\n        }\n        accumulator\n    }\n\n    /// Apply a function to each element of the vector and an accumulator value,\n    /// returning the final accumulated value. Unlike fold, reduce uses the first\n    /// element of the given vector as its starting accumulator value.\n    pub fn reduce<Env>(self, f: fn[Env](T, T) -> T) -> T {\n        let mut accumulator = self[0];\n        for i in 1..self.len() {\n            accumulator = f(accumulator, self[i]);\n        }\n        accumulator\n    }\n\n    /// Returns a new vector containing only elements for which the given predicate\n    /// returns true.\n    pub fn filter<Env>(self, predicate: fn[Env](T) -> bool) -> Self {\n        let mut ret = [].as_vector();\n        for elem in self {\n            if predicate(elem) {\n                ret = ret.push_back(elem);\n            }\n        }\n        ret\n    }\n\n    /// Flatten each element in the vector into one value, separated by `separator`.\n    pub fn join(self, separator: T) -> T\n    where\n        T: Append,\n    {\n        let mut ret = T::empty();\n\n        if self.len() != 0 {\n            ret = self[0];\n\n            for i in 1..self.len() {\n                ret = ret.append(separator).append(self[i]);\n            }\n        }\n\n        ret\n    }\n\n    /// Returns true if all elements in the vector satisfy the predicate\n    pub fn all<Env>(self, predicate: fn[Env](T) -> bool) -> bool {\n        let mut ret = true;\n        for elem in self {\n            ret &= predicate(elem);\n        }\n        ret\n    }\n\n    /// Returns true if any element in the vector satisfies the predicate\n    pub fn any<Env>(self, predicate: fn[Env](T) -> bool) -> bool {\n        let mut ret = false;\n        for elem in self {\n            ret |= predicate(elem);\n        }\n        ret\n    }\n}\n\nmod test {\n    #[test]\n    fn map_empty() {\n        assert_eq([].as_vector().map(|x| x + 1), [].as_vector());\n    }\n\n    #[test]\n    fn mapi_empty() {\n        assert_eq([].as_vector().mapi(|i, x| i * x + 1), [].as_vector());\n    }\n\n    #[test]\n    fn for_each_empty() {\n        let empty_vector: [Field] = [].as_vector();\n        empty_vector.for_each(|_x| assert(false));\n        assert(empty_vector == [].as_vector());\n    }\n\n    #[test]\n    fn for_eachi_empty() {\n        let empty_vector: [Field] = [].as_vector();\n        empty_vector.for_eachi(|_i, _x| assert(false));\n        assert(empty_vector == [].as_vector());\n    }\n\n    #[test]\n    fn map_example() {\n        let a = [1, 2, 3].as_vector();\n        let b = a.map(|a| a * 2);\n        assert_eq(b, [2, 4, 6].as_vector());\n        assert_eq(a, [1, 2, 3].as_vector());\n    }\n\n    #[test]\n    fn mapi_example() {\n        let a = [1, 2, 3].as_vector();\n        let b = a.mapi(|i, a| i + a * 2);\n        assert_eq(b, [2, 5, 8].as_vector());\n        assert_eq(a, [1, 2, 3].as_vector());\n    }\n\n    #[test]\n    fn for_each_example() {\n        let a = [1, 2, 3].as_vector();\n        let mut b = [].as_vector();\n        let b_ref = &mut b;\n        a.for_each(|a| { *b_ref = b_ref.push_back(a * 2); });\n        assert_eq(b, [2, 4, 6].as_vector());\n    }\n\n    #[test]\n    fn for_eachi_example() {\n        let a = [1, 2, 3].as_vector();\n        let mut b = [].as_vector();\n        let b_ref = &mut b;\n        a.for_eachi(|i, a| { *b_ref = b_ref.push_back(i + a * 2); });\n        assert_eq(b, [2, 5, 8].as_vector());\n    }\n\n    #[test]\n    fn len_empty() {\n        let empty: [Field] = [].as_vector();\n        assert_eq(empty.len(), 0);\n    }\n\n    #[test]\n    fn len_single() {\n        assert_eq([42].as_vector().len(), 1);\n    }\n\n    #[test]\n    fn len_multiple() {\n        assert_eq([1, 2, 3, 4, 5].as_vector().len(), 5);\n    }\n\n    #[test]\n    fn push_back_empty() {\n        let empty: [Field] = [].as_vector();\n        let result = empty.push_back(42);\n        assert_eq(result.len(), 1);\n        assert_eq(result[0], 42);\n    }\n\n    #[test]\n    fn push_back_non_empty() {\n        let vector = [1, 2, 3].as_vector();\n        let result = vector.push_back(4);\n        assert_eq(result.len(), 4);\n        assert_eq(result, [1, 2, 3, 4].as_vector());\n    }\n\n    #[test]\n    fn push_front_empty() {\n        let empty = [].as_vector();\n        let result = empty.push_front(42);\n        assert_eq(result.len(), 1);\n        assert_eq(result[0], 42);\n    }\n\n    #[test]\n    fn push_front_non_empty() {\n        let vector = [1, 2, 3].as_vector();\n        let result = vector.push_front(0);\n        assert_eq(result.len(), 4);\n        assert_eq(result, [0, 1, 2, 3].as_vector());\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn pop_back_empty() {\n        let vector: [Field] = [].as_vector();\n        let (_, _) = vector.pop_back();\n    }\n\n    #[test]\n    fn pop_back_one() {\n        let vector = [42].as_vector();\n        let (result, elem) = vector.pop_back();\n        assert_eq(result.len(), 0);\n        assert_eq(elem, 42);\n    }\n\n    #[test]\n    fn pop_back_multiple() {\n        let vector = [1, 2, 3].as_vector();\n        let (result, elem) = vector.pop_back();\n        assert_eq(result.len(), 2);\n        assert_eq(result, [1, 2].as_vector());\n        assert_eq(elem, 3);\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn pop_front_empty() {\n        let vector: [Field] = [].as_vector();\n        let (_, _) = vector.pop_front();\n    }\n\n    #[test]\n    fn pop_front_one() {\n        let vector = [42].as_vector();\n        let (elem, result) = vector.pop_front();\n        assert_eq(result.len(), 0);\n        assert_eq(elem, 42);\n    }\n\n    #[test]\n    fn pop_front_multiple() {\n        let vector = [1, 2, 3].as_vector();\n        let (elem, result) = vector.pop_front();\n        assert_eq(result.len(), 2);\n        assert_eq(result, [2, 3].as_vector());\n        assert_eq(elem, 1);\n    }\n\n    #[test]\n    fn insert_beginning() {\n        let vector = [1, 2, 3].as_vector();\n        let result = vector.insert(0, 0);\n        assert_eq(result.len(), 4);\n        assert_eq(result, [0, 1, 2, 3].as_vector());\n    }\n\n    #[test]\n    fn insert_middle() {\n        let vector = [1, 2, 3].as_vector();\n        let result = vector.insert(1, 99);\n        assert_eq(result.len(), 4);\n        assert_eq(result, [1, 99, 2, 3].as_vector());\n    }\n\n    #[test]\n    fn insert_end() {\n        let vector = [1, 2, 3].as_vector();\n        let result = vector.insert(3, 4);\n        assert_eq(result.len(), 4);\n        assert_eq(result, [1, 2, 3, 4].as_vector());\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn insert_end_out_of_bounds() {\n        let vector = [1, 2].as_vector();\n        let _ = vector.insert(3, 4);\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn remove_empty() {\n        let vector: [Field] = [].as_vector();\n        let (_, _) = vector.remove(0);\n    }\n\n    #[test]\n    fn remove_beginning() {\n        let vector = [1, 2, 3].as_vector();\n        let (result, elem) = vector.remove(0);\n        assert_eq(result.len(), 2);\n        assert_eq(result, [2, 3].as_vector());\n        assert_eq(elem, 1);\n    }\n\n    #[test]\n    fn remove_middle() {\n        let vector = [1, 2, 3].as_vector();\n        let (result, elem) = vector.remove(1);\n        assert_eq(result.len(), 2);\n        assert_eq(result, [1, 3].as_vector());\n        assert_eq(elem, 2);\n    }\n\n    #[test]\n    fn remove_end() {\n        let vector = [1, 2, 3].as_vector();\n        let (result, elem) = vector.remove(2);\n        assert_eq(result.len(), 2);\n        assert_eq(result, [1, 2].as_vector());\n        assert_eq(elem, 3);\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn remove_end_out_of_bounds() {\n        let vector = [1, 2].as_vector();\n        let (_, _) = vector.remove(2);\n    }\n\n    #[test]\n    fn fold_empty() {\n        let empty = [].as_vector();\n        let result = empty.fold(10, |acc, x| acc + x);\n        assert_eq(result, 10);\n    }\n\n    #[test]\n    fn fold_single() {\n        let vector = [5].as_vector();\n        let result = vector.fold(10, |acc, x| acc + x);\n        assert_eq(result, 15);\n    }\n\n    #[test]\n    fn fold_multiple() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.fold(0, |acc, x| acc + x);\n        assert_eq(result, 10);\n    }\n\n    #[test(should_fail_with = \"Index out of bounds\")]\n    fn reduce_empty() {\n        let empty: [Field] = [].as_vector();\n        let _ = empty.reduce(|a, b| a + b);\n    }\n\n    #[test]\n    fn reduce_single() {\n        let vector = [42].as_vector();\n        let result = vector.reduce(|a, b| a + b);\n        assert_eq(result, 42);\n    }\n\n    #[test]\n    fn reduce_multiple() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.reduce(|a, b| a + b);\n        assert_eq(result, 10);\n    }\n\n    #[test]\n    fn filter_empty() {\n        let empty = [].as_vector();\n        let result = empty.filter(|x| x > 0);\n        assert_eq(result.len(), 0);\n    }\n\n    #[test]\n    fn filter_all_true() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.filter(|x| x > 0);\n        assert_eq(result, vector);\n    }\n\n    #[test]\n    fn filter_all_false() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.filter(|x| x > 10);\n        assert_eq(result.len(), 0);\n    }\n\n    #[test]\n    fn filter_some() {\n        let vector = [1, 2, 3, 4, 5].as_vector();\n        let result = vector.filter(|x| x % 2 == 0);\n        assert_eq(result, [2, 4].as_vector());\n    }\n\n    #[test]\n    fn all_empty() {\n        let empty = [].as_vector();\n        let result = empty.all(|x| x > 0);\n        assert_eq(result, true);\n    }\n\n    #[test]\n    fn all_true() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.all(|x| x > 0);\n        assert_eq(result, true);\n    }\n\n    #[test]\n    fn all_false() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.all(|x| x > 2);\n        assert_eq(result, false);\n    }\n\n    #[test]\n    fn any_empty() {\n        let empty = [].as_vector();\n        let result = empty.any(|x| x > 0);\n        assert_eq(result, false);\n    }\n\n    #[test]\n    fn any_true() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.any(|x| x > 3);\n        assert_eq(result, true);\n    }\n\n    #[test]\n    fn any_false() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let result = vector.any(|x| x > 10);\n        assert_eq(result, false);\n    }\n\n    // utility method tests\n    #[test]\n    fn append_empty_to_empty() {\n        let empty1: [Field] = [].as_vector();\n        let empty2: [Field] = [].as_vector();\n        let result = empty1.append(empty2);\n        assert_eq(result.len(), 0);\n    }\n\n    #[test]\n    fn append_empty_to_non_empty() {\n        let vector = [1, 2, 3].as_vector();\n        let empty = [].as_vector();\n        let result = vector.append(empty);\n        assert_eq(result, vector);\n    }\n\n    #[test]\n    fn append_non_empty_to_empty() {\n        let empty = [].as_vector();\n        let vector = [1, 2, 3].as_vector();\n        let result = empty.append(vector);\n        assert_eq(result, vector);\n    }\n\n    #[test]\n    fn append_two_non_empty() {\n        let vector1 = [1, 2].as_vector();\n        let vector2 = [3, 4, 5].as_vector();\n        let result = vector1.append(vector2);\n        assert_eq(result, [1, 2, 3, 4, 5].as_vector());\n    }\n\n    #[test]\n    fn as_array_single() {\n        let vector = [42].as_vector();\n        let array: [Field; 1] = vector.as_array();\n        assert_eq(array[0], 42);\n    }\n\n    #[test]\n    fn as_array_multiple() {\n        let vector = [1, 2, 3].as_vector();\n        let array: [Field; 3] = vector.as_array();\n        assert_eq(array[0], 1);\n        assert_eq(array[1], 2);\n        assert_eq(array[2], 3);\n    }\n\n    // complex scenarios\n    #[test]\n    fn chain_operations() {\n        let vector = [1, 2, 3, 4, 5].as_vector();\n        let result = vector.filter(|x| x % 2 == 0).map(|x| x * 2).fold(0, |acc, x| acc + x);\n        assert_eq(result, 12); // (2*2) + (4*2) = 4 + 8 = 12\n    }\n\n    #[test]\n    fn nested_operations() {\n        let vector = [1, 2, 3, 4].as_vector();\n        let filtered = vector.filter(|x| x > 1);\n        let mapped = filtered.map(|x| x * x);\n        let sum = mapped.fold(0, |acc, x| acc + x);\n        assert_eq(sum, 29); // 2^2 + 3^2 + 4^2 = 4 + 9 + 16 = 29\n    }\n\n    #[test]\n    fn single_element_operations() {\n        let single = [42].as_vector();\n\n        // Test all operations on single element\n        assert_eq(single.len(), 1);\n\n        let pushed_back = single.push_back(99);\n        assert_eq(pushed_back, [42, 99].as_vector());\n\n        let pushed_front = single.push_front(0);\n        assert_eq(pushed_front, [0, 42].as_vector());\n\n        let (popped_back_vector, popped_back_elem) = single.pop_back();\n        assert_eq(popped_back_vector.len(), 0);\n        assert_eq(popped_back_elem, 42);\n\n        let (popped_front_elem, popped_front_vector) = single.pop_front();\n        assert_eq(popped_front_vector.len(), 0);\n        assert_eq(popped_front_elem, 42);\n\n        let inserted = single.insert(0, 0);\n        assert_eq(inserted, [0, 42].as_vector());\n\n        let (removed_vector, removed_elem) = single.remove(0);\n        assert_eq(removed_vector.len(), 0);\n        assert_eq(removed_elem, 42);\n    }\n\n    #[test]\n    fn boundary_conditions() {\n        let vector = [1, 2, 3].as_vector();\n\n        // insert at boundaries\n        let at_start = vector.insert(0, 0);\n        assert_eq(at_start, [0, 1, 2, 3].as_vector());\n\n        let at_end = vector.insert(3, 4);\n        assert_eq(at_end, [1, 2, 3, 4].as_vector());\n\n        // remove at boundaries\n        let (removed_start, elem_start) = vector.remove(0);\n        assert_eq(removed_start, [2, 3].as_vector());\n        assert_eq(elem_start, 1);\n\n        let (removed_end, elem_end) = vector.remove(2);\n        assert_eq(removed_end, [1, 2].as_vector());\n        assert_eq(elem_end, 3);\n    }\n\n    #[test]\n    fn complex_predicates() {\n        let vector = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10].as_vector();\n\n        let even_greater_than_5 = vector.filter(|x| (x % 2 == 0) & (x > 5));\n        assert_eq(even_greater_than_5, [6, 8, 10].as_vector());\n\n        let all_positive_and_less_than_20 = vector.all(|x| (x > 0) & (x < 20));\n        assert_eq(all_positive_and_less_than_20, true);\n\n        let any_divisible_by_7 = vector.any(|x| x % 7 == 0);\n        assert_eq(any_divisible_by_7, true);\n    }\n\n    #[test]\n    fn identity_operations() {\n        let vector = [1, 2, 3, 4, 5].as_vector();\n\n        let mapped_identity = vector.map(|x| x);\n        assert_eq(mapped_identity, vector);\n\n        let filtered_all = vector.filter(|_| true);\n        assert_eq(filtered_all, vector);\n\n        let filtered_none = vector.filter(|_| false);\n        assert_eq(filtered_none.len(), 0);\n    }\n\n    #[test(should_fail)]\n    fn as_array_size_mismatch() {\n        let vector = [1, 2, 3].as_vector();\n        let _: [Field; 5] = vector.as_array(); // size doesn't match\n    }\n}\n"
    },
    "5": {
      "function_locations": [
        {
          "name": "derive_eq",
          "start": 305
        },
        {
          "name": "<impl Eq for Field>::eq",
          "start": 851
        },
        {
          "name": "<impl Eq for u128>::eq",
          "start": 940
        },
        {
          "name": "<impl Eq for u64>::eq",
          "start": 1026
        },
        {
          "name": "<impl Eq for u32>::eq",
          "start": 1112
        },
        {
          "name": "<impl Eq for u16>::eq",
          "start": 1198
        },
        {
          "name": "<impl Eq for u8>::eq",
          "start": 1282
        },
        {
          "name": "<impl Eq for i8>::eq",
          "start": 1366
        },
        {
          "name": "<impl Eq for i16>::eq",
          "start": 1452
        },
        {
          "name": "<impl Eq for i32>::eq",
          "start": 1538
        },
        {
          "name": "<impl Eq for i64>::eq",
          "start": 1624
        },
        {
          "name": "<impl Eq for ()>::eq",
          "start": 1717
        },
        {
          "name": "<impl Eq for bool>::eq",
          "start": 1796
        },
        {
          "name": "<impl Eq for [T; N]>::eq",
          "start": 1921
        },
        {
          "name": "<impl Eq for [T]>::eq",
          "start": 2139
        },
        {
          "name": "<impl Eq for str<N>>::eq",
          "start": 2418
        },
        {
          "name": "make_tuple_eq_body",
          "start": 2598
        },
        {
          "name": "<impl Eq for (A,)>::eq",
          "start": 2848
        },
        {
          "name": "<impl Eq for (A, B)>::eq",
          "start": 2959
        },
        {
          "name": "<impl Eq for (A, B, C)>::eq",
          "start": 3091
        },
        {
          "name": "<impl Eq for (A, B, C, D)>::eq",
          "start": 3236
        },
        {
          "name": "<impl Eq for (A, B, C, D, E)>::eq",
          "start": 3394
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F)>::eq",
          "start": 3565
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G)>::eq",
          "start": 3749
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G, H)>::eq",
          "start": 3946
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G, H, I)>::eq",
          "start": 4156
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G, H, I, J)>::eq",
          "start": 4379
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G, H, I, J, K)>::eq",
          "start": 4616
        },
        {
          "name": "<impl Eq for (A, B, C, D, E, F, G, H, I, J, K, L)>::eq",
          "start": 4866
        },
        {
          "name": "<impl Eq for Ordering>::eq",
          "start": 4976
        },
        {
          "name": "Ordering::less",
          "start": 5577
        },
        {
          "name": "Ordering::equal",
          "start": 5648
        },
        {
          "name": "Ordering::greater",
          "start": 5721
        },
        {
          "name": "derive_ord",
          "start": 6092
        },
        {
          "name": "<impl Ord for u128>::cmp",
          "start": 6742
        },
        {
          "name": "<impl Ord for u64>::cmp",
          "start": 6989
        },
        {
          "name": "<impl Ord for u32>::cmp",
          "start": 7237
        },
        {
          "name": "<impl Ord for u16>::cmp",
          "start": 7485
        },
        {
          "name": "<impl Ord for u8>::cmp",
          "start": 7731
        },
        {
          "name": "<impl Ord for i8>::cmp",
          "start": 7977
        },
        {
          "name": "<impl Ord for i16>::cmp",
          "start": 8225
        },
        {
          "name": "<impl Ord for i32>::cmp",
          "start": 8473
        },
        {
          "name": "<impl Ord for i64>::cmp",
          "start": 8721
        },
        {
          "name": "<impl Ord for ()>::cmp",
          "start": 8975
        },
        {
          "name": "<impl Ord for bool>::cmp",
          "start": 9074
        },
        {
          "name": "<impl Ord for [T; N]>::cmp",
          "start": 9544
        },
        {
          "name": "<impl Ord for [T]>::cmp",
          "start": 9947
        },
        {
          "name": "make_tuple_ord_body",
          "start": 10515
        },
        {
          "name": "<impl Ord for (A,)>::cmp",
          "start": 11125
        },
        {
          "name": "<impl Ord for (A, B)>::cmp",
          "start": 11246
        },
        {
          "name": "<impl Ord for (A, B, C)>::cmp",
          "start": 11388
        },
        {
          "name": "<impl Ord for (A, B, C, D)>::cmp",
          "start": 11544
        },
        {
          "name": "<impl Ord for (A, B, C, D, E)>::cmp",
          "start": 11714
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F)>::cmp",
          "start": 11898
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G)>::cmp",
          "start": 12096
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G, H)>::cmp",
          "start": 12308
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G, H, I)>::cmp",
          "start": 12534
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G, H, I, J)>::cmp",
          "start": 12774
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G, H, I, J, K)>::cmp",
          "start": 13029
        },
        {
          "name": "<impl Ord for (A, B, C, D, E, F, G, H, I, J, K, L)>::cmp",
          "start": 13298
        },
        {
          "name": "max",
          "start": 13660
        },
        {
          "name": "min",
          "start": 14037
        },
        {
          "name": "cmp_tests::sanity_check_min",
          "start": 14231
        },
        {
          "name": "cmp_tests::sanity_check_max",
          "start": 14427
        },
        {
          "name": "cmp_tests::correctly_handles_unequal_length_vectors",
          "start": 14649
        },
        {
          "name": "cmp_tests::lexicographic_ordering_for_vectors",
          "start": 14849
        },
        {
          "name": "cmp_tests::eq_unit",
          "start": 15181
        },
        {
          "name": "cmp_tests::eq_bool",
          "start": 15246
        },
        {
          "name": "cmp_tests::eq_integers",
          "start": 15422
        },
        {
          "name": "cmp_tests::eq_tuples",
          "start": 16163
        },
        {
          "name": "cmp_tests::cmp_unit",
          "start": 17041
        },
        {
          "name": "cmp_tests::cmp_bool",
          "start": 17130
        },
        {
          "name": "cmp_tests::cmp_integers",
          "start": 17394
        },
        {
          "name": "cmp_tests::cmp_tuples",
          "start": 18217
        },
        {
          "name": "cmp_tests::cmp_array",
          "start": 19224
        },
        {
          "name": "cmp_tests::cmp_vectors",
          "start": 19468
        }
      ],
      "path": "std/cmp.nr",
      "source": "use crate::meta::ctstring::AsCtString;\nuse crate::meta::derive_via;\n\n/// Compare two values for equality\n#[derive_via(derive_eq)]\n// docs:start:eq-trait\npub trait Eq {\n    fn eq(self, other: Self) -> bool;\n}\n// docs:end:eq-trait\n\n// docs:start:derive_eq\ncomptime fn derive_eq(s: TypeDefinition) -> Quoted {\n    let signature = quote { fn eq(_self: Self, _other: Self) -> bool };\n    let for_each_field = |name| quote { (_self.$name == _other.$name) };\n    let body = |fields| {\n        if s.fields_as_written().len() == 0 {\n            quote { true }\n        } else {\n            fields\n        }\n    };\n    crate::meta::make_trait_impl(\n        s,\n        quote { $crate::cmp::Eq },\n        signature,\n        for_each_field,\n        quote { & },\n        body,\n    )\n}\n// docs:end:derive_eq\n\nimpl Eq for Field {\n    fn eq(self, other: Field) -> bool {\n        self == other\n    }\n}\n\nimpl Eq for u128 {\n    fn eq(self, other: u128) -> bool {\n        self == other\n    }\n}\nimpl Eq for u64 {\n    fn eq(self, other: u64) -> bool {\n        self == other\n    }\n}\nimpl Eq for u32 {\n    fn eq(self, other: u32) -> bool {\n        self == other\n    }\n}\nimpl Eq for u16 {\n    fn eq(self, other: u16) -> bool {\n        self == other\n    }\n}\nimpl Eq for u8 {\n    fn eq(self, other: u8) -> bool {\n        self == other\n    }\n}\nimpl Eq for i8 {\n    fn eq(self, other: i8) -> bool {\n        self == other\n    }\n}\nimpl Eq for i16 {\n    fn eq(self, other: i16) -> bool {\n        self == other\n    }\n}\nimpl Eq for i32 {\n    fn eq(self, other: i32) -> bool {\n        self == other\n    }\n}\nimpl Eq for i64 {\n    fn eq(self, other: i64) -> bool {\n        self == other\n    }\n}\n\nimpl Eq for () {\n    fn eq(_self: Self, _other: ()) -> bool {\n        true\n    }\n}\nimpl Eq for bool {\n    fn eq(self, other: bool) -> bool {\n        self == other\n    }\n}\n\nimpl<T, let N: u32> Eq for [T; N]\nwhere\n    T: Eq,\n{\n    fn eq(self, other: [T; N]) -> bool {\n        let mut result = true;\n        for i in 0..self.len() {\n            result &= self[i].eq(other[i]);\n        }\n        result\n    }\n}\n\nimpl<T> Eq for [T]\nwhere\n    T: Eq,\n{\n    fn eq(self, other: [T]) -> bool {\n        let mut result = self.len() == other.len();\n        if result {\n            for i in 0..self.len() {\n                result &= self[i].eq(other[i]);\n            }\n        }\n        result\n    }\n}\n\nimpl<let N: u32> Eq for str<N> {\n    fn eq(self, other: str<N>) -> bool {\n        let self_bytes = self.as_bytes();\n        let other_bytes = other.as_bytes();\n        self_bytes == other_bytes\n    }\n}\n\ncomptime fn make_tuple_eq_body(n: u32) -> Quoted {\n    let mut body = f\"self.0.eq(other.0)\".as_ctstring();\n    for i in 1u32..n {\n        body = body.append_fmtstr(f\" & self.{i}.eq(other.{i})\");\n    }\n    f\"{body}\".quoted_contents()\n}\n\nimpl<A: Eq> Eq for (A,) {\n    fn eq(self, other: (A,)) -> bool {\n        self.0 == other.0\n    }\n}\n\nimpl<A: Eq, B: Eq> Eq for (A, B) {\n    fn eq(self, other: (A, B)) -> bool {\n        make_tuple_eq_body!(2u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq> Eq for (A, B, C) {\n    fn eq(self, other: (A, B, C)) -> bool {\n        make_tuple_eq_body!(3u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq> Eq for (A, B, C, D) {\n    fn eq(self, other: (A, B, C, D)) -> bool {\n        make_tuple_eq_body!(4u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq> Eq for (A, B, C, D, E) {\n    fn eq(self, other: (A, B, C, D, E)) -> bool {\n        make_tuple_eq_body!(5u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq> Eq for (A, B, C, D, E, F) {\n    fn eq(self, other: (A, B, C, D, E, F)) -> bool {\n        make_tuple_eq_body!(6u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq> Eq for (A, B, C, D, E, F, G) {\n    fn eq(self, other: (A, B, C, D, E, F, G)) -> bool {\n        make_tuple_eq_body!(7u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq> Eq for (A, B, C, D, E, F, G, H) {\n    fn eq(self, other: (A, B, C, D, E, F, G, H)) -> bool {\n        make_tuple_eq_body!(8u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq, I: Eq> Eq for (A, B, C, D, E, F, G, H, I) {\n    fn eq(self, other: (A, B, C, D, E, F, G, H, I)) -> bool {\n        make_tuple_eq_body!(9u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq, I: Eq, J: Eq> Eq for (A, B, C, D, E, F, G, H, I, J) {\n    fn eq(self, other: (A, B, C, D, E, F, G, H, I, J)) -> bool {\n        make_tuple_eq_body!(10u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq, I: Eq, J: Eq, K: Eq> Eq for (A, B, C, D, E, F, G, H, I, J, K) {\n    fn eq(self, other: (A, B, C, D, E, F, G, H, I, J, K)) -> bool {\n        make_tuple_eq_body!(11u32)\n    }\n}\n\nimpl<A: Eq, B: Eq, C: Eq, D: Eq, E: Eq, F: Eq, G: Eq, H: Eq, I: Eq, J: Eq, K: Eq, L: Eq> Eq for (A, B, C, D, E, F, G, H, I, J, K, L) {\n    fn eq(self, other: (A, B, C, D, E, F, G, H, I, J, K, L)) -> bool {\n        make_tuple_eq_body!(12u32)\n    }\n}\n\nimpl Eq for Ordering {\n    fn eq(self, other: Ordering) -> bool {\n        self.result == other.result\n    }\n}\n\n// Noir doesn't have enums yet so we emulate (Lt | Eq | Gt) with a struct\n// that has 3 public functions for constructing the struct.\n/// A value with three states: `Ordering::less()`, `Ordering::equal()` or `Ordering::greater()`.\n/// Most often used to encode the result of a comparison operation.\npub struct Ordering {\n    result: Field,\n}\n\nimpl Ordering {\n    // Implementation note: 0, 1, and 2 for Lt, Eq, and Gt are built\n    // into the compiler, do not change these without also updating\n    // the compiler itself!\n    pub fn less() -> Ordering {\n        Ordering { result: 0 }\n    }\n\n    pub fn equal() -> Ordering {\n        Ordering { result: 1 }\n    }\n\n    pub fn greater() -> Ordering {\n        Ordering { result: 2 }\n    }\n}\n\n/// Compare one object to another, returning whether it is less-than, equal-to,\n/// or greater-than the other object.\n#[derive_via(derive_ord)]\n// docs:start:ord-trait\npub trait Ord {\n    fn cmp(self, other: Self) -> Ordering;\n}\n// docs:end:ord-trait\n\n// docs:start:derive_ord\ncomptime fn derive_ord(s: TypeDefinition) -> Quoted {\n    let name = quote { $crate::cmp::Ord };\n    let signature = quote { fn cmp(_self: Self, _other: Self) -> $crate::cmp::Ordering };\n    let for_each_field = |name| quote {\n        if result == $crate::cmp::Ordering::equal() {\n            result = _self.$name.cmp(_other.$name);\n        }\n    };\n    let body = |fields| quote {\n        let mut result = $crate::cmp::Ordering::equal();\n        $fields\n        result\n    };\n    crate::meta::make_trait_impl(s, name, signature, for_each_field, quote {}, body)\n}\n// docs:end:derive_ord\n\n// Note: Field deliberately does not implement Ord\n\nimpl Ord for u128 {\n    fn cmp(self, other: u128) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\nimpl Ord for u64 {\n    fn cmp(self, other: u64) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for u32 {\n    fn cmp(self, other: u32) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for u16 {\n    fn cmp(self, other: u16) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for u8 {\n    fn cmp(self, other: u8) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for i8 {\n    fn cmp(self, other: i8) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for i16 {\n    fn cmp(self, other: i16) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for i32 {\n    fn cmp(self, other: i32) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for i64 {\n    fn cmp(self, other: i64) -> Ordering {\n        if self < other {\n            Ordering::less()\n        } else if self > other {\n            Ordering::greater()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl Ord for () {\n    fn cmp(_self: Self, _other: ()) -> Ordering {\n        Ordering::equal()\n    }\n}\n\nimpl Ord for bool {\n    fn cmp(self, other: bool) -> Ordering {\n        if self {\n            if other {\n                Ordering::equal()\n            } else {\n                Ordering::greater()\n            }\n        } else if other {\n            Ordering::less()\n        } else {\n            Ordering::equal()\n        }\n    }\n}\n\nimpl<T, let N: u32> Ord for [T; N]\nwhere\n    T: Ord,\n{\n    // The first non-equal element of both arrays determines\n    // the ordering for the whole array.\n    fn cmp(self, other: [T; N]) -> Ordering {\n        let mut result = Ordering::equal();\n        for i in 0..self.len() {\n            if result == Ordering::equal() {\n                result = self[i].cmp(other[i]);\n            }\n        }\n        result\n    }\n}\n\nimpl<T> Ord for [T]\nwhere\n    T: Ord,\n{\n    // The first non-equal element of both arrays determines\n    // the ordering for the whole array.\n    fn cmp(self, other: [T]) -> Ordering {\n        let self_len = self.len();\n        let other_len = other.len();\n        let min_len = if self_len < other_len {\n            self_len\n        } else {\n            other_len\n        };\n\n        let mut result = Ordering::equal();\n        for i in 0..min_len {\n            if result == Ordering::equal() {\n                result = self[i].cmp(other[i]);\n            }\n        }\n\n        if result != Ordering::equal() {\n            result\n        } else {\n            self_len.cmp(other_len)\n        }\n    }\n}\n\ncomptime fn make_tuple_ord_body(n: u32) -> Quoted {\n    let last = n - 1u32;\n    let mut body = if last == 1 {\n        f\"let result = self.0.cmp(other.0);\".as_ctstring()\n    } else {\n        f\"let mut result = self.0.cmp(other.0);\".as_ctstring()\n    };\n    for i in 1u32..last {\n        body = body.append_fmtstr(\n            f\" if result == Ordering::equal() {{ result = self.{i}.cmp(other.{i}); }}\",\n        );\n    }\n    body = body.append_fmtstr(\n        f\" if result != Ordering::equal() {{ result }} else {{ self.{last}.cmp(other.{last}) }}\",\n    );\n    f\"{body}\".quoted_contents()\n}\n\nimpl<A: Ord> Ord for (A,) {\n    fn cmp(self, other: (A,)) -> Ordering {\n        self.0.cmp(other.0)\n    }\n}\n\nimpl<A: Ord, B: Ord> Ord for (A, B) {\n    fn cmp(self, other: (A, B)) -> Ordering {\n        make_tuple_ord_body!(2u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord> Ord for (A, B, C) {\n    fn cmp(self, other: (A, B, C)) -> Ordering {\n        make_tuple_ord_body!(3u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord> Ord for (A, B, C, D) {\n    fn cmp(self, other: (A, B, C, D)) -> Ordering {\n        make_tuple_ord_body!(4u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord> Ord for (A, B, C, D, E) {\n    fn cmp(self, other: (A, B, C, D, E)) -> Ordering {\n        make_tuple_ord_body!(5u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord> Ord for (A, B, C, D, E, F) {\n    fn cmp(self, other: (A, B, C, D, E, F)) -> Ordering {\n        make_tuple_ord_body!(6u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord> Ord for (A, B, C, D, E, F, G) {\n    fn cmp(self, other: (A, B, C, D, E, F, G)) -> Ordering {\n        make_tuple_ord_body!(7u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord> Ord for (A, B, C, D, E, F, G, H) {\n    fn cmp(self, other: (A, B, C, D, E, F, G, H)) -> Ordering {\n        make_tuple_ord_body!(8u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord, I: Ord> Ord for (A, B, C, D, E, F, G, H, I) {\n    fn cmp(self, other: (A, B, C, D, E, F, G, H, I)) -> Ordering {\n        make_tuple_ord_body!(9u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord, I: Ord, J: Ord> Ord for (A, B, C, D, E, F, G, H, I, J) {\n    fn cmp(self, other: (A, B, C, D, E, F, G, H, I, J)) -> Ordering {\n        make_tuple_ord_body!(10u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord, I: Ord, J: Ord, K: Ord> Ord for (A, B, C, D, E, F, G, H, I, J, K) {\n    fn cmp(self, other: (A, B, C, D, E, F, G, H, I, J, K)) -> Ordering {\n        make_tuple_ord_body!(11u32)\n    }\n}\n\nimpl<A: Ord, B: Ord, C: Ord, D: Ord, E: Ord, F: Ord, G: Ord, H: Ord, I: Ord, J: Ord, K: Ord, L: Ord> Ord for (A, B, C, D, E, F, G, H, I, J, K, L) {\n    fn cmp(self, other: (A, B, C, D, E, F, G, H, I, J, K, L)) -> Ordering {\n        make_tuple_ord_body!(12u32)\n    }\n}\n\n/// Compares and returns the maximum of two values.\n///\n/// Returns the second argument if the comparison determines them to be equal.\n///\n/// # Examples\n///\n/// ```\n/// use std::cmp;\n///\n/// assert_eq(cmp::max(1, 2), 2);\n/// assert_eq(cmp::max(2, 2), 2);\n/// ```\npub fn max<T>(v1: T, v2: T) -> T\nwhere\n    T: Ord,\n{\n    if v1 > v2 {\n        v1\n    } else {\n        v2\n    }\n}\n\n/// Compares and returns the minimum of two values.\n///\n/// Returns the first argument if the comparison determines them to be equal.\n///\n/// # Examples\n///\n/// ```\n/// use std::cmp;\n///\n/// assert_eq(cmp::min(1, 2), 1);\n/// assert_eq(cmp::min(2, 2), 2);\n/// ```\npub fn min<T>(v1: T, v2: T) -> T\nwhere\n    T: Ord,\n{\n    if v1 > v2 {\n        v2\n    } else {\n        v1\n    }\n}\n\nmod cmp_tests {\n    use crate::meta::unquote;\n    use super::{Eq, max, min, Ord, Ordering};\n\n    #[test]\n    fn sanity_check_min() {\n        assert_eq(min(0_u64, 1), 0);\n        assert_eq(min(0_u64, 0), 0);\n        assert_eq(min(1_u64, 1), 1);\n        assert_eq(min(255_u8, 0), 0);\n    }\n\n    #[test]\n    fn sanity_check_max() {\n        assert_eq(max(0_u64, 1), 1);\n        assert_eq(max(0_u64, 0), 0);\n        assert_eq(max(1_u64, 1), 1);\n        assert_eq(max(255_u8, 0), 255);\n    }\n\n    #[test]\n    fn correctly_handles_unequal_length_vectors() {\n        let vector_1 = [0, 1, 2, 3].as_vector();\n        let vector_2 = [0, 1, 2].as_vector();\n        assert(!vector_1.eq(vector_2));\n    }\n\n    #[test]\n    fn lexicographic_ordering_for_vectors() {\n        assert(\n            [2_u32].as_vector().cmp([1_u32, 1_u32, 1_u32].as_vector())\n                == super::Ordering::greater(),\n        );\n        assert(\n            [1_u32, 2_u32].as_vector().cmp([1_u32, 2_u32, 3_u32].as_vector())\n                == super::Ordering::less(),\n        );\n    }\n\n    #[test]\n    fn eq_unit() {\n        assert(().eq(()));\n    }\n\n    #[test]\n    fn eq_bool() {\n        assert(false.eq(false));\n        assert(!(false.eq(true)));\n        assert(!(true.eq(false)));\n        assert(true.eq(true));\n    }\n\n    #[test]\n    fn eq_integers() {\n        comptime {\n            for typ in @[\n                quote { u8 },\n                quote { i8 },\n                quote { u16 },\n                quote { i16 },\n                quote { u32 },\n                quote { i32 },\n                quote { u64 },\n                quote { i64 },\n                quote { u128 },\n                quote { Field },\n            ] {\n                let one = f\"1_{typ}\".quoted_contents();\n                let two = f\"2_{typ}\".quoted_contents();\n                unquote!(\n                    quote {\n                        assert($one.eq($one));\n                        assert(!($one.eq($two)));\n                    },\n                );\n            }\n        }\n    }\n\n    #[test]\n    fn eq_tuples() {\n        comptime {\n            for i in 1..=12 {\n                let mut tuple1 = @[];\n                let mut tuple2 = @[];\n                for _ in 0..i - 1 {\n                    tuple1 = tuple1.push_back(quote { 0 });\n                    tuple2 = tuple2.push_back(quote { 0 });\n                }\n                tuple1 = tuple1.push_back(quote { 0 });\n                tuple2 = tuple2.push_back(quote { 1 });\n                let tuple1 = tuple1.join(quote { , });\n                let tuple2 = tuple2.join(quote { , });\n                let tuple1 = quote { ($tuple1,) };\n                let tuple2 = quote { ($tuple2,) };\n                unquote!(\n                    quote {\n                    assert($tuple1.eq($tuple1));\n                    assert(!($tuple1.eq($tuple2)));\n                },\n                )\n            }\n        }\n    }\n\n    #[test]\n    fn cmp_unit() {\n        assert_eq(().cmp(()), Ordering::equal());\n    }\n\n    #[test]\n    fn cmp_bool() {\n        assert_eq(false.cmp(true), Ordering::less());\n        assert_eq(false.cmp(false), Ordering::equal());\n        assert_eq(true.cmp(true), Ordering::equal());\n        assert_eq(true.cmp(false), Ordering::greater());\n    }\n\n    #[test]\n    fn cmp_integers() {\n        comptime {\n            for typ in @[\n                quote { u8 },\n                quote { i8 },\n                quote { u16 },\n                quote { i16 },\n                quote { u32 },\n                quote { i32 },\n                quote { u64 },\n                quote { i64 },\n                quote { u128 },\n            ] {\n                let one = f\"1_{typ}\".quoted_contents();\n                let two = f\"2_{typ}\".quoted_contents();\n                unquote!(\n                    quote {\n                        assert_eq($one.cmp($two), Ordering::less());\n                        assert_eq($one.cmp($one), Ordering::equal());\n                        assert_eq($two.cmp($one), Ordering::greater());\n                    },\n                );\n            }\n        }\n    }\n\n    #[test]\n    fn cmp_tuples() {\n        comptime {\n            for i in 1..=12 {\n                let mut tuple1 = @[];\n                let mut tuple2 = @[];\n                for _ in 0..i - 1 {\n                    tuple1 = tuple1.push_back(quote { 0_u8 });\n                    tuple2 = tuple2.push_back(quote { 0_u8 });\n                }\n                tuple1 = tuple1.push_back(quote { 0_u8 });\n                tuple2 = tuple2.push_back(quote { 1_u8 });\n                let tuple1 = tuple1.join(quote { , });\n                let tuple2 = tuple2.join(quote { , });\n                let tuple1 = quote { ($tuple1,) };\n                let tuple2 = quote { ($tuple2,) };\n                unquote!(\n                    quote {\n                    assert_eq($tuple1.cmp($tuple1), Ordering::equal());\n                    assert_eq($tuple1.cmp($tuple2), Ordering::less());\n                    assert_eq($tuple2.cmp($tuple1), Ordering::greater());\n                },\n                )\n            }\n        }\n    }\n\n    #[test]\n    fn cmp_array() {\n        assert_eq([1_u8, 2, 3].cmp([1, 2, 3]), Ordering::equal());\n        assert_eq([1_u8, 2, 3].cmp([1, 3, 2]), Ordering::less());\n        assert_eq([1_u8, 3, 3].cmp([1, 2, 3]), Ordering::greater());\n    }\n\n    #[test]\n    fn cmp_vectors() {\n        // Equal lengths\n        assert_eq(@[1_u8, 2, 3].cmp(@[1, 2, 3]), Ordering::equal());\n        assert_eq(@[1_u8, 3, 3].cmp(@[1, 2, 3]), Ordering::greater());\n        assert_eq(@[1_u8, 2, 3].cmp(@[1, 3, 3]), Ordering::less());\n\n        // Different lengths\n        assert_eq(@[1_u8, 2].cmp(@[1, 2, 3]), Ordering::less());\n        assert_eq(@[1_u8, 2, 3].cmp(@[1, 2]), Ordering::greater());\n        assert_eq(@[10_u8, 0].cmp(@[9]), Ordering::greater());\n        assert_eq(@[9_u8, 0].cmp(@[10]), Ordering::less());\n        assert_eq(@[9_u8].cmp(@[10, 0]), Ordering::less());\n        assert_eq(@[10_u8].cmp(@[9, 0]), Ordering::greater());\n    }\n}\n"
    },
    "51": {
      "function_locations": [
        {
          "name": "StatefulTest::constructor",
          "start": 909
        },
        {
          "name": "StatefulTest::wrong_constructor",
          "start": 1055
        },
        {
          "name": "StatefulTest::public_constructor",
          "start": 1339
        },
        {
          "name": "StatefulTest::create_note",
          "start": 1504
        },
        {
          "name": "StatefulTest::create_note_no_init_check",
          "start": 1812
        },
        {
          "name": "StatefulTest::destroy_and_create_no_init_check",
          "start": 2117
        },
        {
          "name": "StatefulTest::increment_public_value",
          "start": 2502
        },
        {
          "name": "StatefulTest::increment_public_value_no_init_check",
          "start": 2730
        },
        {
          "name": "StatefulTest::summed_values",
          "start": 2930
        },
        {
          "name": "StatefulTest::get_balance_with_offset",
          "start": 3236
        },
        {
          "name": "StatefulTest::get_public_value",
          "start": 3800
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/noir-contracts/contracts/test/stateful_test_contract/src/main.nr",
      "source": "// A contract used for testing a random hodgepodge of small features from simulator and end-to-end tests.\nuse aztec::macros::aztec;\n\n#[aztec]\npub contract StatefulTest {\n    use aztec::macros::{functions::{external, initializer, noinitcheck, view}, storage::storage};\n    use aztec::{\n        messages::delivery::MessageDelivery,\n        note::{note_getter_options::NoteGetterOptions, note_viewer_options::NoteViewerOptions},\n        protocol::{abis::function_selector::FunctionSelector, address::AztecAddress},\n        state_vars::{Map, Owned, PrivateSet, PublicMutable},\n    };\n    use field_note::FieldNote;\n\n    #[storage]\n    struct Storage<Context> {\n        notes: Owned<PrivateSet<FieldNote, Context>, Context>,\n        public_values: Map<AztecAddress, PublicMutable<Field, Context>, Context>,\n    }\n\n    #[external(\"private\")]\n    #[initializer]\n    fn constructor(owner: AztecAddress, value: Field) {\n        self.call_self.create_note_no_init_check(owner, value);\n    }\n\n    #[external(\"private\")]\n    #[initializer]\n    fn wrong_constructor() {\n        let selector = FunctionSelector::from_signature(\"not_exists(Field)\");\n        let _res = self.context.call_public_function(self.address, selector, [42], false);\n    }\n\n    #[external(\"public\")]\n    #[initializer]\n    fn public_constructor(owner: AztecAddress, value: Field) {\n        self.call_self.increment_public_value_no_init_check(owner, value);\n    }\n\n    #[external(\"private\")]\n    fn create_note(owner: AztecAddress, value: Field) {\n        if (value != 0) {\n            let note = FieldNote { value };\n            self.storage.notes.at(owner).insert(note).deliver(MessageDelivery::onchain_unconstrained());\n        }\n    }\n\n    #[external(\"private\")]\n    #[noinitcheck]\n    fn create_note_no_init_check(owner: AztecAddress, value: Field) {\n        if (value != 0) {\n            let note = FieldNote { value };\n            self.storage.notes.at(owner).insert(note).deliver(MessageDelivery::onchain_unconstrained());\n        }\n    }\n\n    #[external(\"private\")]\n    #[noinitcheck]\n    fn destroy_and_create_no_init_check(recipient: AztecAddress) {\n        let sender = self.msg_sender();\n\n        let _ = self.storage.notes.at(sender).pop_notes(NoteGetterOptions::new().set_limit(2));\n\n        self.storage.notes.at(recipient).insert(FieldNote { value: 92 }).deliver(\n            MessageDelivery::onchain_unconstrained(),\n        );\n    }\n\n    #[external(\"public\")]\n    fn increment_public_value(owner: AztecAddress, value: Field) {\n        let loc = self.storage.public_values.at(owner);\n        loc.write(loc.read() + value);\n    }\n\n    #[external(\"public\")]\n    #[noinitcheck]\n    fn increment_public_value_no_init_check(owner: AztecAddress, value: Field) {\n        let loc = self.storage.public_values.at(owner);\n        loc.write(loc.read() + value);\n    }\n\n    #[external(\"utility\")]\n    unconstrained fn summed_values(owner: AztecAddress) -> pub Field {\n        // Return the sum of all notes in the set.\n        get_balance_with_offset(self.storage.notes.at(owner), 0)\n    }\n\n    #[contract_library_method]\n    unconstrained fn get_balance_with_offset(\n        set: PrivateSet<FieldNote, aztec::context::UtilityContext>,\n        offset: u32,\n    ) -> Field {\n        let mut balance = 0;\n        let options = NoteViewerOptions::new().set_offset(offset);\n        let notes = set.view_notes(options);\n        for i in 0..options.limit {\n            if i < notes.len() {\n                balance += notes.get_unchecked(i).value;\n            }\n        }\n\n        if (notes.len() == options.limit) {\n            balance += get_balance_with_offset(set, offset + options.limit);\n        }\n\n        balance\n    }\n\n    #[external(\"public\")]\n    #[noinitcheck]\n    #[view]\n    fn get_public_value(owner: AztecAddress) -> pub Field {\n        self.storage.public_values.at(owner).read()\n    }\n}\n"
    },
    "6": {
      "function_locations": [
        {
          "name": "BoundedVec<T, MaxLen>::new",
          "start": 2304
        },
        {
          "name": "BoundedVec<T, MaxLen>::get",
          "start": 2907
        },
        {
          "name": "BoundedVec<T, MaxLen>::get_unchecked",
          "start": 3815
        },
        {
          "name": "BoundedVec<T, MaxLen>::set",
          "start": 4398
        },
        {
          "name": "BoundedVec<T, MaxLen>::set_unchecked",
          "start": 5926
        },
        {
          "name": "BoundedVec<T, MaxLen>::push",
          "start": 6464
        },
        {
          "name": "BoundedVec<T, MaxLen>::len",
          "start": 7072
        },
        {
          "name": "BoundedVec<T, MaxLen>::max_len",
          "start": 7513
        },
        {
          "name": "BoundedVec<T, MaxLen>::storage",
          "start": 8111
        },
        {
          "name": "BoundedVec<T, MaxLen>::extend_from_array",
          "start": 8667
        },
        {
          "name": "BoundedVec<T, MaxLen>::extend_from_vector",
          "start": 9438
        },
        {
          "name": "BoundedVec<T, MaxLen>::extend_from_bounded_vec",
          "start": 10383
        },
        {
          "name": "BoundedVec<T, MaxLen>::from_array",
          "start": 12778
        },
        {
          "name": "BoundedVec<T, MaxLen>::pop",
          "start": 13521
        },
        {
          "name": "BoundedVec<T, MaxLen>::any",
          "start": 14063
        },
        {
          "name": "BoundedVec<T, MaxLen>::map",
          "start": 14979
        },
        {
          "name": "BoundedVec<T, MaxLen>::mapi",
          "start": 15979
        },
        {
          "name": "BoundedVec<T, MaxLen>::for_each",
          "start": 16937
        },
        {
          "name": "BoundedVec<T, MaxLen>::for_eachi",
          "start": 17742
        },
        {
          "name": "BoundedVec<T, MaxLen>::from_parts",
          "start": 18439
        },
        {
          "name": "BoundedVec<T, MaxLen>::from_parts_unchecked",
          "start": 19903
        },
        {
          "name": "<impl Eq for BoundedVec<T, MaxLen>>::eq",
          "start": 20115
        },
        {
          "name": "unconstrained_eq",
          "start": 21039
        },
        {
          "name": "<impl From<[T; Len]> for BoundedVec<T, MaxLen>>::from",
          "start": 21335
        },
        {
          "name": "bounded_vec_tests::get::panics_when_reading_elements_past_end_of_vec",
          "start": 21618
        },
        {
          "name": "bounded_vec_tests::get::panics_when_reading_beyond_length",
          "start": 21853
        },
        {
          "name": "bounded_vec_tests::get::get_works_within_bounds",
          "start": 22028
        },
        {
          "name": "bounded_vec_tests::get::get_unchecked_works",
          "start": 22287
        },
        {
          "name": "bounded_vec_tests::get::get_unchecked_works_past_len",
          "start": 22531
        },
        {
          "name": "bounded_vec_tests::set::set_updates_values_properly",
          "start": 22804
        },
        {
          "name": "bounded_vec_tests::set::panics_when_writing_elements_past_end_of_vec",
          "start": 23442
        },
        {
          "name": "bounded_vec_tests::set::panics_when_setting_beyond_length",
          "start": 23677
        },
        {
          "name": "bounded_vec_tests::set::set_unchecked_operations",
          "start": 23852
        },
        {
          "name": "bounded_vec_tests::set::set_unchecked_operations_past_len",
          "start": 24184
        },
        {
          "name": "bounded_vec_tests::set::set_preserves_other_elements",
          "start": 24448
        },
        {
          "name": "bounded_vec_tests::any::returns_false_if_predicate_not_satisfied",
          "start": 24995
        },
        {
          "name": "bounded_vec_tests::any::returns_true_if_predicate_satisfied",
          "start": 25279
        },
        {
          "name": "bounded_vec_tests::any::returns_false_on_empty_boundedvec",
          "start": 25528
        },
        {
          "name": "bounded_vec_tests::any::any_with_complex_predicates",
          "start": 25769
        },
        {
          "name": "bounded_vec_tests::any::any_with_partial_vector",
          "start": 26132
        },
        {
          "name": "bounded_vec_tests::map::applies_function_correctly",
          "start": 26598
        },
        {
          "name": "bounded_vec_tests::map::applies_function_that_changes_return_type",
          "start": 27020
        },
        {
          "name": "bounded_vec_tests::map::does_not_apply_function_past_len",
          "start": 27368
        },
        {
          "name": "bounded_vec_tests::map::map_with_conditional_logic",
          "start": 27741
        },
        {
          "name": "bounded_vec_tests::map::map_preserves_length",
          "start": 28065
        },
        {
          "name": "bounded_vec_tests::map::map_on_empty_vector",
          "start": 28357
        },
        {
          "name": "bounded_vec_tests::mapi::applies_function_correctly",
          "start": 28810
        },
        {
          "name": "bounded_vec_tests::mapi::applies_function_that_changes_return_type",
          "start": 29243
        },
        {
          "name": "bounded_vec_tests::mapi::does_not_apply_function_past_len",
          "start": 29600
        },
        {
          "name": "bounded_vec_tests::mapi::mapi_with_index_branching_logic",
          "start": 29982
        },
        {
          "name": "bounded_vec_tests::for_each::for_each_map",
          "start": 30590
        },
        {
          "name": "bounded_vec_tests::for_each::smoke_test",
          "start": 30850
        },
        {
          "name": "bounded_vec_tests::for_each::applies_function_correctly",
          "start": 31258
        },
        {
          "name": "bounded_vec_tests::for_each::applies_function_that_changes_return_type",
          "start": 31592
        },
        {
          "name": "bounded_vec_tests::for_each::does_not_apply_function_past_len",
          "start": 31950
        },
        {
          "name": "bounded_vec_tests::for_each::for_each_on_empty_vector",
          "start": 32331
        },
        {
          "name": "bounded_vec_tests::for_each::for_each_with_side_effects",
          "start": 32617
        },
        {
          "name": "bounded_vec_tests::for_eachi::for_eachi_mapi",
          "start": 33223
        },
        {
          "name": "bounded_vec_tests::for_eachi::smoke_test",
          "start": 33490
        },
        {
          "name": "bounded_vec_tests::for_eachi::applies_function_correctly",
          "start": 33946
        },
        {
          "name": "bounded_vec_tests::for_eachi::applies_function_that_changes_return_type",
          "start": 34290
        },
        {
          "name": "bounded_vec_tests::for_eachi::does_not_apply_function_past_len",
          "start": 34658
        },
        {
          "name": "bounded_vec_tests::for_eachi::for_eachi_on_empty_vector",
          "start": 35045
        },
        {
          "name": "bounded_vec_tests::for_eachi::for_eachi_with_index_tracking",
          "start": 35338
        },
        {
          "name": "bounded_vec_tests::from_array::empty",
          "start": 35815
        },
        {
          "name": "bounded_vec_tests::from_array::equal_len",
          "start": 36125
        },
        {
          "name": "bounded_vec_tests::from_array::max_len_greater_then_array_len",
          "start": 36442
        },
        {
          "name": "bounded_vec_tests::from_array::max_len_lower_then_array_len",
          "start": 36913
        },
        {
          "name": "bounded_vec_tests::from_array::from_array_preserves_order",
          "start": 37056
        },
        {
          "name": "bounded_vec_tests::from_array::from_array_with_different_types",
          "start": 37345
        },
        {
          "name": "bounded_vec_tests::trait_from::simple",
          "start": 37782
        },
        {
          "name": "bounded_vec_tests::trait_eq::empty_equality",
          "start": 38220
        },
        {
          "name": "bounded_vec_tests::trait_eq::equality",
          "start": 38467
        },
        {
          "name": "bounded_vec_tests::trait_eq::inequality",
          "start": 38791
        },
        {
          "name": "bounded_vec_tests::from_parts::from_parts",
          "start": 39330
        },
        {
          "name": "bounded_vec_tests::push_pop::push_and_pop_operations",
          "start": 40003
        },
        {
          "name": "bounded_vec_tests::push_pop::push_to_full_vector",
          "start": 40629
        },
        {
          "name": "bounded_vec_tests::push_pop::pop_from_empty_vector",
          "start": 40903
        },
        {
          "name": "bounded_vec_tests::push_pop::push_pop_cycle",
          "start": 41072
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_array",
          "start": 41767
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_vector",
          "start": 42113
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec",
          "start": 42507
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_limit",
          "start": 43128
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_full_and_empty",
          "start": 43642
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_zero_len",
          "start": 44146
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_last_zeroed",
          "start": 44440
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_empty_self",
          "start": 44865
        },
        {
          "name": "bounded_vec_tests::extend::extend_from_bounded_vec_equal_capacity",
          "start": 45432
        },
        {
          "name": "bounded_vec_tests::extend::extend_array_beyond_max_len",
          "start": 46019
        },
        {
          "name": "bounded_vec_tests::extend::extend_vector_beyond_max_len",
          "start": 46297
        },
        {
          "name": "bounded_vec_tests::extend::extend_bounded_vec_beyond_max_len",
          "start": 46600
        },
        {
          "name": "bounded_vec_tests::extend::extend_with_empty_collections",
          "start": 46886
        },
        {
          "name": "bounded_vec_tests::storage::storage_consistency",
          "start": 47486
        },
        {
          "name": "bounded_vec_tests::storage::storage_after_pop",
          "start": 47988
        },
        {
          "name": "bounded_vec_tests::storage::vector_immutable",
          "start": 48310
        }
      ],
      "path": "std/collections/bounded_vec.nr",
      "source": "use crate::{cmp::Eq, convert::From, runtime::is_unconstrained, static_assert};\n\n/// A `BoundedVec<T, MaxLen>` is a growable storage similar to a built-in vector except that it\n/// is bounded with a maximum possible length. `BoundedVec` is also not\n/// subject to the same restrictions vectors are (notably, nested vectors are disallowed).\n///\n/// Since a BoundedVec is backed by a normal array under the hood, growing the BoundedVec by\n/// pushing an additional element is also more efficient - the length only needs to be increased\n/// by one.\n///\n/// For these reasons `BoundedVec<T, N>` should generally be preferred over vectors when there\n/// is a reasonable maximum bound that can be placed on the vector.\n///\n/// Example:\n///\n/// ```noir\n/// let mut vector: BoundedVec<Field, 10> = BoundedVec::new();\n/// for i in 0..5 {\n///     vector.push(i);\n/// }\n/// assert(vector.len() == 5);\n/// assert(vector.max_len() == 10);\n/// ```\npub struct BoundedVec<T, let MaxLen: u32> {\n    storage: [T; MaxLen],\n    len: u32,\n}\n\nimpl<T, let MaxLen: u32> BoundedVec<T, MaxLen> {\n    /// Creates a new, empty vector of length zero.\n    ///\n    /// Since this container is backed by an array internally, it still needs an initial value\n    /// to give each element. To resolve this, each element is zeroed internally. This value\n    /// is guaranteed to be inaccessible unless `get_unchecked` is used.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let empty_vector: BoundedVec<Field, 10> = BoundedVec::new();\n    /// assert(empty_vector.len() == 0);\n    /// ```\n    ///\n    /// Note that whenever calling `new` the maximum length of the vector should generally be specified\n    /// via a type signature:\n    ///\n    /// ```noir\n    /// fn good() -> BoundedVec<Field, 10> {\n    ///     // Ok! MaxLen is specified with a type annotation\n    ///     let v1: BoundedVec<Field, 3> = BoundedVec::new();\n    ///     let v2 = BoundedVec::new();\n    ///\n    ///     // Ok! MaxLen is known from the type of `good`'s return value\n    ///     v2\n    /// }\n    ///\n    /// fn bad() {\n    ///     // Error: Type annotation needed\n    ///     // The compiler can't infer `MaxLen` from the following code:\n    ///     let mut v3 = BoundedVec::new();\n    ///     v3.push(5);\n    /// }\n    /// ```\n    pub fn new() -> Self {\n        let zeroed = crate::mem::zeroed();\n        BoundedVec { storage: [zeroed; MaxLen], len: 0 }\n    }\n\n    /// Retrieves an element from the vector at the given index, starting from zero.\n    ///\n    /// If the given index is equal to or greater than the length of the vector, this\n    /// will issue a constraint failure.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn foo<let N: u32>(v: BoundedVec<u32, N>) {\n    ///     let first = v.get(0);\n    ///     let last = v.get(v.len() - 1);\n    ///     assert(first != last);\n    /// }\n    /// ```\n    pub fn get(&self, index: u32) -> T {\n        assert(index < self.len, \"Attempted to read past end of BoundedVec\");\n        self.get_unchecked(index)\n    }\n\n    /// Retrieves an element from the vector at the given index, starting from zero, without\n    /// performing a bounds check.\n    ///\n    /// Since this function does not perform a bounds check on length before accessing the element,\n    /// it is unsafe! Use at your own risk!\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn sum_of_first_three<let N: u32>(v: BoundedVec<u32, N>) -> u32 {\n    ///     // Always ensure the length is larger than the largest\n    ///     // index passed to get_unchecked\n    ///     assert(v.len() > 2);\n    ///     let first = v.get_unchecked(0);\n    ///     let second = v.get_unchecked(1);\n    ///     let third = v.get_unchecked(2);\n    ///     first + second + third\n    /// }\n    /// ```\n    pub fn get_unchecked(&self, index: u32) -> T {\n        self.storage[index]\n    }\n\n    /// Writes an element to the vector at the given index, starting from zero.\n    ///\n    /// If the given index is equal to or greater than the length of the vector, this will issue a constraint failure.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn foo<let N: u32>(v: BoundedVec<u32, N>) {\n    ///     let first = v.get(0);\n    ///     assert(first != 42);\n    ///     v.set(0, 42);\n    ///     let new_first = v.get(0);\n    ///     assert(new_first == 42);\n    /// }\n    /// ```\n    pub fn set(&mut self, index: u32, value: T) {\n        assert(index < self.len, \"Attempted to write past end of BoundedVec\");\n        self.set_unchecked(index, value)\n    }\n\n    /// Writes an element to the vector at the given index, starting from zero, without performing a bounds check.\n    ///\n    /// Since this function does not perform a bounds check on length before accessing the element, it is unsafe! Use at your own risk!\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// fn set_unchecked_example() {\n    ///     let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n    ///     vec.extend_from_array([1, 2]);\n    ///\n    ///     // Here we're safely writing within the valid range of `vec`\n    ///     // `vec` now has the value [42, 2]\n    ///     vec.set_unchecked(0, 42);\n    ///\n    ///     // We can then safely read this value back out of `vec`.\n    ///     // Notice that we use the checked version of `get` which would prevent reading unsafe values.\n    ///     assert_eq(vec.get(0), 42);\n    ///\n    ///     // We've now written past the end of `vec`.\n    ///     // As this index is still within the maximum potential length of `v`,\n    ///     // it won't cause a constraint failure.\n    ///     vec.set_unchecked(2, 42);\n    ///     println(vec);\n    ///\n    ///     // This will write past the end of the maximum potential length of `vec`,\n    ///     // it will then trigger a constraint failure.\n    ///     vec.set_unchecked(5, 42);\n    ///     println(vec);\n    /// }\n    /// ```\n    pub fn set_unchecked(&mut self, index: u32, value: T) {\n        self.storage[index] = value;\n    }\n\n    /// Pushes an element to the end of the vector. This increases the length\n    /// of the vector by one.\n    ///\n    /// Panics if the new length of the vector will be greater than the max length.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<Field, 2> = BoundedVec::new();\n    ///\n    /// v.push(1);\n    /// v.push(2);\n    ///\n    /// // Panics with failed assertion \"push out of bounds\"\n    /// v.push(3);\n    /// ```\n    pub fn push(&mut self, elem: T) {\n        assert(self.len < MaxLen, \"push out of bounds\");\n\n        self.storage[self.len] = elem;\n        self.len += 1;\n    }\n\n    /// Returns the current length of this vector\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<Field, 4> = BoundedVec::new();\n    /// assert(v.len() == 0);\n    ///\n    /// v.push(100);\n    /// assert(v.len() == 1);\n    ///\n    /// v.push(200);\n    /// v.push(300);\n    /// v.push(400);\n    /// assert(v.len() == 4);\n    ///\n    /// let _ = v.pop();\n    /// let _ = v.pop();\n    /// assert(v.len() == 2);\n    /// ```\n    pub fn len(&self) -> u32 {\n        self.len\n    }\n\n    /// Returns the maximum length of this vector. This is always\n    /// equal to the `MaxLen` parameter this vector was initialized with.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<Field, 5> = BoundedVec::new();\n    ///\n    /// assert(v.max_len() == 5);\n    /// v.push(10);\n    /// assert(v.max_len() == 5);\n    /// ```\n    pub fn max_len(_self: &BoundedVec<T, MaxLen>) -> u32 {\n        MaxLen\n    }\n\n    /// Returns the internal array within this vector.\n    ///\n    /// Since arrays in Noir are immutable, mutating the returned storage array will not mutate\n    /// the storage held internally by this vector.\n    ///\n    /// Note that uninitialized elements may be zeroed out!\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<Field, 5> = BoundedVec::new();\n    ///\n    /// assert(v.storage() == [0, 0, 0, 0, 0]);\n    ///\n    /// v.push(57);\n    /// assert(v.storage() == [57, 0, 0, 0, 0]);\n    /// ```\n    pub fn storage(self) -> [T; MaxLen] {\n        self.storage\n    }\n\n    /// Pushes each element from the given array to this vector.\n    ///\n    /// Panics if pushing each element would cause the length of this vector\n    /// to exceed the maximum length.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut vec: BoundedVec<Field, 3> = BoundedVec::new();\n    /// vec.extend_from_array([2, 4]);\n    ///\n    /// assert(vec.len == 2);\n    /// assert(vec.get(0) == 2);\n    /// assert(vec.get(1) == 4);\n    /// ```\n    pub fn extend_from_array<let Len: u32>(&mut self, array: [T; Len]) {\n        let new_len = self.len + array.len();\n        assert(new_len <= MaxLen, \"extend_from_array out of bounds\");\n        for i in 0..array.len() {\n            self.storage[self.len + i] = array[i];\n        }\n        self.len = new_len;\n    }\n\n    /// Pushes each element from the given vector to this vector.\n    ///\n    /// Panics if pushing each element would cause the length of this vector\n    /// to exceed the maximum length.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut vec: BoundedVec<Field, 3> = BoundedVec::new();\n    /// vec.extend_from_vector([2, 4].as_vector());\n    ///\n    /// assert(vec.len == 2);\n    /// assert(vec.get(0) == 2);\n    /// assert(vec.get(1) == 4);\n    /// ```\n    pub fn extend_from_vector(&mut self, vector: [T]) {\n        let new_len = self.len + vector.len();\n        assert(new_len <= MaxLen, \"extend_from_vector out of bounds\");\n        for i in 0..vector.len() {\n            self.storage[self.len + i] = vector[i];\n        }\n        self.len = new_len;\n    }\n\n    /// Pushes each element from the other vector to this vector. The length of\n    /// the other vector is left unchanged.\n    ///\n    /// Panics if pushing each element would cause the length of this vector\n    /// to exceed the maximum length.\n    ///\n    /// ```noir\n    /// let mut v1: BoundedVec<Field, 5> = BoundedVec::new();\n    /// let mut v2: BoundedVec<Field, 7> = BoundedVec::new();\n    ///\n    /// v2.extend_from_array([1, 2, 3]);\n    /// v1.extend_from_bounded_vec(v2);\n    ///\n    /// assert(v1.storage() == [1, 2, 3, 0, 0]);\n    /// assert(v2.storage() == [1, 2, 3, 0, 0, 0, 0]);\n    /// ```\n    pub fn extend_from_bounded_vec<let Len: u32>(&mut self, vec: BoundedVec<T, Len>) {\n        let append_len = vec.len();\n        let new_len = self.len + append_len;\n        assert(new_len <= MaxLen, \"extend_from_bounded_vec out of bounds\");\n\n        if is_unconstrained() {\n            for i in 0..append_len {\n                self.storage[self.len + i] = vec.get_unchecked(i);\n            }\n        } else {\n            // The source vector can be longer than the destination, or vice versa;\n            // regardless we will only ever be able to read or write whichever is\n            // the shorter max length of the two. We asserted that the actual content fits,\n            // but the capacity of the source vector could be higher.\n            let max = crate::cmp::min(Len, MaxLen);\n\n            // Save the last item in case we have to do a fixup on an already full array.\n            let last = if MaxLen > 0 {\n                self.storage[MaxLen - 1]\n            } else {\n                crate::mem::zeroed()\n            };\n\n            for src in 0..max {\n                // Since we are iterating to the static capacity of the arrays,\n                // the destination could be out of bounds. If that's the case,\n                // overwrite the last item, which we'll fixup in the end.\n                // NB using cmp::min resulted in more opcodes here.\n                let mut dst = self.len + src;\n                if dst >= MaxLen { dst = MaxLen - 1; };\n                // Assigning the source or zeroed to avoid having to merge arrays in SSA.\n                self.storage[dst] = if src < append_len {\n                    vec.get_unchecked(src)\n                } else {\n                    last\n                }\n            }\n\n            // Fixup the last item if we have to.\n            if MaxLen > 0 {\n                self.storage[MaxLen - 1] = if (self.len + append_len == MaxLen) & (append_len > 0) {\n                    vec.get_unchecked(append_len - 1)\n                } else {\n                    last\n                }\n            }\n        }\n        self.len = new_len;\n    }\n\n    /// Creates a new vector, populating it with values derived from an array input.\n    /// The maximum length of the vector is determined based on the type signature.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let bounded_vec: BoundedVec<Field, 10> = BoundedVec::from_array([1, 2, 3])\n    /// ```\n    pub fn from_array<let Len: u32>(array: [T; Len]) -> Self {\n        static_assert(Len <= MaxLen, \"from array out of bounds\");\n        let mut vec: BoundedVec<T, MaxLen> = BoundedVec::new();\n        vec.extend_from_array(array);\n        vec\n    }\n\n    /// Pops the element at the end of the vector. This will decrease the length\n    /// of the vector by one.\n    ///\n    /// Panics if the vector is empty.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<Field, 2> = BoundedVec::new();\n    /// v.push(1);\n    /// v.push(2);\n    ///\n    /// let two = v.pop();\n    /// let one = v.pop();\n    ///\n    /// assert(two == 2);\n    /// assert(one == 1);\n    ///\n    /// // error: cannot pop from an empty vector\n    /// let _ = v.pop();\n    /// ```\n    pub fn pop(&mut self) -> T {\n        assert(self.len > 0, \"cannot pop from an empty vector\");\n        self.len -= 1;\n        self.storage[self.len]\n    }\n\n    /// Returns true if the given predicate returns true for any element\n    /// in this vector.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let mut v: BoundedVec<u32, 3> = BoundedVec::new();\n    /// v.extend_from_array([2, 4, 6]);\n    ///\n    /// let all_even = !v.any(|elem: u32| elem % 2 != 0);\n    /// assert(all_even);\n    /// ```\n    pub fn any<Env>(self, predicate: fn[Env](T) -> bool) -> bool {\n        let mut ret = false;\n        if is_unconstrained() {\n            for i in 0..self.len {\n                ret |= predicate(self.storage[i]);\n            }\n        } else {\n            let mut exceeded_len = false;\n            for i in 0..MaxLen {\n                exceeded_len |= i == self.len;\n                if !exceeded_len {\n                    ret |= predicate(self.storage[i]);\n                }\n            }\n        }\n        ret\n    }\n\n    /// Creates a new vector of equal size by calling a closure on each element in this vector.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n    /// let result = vec.map(|value| value * 2);\n    ///\n    /// let expected = BoundedVec::from_array([2, 4, 6, 8]);\n    /// assert_eq(result, expected);\n    /// ```\n    pub fn map<U, Env>(&self, f: fn[Env](T) -> U) -> BoundedVec<U, MaxLen> {\n        let mut ret = BoundedVec::new();\n        ret.len = self.len();\n\n        if is_unconstrained() {\n            for i in 0..self.len() {\n                ret.storage[i] = f(self.get_unchecked(i));\n            }\n        } else {\n            for i in 0..MaxLen {\n                ret.storage[i] = if i < self.len() {\n                    f(self.get_unchecked(i))\n                } else {\n                    crate::mem::zeroed()\n                }\n            }\n        }\n\n        ret\n    }\n\n    /// Creates a new vector of equal size by calling a closure on each element\n    /// in this vector, along with its index.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n    /// let result = vec.mapi(|i, value| i + value * 2);\n    ///\n    /// let expected = BoundedVec::from_array([2, 5, 8, 11]);\n    /// assert_eq(result, expected);\n    /// ```\n    pub fn mapi<U, Env>(&self, f: fn[Env](u32, T) -> U) -> BoundedVec<U, MaxLen> {\n        let mut ret = BoundedVec::new();\n        ret.len = self.len();\n\n        if is_unconstrained() {\n            for i in 0..self.len() {\n                ret.storage[i] = f(i, self.get_unchecked(i));\n            }\n        } else {\n            for i in 0..MaxLen {\n                ret.storage[i] = if i < self.len() {\n                    f(i, self.get_unchecked(i))\n                } else {\n                    crate::mem::zeroed()\n                }\n            }\n        }\n\n        ret\n    }\n\n    /// Calls a closure on each element in this vector.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n    /// let mut result = BoundedVec::<u32, 4>::new();\n    /// vec.for_each(|value| result.push(value * 2));\n    ///\n    /// let expected = BoundedVec::from_array([2, 4, 6, 8]);\n    /// assert_eq(result, expected);\n    /// ```\n    pub fn for_each<Env>(&self, f: fn[Env](T) -> ()) {\n        if is_unconstrained() {\n            for i in 0..self.len() {\n                f(self.get_unchecked(i));\n            }\n        } else {\n            for i in 0..MaxLen {\n                if i < self.len() {\n                    f(self.get_unchecked(i));\n                }\n            }\n        }\n    }\n\n    /// Calls a closure on each element in this vector, along with its index.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n    /// let mut result = BoundedVec::<u32, 4>::new();\n    /// vec.for_eachi(|i, value| result.push(i + value * 2));\n    ///\n    /// let expected = BoundedVec::from_array([2, 5, 8, 11]);\n    /// assert_eq(result, expected);\n    /// ```\n    pub fn for_eachi<Env>(&self, f: fn[Env](u32, T) -> ()) {\n        if is_unconstrained() {\n            for i in 0..self.len() {\n                f(i, self.get_unchecked(i));\n            }\n        } else {\n            for i in 0..MaxLen {\n                if i < self.len() {\n                    f(i, self.get_unchecked(i));\n                }\n            }\n        }\n    }\n\n    /// Creates a new BoundedVec from the given array and length.\n    /// The given length must be less than or equal to the length of the array.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_parts([1, 2, 3, 0], 3);\n    /// assert_eq(vec.len(), 3);\n    /// ```\n    pub fn from_parts(mut array: [T; MaxLen], len: u32) -> Self {\n        assert(len <= MaxLen);\n        BoundedVec { storage: array, len }\n    }\n\n    /// Creates a new BoundedVec from the given array and length.\n    /// The given length must be less than or equal to the length of the array.\n    ///\n    /// This function is unsafe because it expects all elements past the `len` index\n    /// of `array` to be zeroed, but does not check for this internally. Use `from_parts`\n    /// for a safe version of this function which does zero out any indices past the\n    /// given length. Invalidating this assumption can notably cause `BoundedVec::eq`\n    /// to give incorrect results since it will check even elements past `len`.\n    ///\n    /// Example:\n    ///\n    /// ```noir\n    /// let vec: BoundedVec<u32, 4> = BoundedVec::from_parts_unchecked([1, 2, 3, 0], 3);\n    /// assert_eq(vec.len(), 3);\n    ///\n    /// // invalid use!\n    /// let vec1: BoundedVec<u32, 4> = BoundedVec::from_parts_unchecked([1, 2, 3, 1], 3);\n    /// let vec2: BoundedVec<u32, 4> = BoundedVec::from_parts_unchecked([1, 2, 3, 2], 3);\n    ///\n    /// // both vecs have length 3 so we'd expect them to be equal, but this\n    /// // fails because elements past the length are still checked in eq\n    /// assert_eq(vec1, vec2); // fails\n    /// ```\n    #[deprecated(\"`BoundedVec::from_parts` no longer requires an extra loop, `BoundedVec::from_parts_unchecked` is no longer required\")]\n    pub fn from_parts_unchecked(array: [T; MaxLen], len: u32) -> Self {\n        assert(len <= MaxLen);\n        BoundedVec { storage: array, len }\n    }\n}\n\nimpl<T, let MaxLen: u32> Eq for BoundedVec<T, MaxLen>\nwhere\n    T: Eq,\n{\n    fn eq(self, other: BoundedVec<T, MaxLen>) -> bool {\n        if self.len == other.len {\n            if is_unconstrained() {\n                // safety: we are already in an unconstrained context\n                unsafe {\n                    unconstrained_eq(self, other)\n                }\n            } else {\n                let mut eq = true;\n                for i in 0..MaxLen {\n                    if i < self.len {\n                        eq &= self.storage[i] == other.storage[i];\n                    }\n                }\n                eq\n            }\n        } else {\n            false\n        }\n    }\n}\n\n/// Returns true if both BoundedVecs are equal.\n/// Note: This assumes the lengths of both Vecs are already equal!\n/// This function is broken out of `impl Eq for BoundedVec` to make use of `break` in unconstrained code.\nunconstrained fn unconstrained_eq<T, let MaxLen: u32>(\n    a: BoundedVec<T, MaxLen>,\n    b: BoundedVec<T, MaxLen>,\n) -> bool\nwhere\n    T: Eq,\n{\n    let mut eq = true;\n    for i in 0..a.len {\n        if a.storage[i] != b.storage[i] {\n            eq = false;\n            break;\n        }\n    }\n    eq\n}\n\nimpl<T, let MaxLen: u32, let Len: u32> From<[T; Len]> for BoundedVec<T, MaxLen> {\n    fn from(array: [T; Len]) -> BoundedVec<T, MaxLen> {\n        BoundedVec::from_array(array)\n    }\n}\n\nmod bounded_vec_tests {\n\n    mod get {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test(should_fail_with = \"Attempted to read past end of BoundedVec\")]\n        fn panics_when_reading_elements_past_end_of_vec() {\n            let vec: BoundedVec<Field, 5> = BoundedVec::new();\n\n            let _ = vec.get(0);\n        }\n\n        #[test(should_fail_with = \"Attempted to read past end of BoundedVec\")]\n        fn panics_when_reading_beyond_length() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3]);\n            let _ = vec.get(3);\n        }\n\n        #[test]\n        fn get_works_within_bounds() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3, 4, 5]);\n            assert_eq(vec.get(0), 1);\n            assert_eq(vec.get(2), 3);\n            assert_eq(vec.get(4), 5);\n        }\n\n        #[test]\n        fn get_unchecked_works() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3]);\n            assert_eq(vec.get_unchecked(0), 1);\n            assert_eq(vec.get_unchecked(2), 3);\n        }\n\n        #[test]\n        fn get_unchecked_works_past_len() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3]);\n            assert_eq(vec.get_unchecked(4), 0);\n        }\n    }\n\n    mod set {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test]\n        fn set_updates_values_properly() {\n            let mut vec = BoundedVec::from_array([0, 0, 0, 0, 0]);\n\n            vec.set(0, 42);\n            assert_eq(vec.storage, [42, 0, 0, 0, 0]);\n\n            vec.set(1, 43);\n            assert_eq(vec.storage, [42, 43, 0, 0, 0]);\n\n            vec.set(2, 44);\n            assert_eq(vec.storage, [42, 43, 44, 0, 0]);\n\n            vec.set(1, 10);\n            assert_eq(vec.storage, [42, 10, 44, 0, 0]);\n\n            vec.set(0, 0);\n            assert_eq(vec.storage, [0, 10, 44, 0, 0]);\n        }\n\n        #[test(should_fail_with = \"Attempted to write past end of BoundedVec\")]\n        fn panics_when_writing_elements_past_end_of_vec() {\n            let mut vec: BoundedVec<Field, 5> = BoundedVec::new();\n            vec.set(0, 42);\n        }\n\n        #[test(should_fail_with = \"Attempted to write past end of BoundedVec\")]\n        fn panics_when_setting_beyond_length() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3]);\n            vec.set(3, 4);\n        }\n\n        #[test]\n        fn set_unchecked_operations() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            vec.push(1);\n            vec.push(2);\n\n            vec.set_unchecked(0, 10);\n            assert_eq(vec.get(0), 10);\n        }\n\n        #[test(should_fail_with = \"Attempted to read past end of BoundedVec\")]\n        fn set_unchecked_operations_past_len() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            vec.push(1);\n            vec.push(2);\n\n            vec.set_unchecked(3, 40);\n            assert_eq(vec.get(3), 40);\n        }\n\n        #[test]\n        fn set_preserves_other_elements() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3, 4, 5]);\n\n            vec.set(2, 30);\n            assert_eq(vec.get(0), 1);\n            assert_eq(vec.get(1), 2);\n            assert_eq(vec.get(2), 30);\n            assert_eq(vec.get(3), 4);\n            assert_eq(vec.get(4), 5);\n        }\n    }\n\n    mod any {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        #[test]\n        #[test_unconstrained]\n        fn returns_false_if_predicate_not_satisfied() {\n            let vec: BoundedVec<bool, 4> = BoundedVec::from_array([false, false, false, false]);\n            let result = vec.any(|value| value);\n\n            assert(!result);\n        }\n\n        #[test]\n        #[test_unconstrained]\n        fn returns_true_if_predicate_satisfied() {\n            let vec: BoundedVec<bool, 4> = BoundedVec::from_array([false, false, true, true]);\n            let result = vec.any(|value| value);\n\n            assert(result);\n        }\n\n        #[test]\n        fn returns_false_on_empty_boundedvec() {\n            let vec: BoundedVec<bool, 0> = BoundedVec::new();\n            let result = vec.any(|value| value);\n\n            assert(!result);\n        }\n\n        #[test]\n        #[test_unconstrained]\n        fn any_with_complex_predicates() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3, 4, 5]);\n\n            assert(vec.any(|x| x > 3));\n            assert(!vec.any(|x| x > 10));\n            assert(vec.any(|x| x % 2 == 0)); // has a even number\n            assert(vec.any(|x| x == 3)); // has a specific value\n        }\n\n        #[test]\n        fn any_with_partial_vector() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            vec.push(1);\n            vec.push(2);\n\n            assert(vec.any(|x| x == 1));\n            assert(vec.any(|x| x == 2));\n            assert(!vec.any(|x| x == 3));\n        }\n    }\n\n    mod map {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        #[test]\n        #[test_unconstrained]\n        fn applies_function_correctly() {\n            // docs:start:bounded-vec-map-example\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = vec.map(|value| value * 2);\n            // docs:end:bounded-vec-map-example\n            let expected = BoundedVec::from_array([2, 4, 6, 8]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn applies_function_that_changes_return_type() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = vec.map(|value| (value * 2) as Field);\n            let expected: BoundedVec<Field, 4> = BoundedVec::from_array([2, 4, 6, 8]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn does_not_apply_function_past_len() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([0, 1]);\n            let result = vec.map(|value| if value == 0 { 5 } else { value });\n            let expected = BoundedVec::from_array([5, 1]);\n\n            assert_eq(result, expected);\n            assert_eq(result.get_unchecked(2), 0);\n        }\n\n        #[test]\n        fn map_with_conditional_logic() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n\n            let result = vec.map(|x| if x % 2 == 0 { x * 2 } else { x });\n            let expected = BoundedVec::from_array([1, 4, 3, 8]);\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn map_preserves_length() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = vec.map(|x| x * 2);\n\n            assert_eq(result.len(), vec.len());\n            assert_eq(result.max_len(), vec.max_len());\n        }\n\n        #[test]\n        fn map_on_empty_vector() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::new();\n            let result = vec.map(|x| x * 2);\n            assert_eq(result, vec);\n            assert_eq(result.len(), 0);\n            assert_eq(result.max_len(), 5);\n        }\n    }\n\n    mod mapi {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        #[test]\n        #[test_unconstrained]\n        fn applies_function_correctly() {\n            // docs:start:bounded-vec-mapi-example\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = vec.mapi(|i, value| i + value * 2);\n            // docs:end:bounded-vec-mapi-example\n            let expected = BoundedVec::from_array([2, 5, 8, 11]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn applies_function_that_changes_return_type() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = vec.mapi(|i, value| (i + value * 2) as Field);\n            let expected: BoundedVec<Field, 4> = BoundedVec::from_array([2, 5, 8, 11]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn does_not_apply_function_past_len() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([0, 1]);\n            let result = vec.mapi(|_, value| if value == 0 { 5 } else { value });\n            let expected = BoundedVec::from_array([5, 1]);\n\n            assert_eq(result, expected);\n            assert_eq(result.get_unchecked(2), 0);\n        }\n\n        #[test]\n        fn mapi_with_index_branching_logic() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n\n            let result = vec.mapi(|i, x| if i % 2 == 0 { x * 2 } else { x });\n            let expected = BoundedVec::from_array([2, 2, 6, 4]);\n            assert_eq(result, expected);\n        }\n    }\n\n    mod for_each {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        // map in terms of for_each\n        fn for_each_map<T, U, Env, let MaxLen: u32>(\n            input: BoundedVec<T, MaxLen>,\n            f: fn[Env](T) -> U,\n        ) -> BoundedVec<U, MaxLen> {\n            let mut output = BoundedVec::<U, MaxLen>::new();\n            let output_ref = &mut output;\n            input.for_each(|x| output_ref.push(f(x)));\n            output\n        }\n\n        #[test]\n        #[test_unconstrained]\n        fn smoke_test() {\n            let mut acc = 0;\n            let acc_ref = &mut acc;\n            // docs:start:bounded-vec-for-each-example\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([1, 2, 3]);\n            vec.for_each(|value| { *acc_ref += value; });\n            // docs:end:bounded-vec-for-each-example\n            assert_eq(acc, 6);\n        }\n\n        #[test]\n        fn applies_function_correctly() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = for_each_map(vec, |value| value * 2);\n            let expected = BoundedVec::from_array([2, 4, 6, 8]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn applies_function_that_changes_return_type() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = for_each_map(vec, |value| (value * 2) as Field);\n            let expected: BoundedVec<Field, 4> = BoundedVec::from_array([2, 4, 6, 8]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn does_not_apply_function_past_len() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([0, 1]);\n            let result = for_each_map(vec, |value| if value == 0 { 5 } else { value });\n            let expected = BoundedVec::from_array([5, 1]);\n\n            assert_eq(result, expected);\n            assert_eq(result.get_unchecked(2), 0);\n        }\n\n        #[test]\n        fn for_each_on_empty_vector() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::new();\n            let mut count = 0;\n            let count_ref = &mut count;\n            vec.for_each(|_| { *count_ref += 1; });\n            assert_eq(count, 0);\n        }\n\n        #[test]\n        fn for_each_with_side_effects() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([1, 2, 3]);\n            let mut seen = BoundedVec::<u32, 3>::new();\n            let seen_ref = &mut seen;\n            vec.for_each(|x| seen_ref.push(x));\n            assert_eq(seen, vec);\n        }\n    }\n\n    mod for_eachi {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        // mapi in terms of for_eachi\n        fn for_eachi_mapi<T, U, Env, let MaxLen: u32>(\n            input: BoundedVec<T, MaxLen>,\n            f: fn[Env](u32, T) -> U,\n        ) -> BoundedVec<U, MaxLen> {\n            let mut output = BoundedVec::<U, MaxLen>::new();\n            let output_ref = &mut output;\n            input.for_eachi(|i, x| output_ref.push(f(i, x)));\n            output\n        }\n\n        #[test]\n        #[test_unconstrained]\n        fn smoke_test() {\n            let mut acc = 0;\n            let acc_ref = &mut acc;\n            // docs:start:bounded-vec-for-eachi-example\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([1, 2, 3]);\n            vec.for_eachi(|i, value| { *acc_ref += i * value; });\n            // docs:end:bounded-vec-for-eachi-example\n\n            // 0 * 1 + 1 * 2 + 2 * 3\n            assert_eq(acc, 8);\n        }\n\n        #[test]\n        fn applies_function_correctly() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = for_eachi_mapi(vec, |i, value| i + value * 2);\n            let expected = BoundedVec::from_array([2, 5, 8, 11]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn applies_function_that_changes_return_type() {\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_array([1, 2, 3, 4]);\n            let result = for_eachi_mapi(vec, |i, value| (i + value * 2) as Field);\n            let expected: BoundedVec<Field, 4> = BoundedVec::from_array([2, 5, 8, 11]);\n\n            assert_eq(result, expected);\n        }\n\n        #[test]\n        fn does_not_apply_function_past_len() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([0, 1]);\n            let result = for_eachi_mapi(vec, |_, value| if value == 0 { 5 } else { value });\n            let expected = BoundedVec::from_array([5, 1]);\n\n            assert_eq(result, expected);\n            assert_eq(result.get_unchecked(2), 0);\n        }\n\n        #[test]\n        fn for_eachi_on_empty_vector() {\n            let vec: BoundedVec<u32, 5> = BoundedVec::new();\n            let mut count = 0;\n            let count_ref = &mut count;\n            vec.for_eachi(|_, _| { *count_ref += 1; });\n            assert_eq(count, 0);\n        }\n\n        #[test]\n        fn for_eachi_with_index_tracking() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([10, 20, 30]);\n            let mut indices = BoundedVec::<u32, 3>::new();\n            let indices_ref = &mut indices;\n            vec.for_eachi(|i, _| indices_ref.push(i));\n\n            let expected = BoundedVec::from_array([0, 1, 2]);\n            assert_eq(indices, expected);\n        }\n\n    }\n\n    mod from_array {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test]\n        fn empty() {\n            let empty_array: [Field; 0] = [];\n            let bounded_vec = BoundedVec::from_array([]);\n\n            assert_eq(bounded_vec.max_len(), 0);\n            assert_eq(bounded_vec.len(), 0);\n            assert_eq(bounded_vec.storage(), empty_array);\n        }\n\n        #[test]\n        fn equal_len() {\n            let array = [1, 2, 3];\n            let bounded_vec = BoundedVec::from_array(array);\n\n            assert_eq(bounded_vec.max_len(), 3);\n            assert_eq(bounded_vec.len(), 3);\n            assert_eq(bounded_vec.storage(), array);\n        }\n\n        #[test]\n        fn max_len_greater_then_array_len() {\n            let array = [1, 2, 3];\n            let bounded_vec: BoundedVec<Field, 10> = BoundedVec::from_array(array);\n\n            assert_eq(bounded_vec.max_len(), 10);\n            assert_eq(bounded_vec.len(), 3);\n            assert_eq(bounded_vec.get(0), 1);\n            assert_eq(bounded_vec.get(1), 2);\n            assert_eq(bounded_vec.get(2), 3);\n        }\n\n        #[test(should_fail_with = \"from array out of bounds\")]\n        fn max_len_lower_then_array_len() {\n            let _: BoundedVec<Field, 2> = BoundedVec::from_array([0; 3]);\n        }\n\n        #[test]\n        fn from_array_preserves_order() {\n            let array = [5, 3, 1, 4, 2];\n            let vec: BoundedVec<u32, 5> = BoundedVec::from_array(array);\n            for i in 0..array.len() {\n                assert_eq(vec.get(i), array[i]);\n            }\n        }\n\n        #[test]\n        fn from_array_with_different_types() {\n            let bool_array = [true, false, true];\n            let bool_vec: BoundedVec<bool, 3> = BoundedVec::from_array(bool_array);\n            assert_eq(bool_vec.len(), 3);\n            assert_eq(bool_vec.get(0), true);\n            assert_eq(bool_vec.get(1), false);\n        }\n    }\n\n    mod trait_from {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::convert::From;\n\n        #[test]\n        fn simple() {\n            let array = [1, 2];\n            let bounded_vec: BoundedVec<Field, 10> = BoundedVec::from(array);\n\n            assert_eq(bounded_vec.max_len(), 10);\n            assert_eq(bounded_vec.len(), 2);\n            assert_eq(bounded_vec.get(0), 1);\n            assert_eq(bounded_vec.get(1), 2);\n        }\n    }\n\n    mod trait_eq {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test]\n        fn empty_equality() {\n            let bounded_vec1: BoundedVec<Field, 3> = BoundedVec::new();\n            let bounded_vec2: BoundedVec<Field, 3> = BoundedVec::new();\n\n            assert_eq(bounded_vec1, bounded_vec2);\n        }\n\n        #[test]\n        fn equality() {\n            let mut bounded_vec1: BoundedVec<Field, 3> = BoundedVec::new();\n            let mut bounded_vec2: BoundedVec<Field, 3> = BoundedVec::new();\n\n            bounded_vec1.push(1);\n            bounded_vec2.push(1);\n            assert(bounded_vec1 == bounded_vec2);\n        }\n\n        #[test]\n        fn inequality() {\n            let mut bounded_vec1: BoundedVec<Field, 3> = BoundedVec::new();\n            let mut bounded_vec2: BoundedVec<Field, 3> = BoundedVec::new();\n\n            bounded_vec1.push(1);\n            assert(bounded_vec1 != bounded_vec2);\n\n            bounded_vec2.push(2);\n            assert(bounded_vec1 != bounded_vec2);\n        }\n    }\n\n    mod from_parts {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        #[test]\n        #[test_unconstrained]\n        fn from_parts() {\n            // docs:start:from-parts\n            let vec: BoundedVec<u32, 4> = BoundedVec::from_parts([1, 2, 3, 0], 3);\n            assert_eq(vec.len(), 3);\n\n            // Any elements past the given length are ignored, so these\n            // two BoundedVecs will be completely equal\n            let vec1: BoundedVec<u32, 4> = BoundedVec::from_parts([1, 2, 3, 1], 3);\n            let vec2: BoundedVec<u32, 4> = BoundedVec::from_parts([1, 2, 3, 2], 3);\n            assert_eq(vec1, vec2);\n            // docs:end:from-parts\n        }\n    }\n\n    mod push_pop {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test]\n        fn push_and_pop_operations() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n\n            assert_eq(vec.len(), 0);\n\n            vec.push(1);\n            assert_eq(vec.len(), 1);\n            assert_eq(vec.get(0), 1);\n\n            vec.push(2);\n            assert_eq(vec.len(), 2);\n            assert_eq(vec.get(1), 2);\n\n            let popped = vec.pop();\n            assert_eq(popped, 2);\n            assert_eq(vec.len(), 1);\n\n            let popped2 = vec.pop();\n            assert_eq(popped2, 1);\n            assert_eq(vec.len(), 0);\n        }\n\n        #[test(should_fail_with = \"push out of bounds\")]\n        fn push_to_full_vector() {\n            let mut vec: BoundedVec<u32, 2> = BoundedVec::new();\n            vec.push(1);\n            vec.push(2);\n            vec.push(3); // should panic\n        }\n\n        #[test(should_fail_with = \"cannot pop from an empty vector\")]\n        fn pop_from_empty_vector() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            let _ = vec.pop(); // should panic\n        }\n\n        #[test]\n        fn push_pop_cycle() {\n            let mut vec: BoundedVec<u32, 3> = BoundedVec::new();\n\n            // push to full\n            vec.push(1);\n            vec.push(2);\n            vec.push(3);\n            assert_eq(vec.len(), 3);\n\n            // pop all\n            assert_eq(vec.pop(), 3);\n            assert_eq(vec.pop(), 2);\n            assert_eq(vec.pop(), 1);\n            assert_eq(vec.len(), 0);\n\n            // push again\n            vec.push(4);\n            assert_eq(vec.len(), 1);\n            assert_eq(vec.get(0), 4);\n        }\n    }\n\n    mod extend {\n        use crate::collections::bounded_vec::BoundedVec;\n        use crate::internal::test_unconstrained;\n\n        #[test]\n        fn extend_from_array() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            vec.push(1);\n            vec.extend_from_array([2, 3]);\n\n            assert_eq(vec.len(), 3);\n            assert_eq(vec.get(0), 1);\n            assert_eq(vec.get(1), 2);\n            assert_eq(vec.get(2), 3);\n        }\n\n        #[test]\n        fn extend_from_vector() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            vec.push(1);\n            vec.extend_from_vector([2, 3].as_vector());\n\n            assert_eq(vec.len(), 3);\n            assert_eq(vec.get(0), 1);\n            assert_eq(vec.get(1), 2);\n            assert_eq(vec.get(2), 3);\n        }\n\n        #[test]\n        #[test_unconstrained]\n        fn extend_from_bounded_vec() {\n            // The source deliberately has a higher capacity,\n            // to make sure we are not trying to assign out-of-bounds.\n            let mut vec1: BoundedVec<u32, 5> = BoundedVec::new();\n            let mut vec2: BoundedVec<u32, 9> = BoundedVec::new();\n\n            vec1.push(1);\n            vec2.push(2);\n            vec2.push(3);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 3);\n            assert_eq(vec1.get(0), 1);\n            assert_eq(vec1.get(1), 2);\n            assert_eq(vec1.get(2), 3);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_limit() {\n            // Capacity and contents chosen so the last item must be assigned to.\n            let mut vec1: BoundedVec<u32, 2> = BoundedVec::new();\n            let mut vec2: BoundedVec<u32, 5> = BoundedVec::new();\n\n            vec1.push(1);\n            vec2.push(2);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 2);\n            assert_eq(vec1.get(0), 1);\n            assert_eq(vec1.get(1), 2);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_full_and_empty() {\n            // Capacity and contents chosen so the last item must be assigned to.\n            let mut vec1: BoundedVec<u32, 2> = BoundedVec::new();\n            let vec2: BoundedVec<u32, 5> = BoundedVec::new();\n\n            vec1.push(1);\n            vec1.push(2);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 2);\n            assert_eq(vec1.get(0), 1);\n            assert_eq(vec1.get(1), 2);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_zero_len() {\n            let mut vec1: BoundedVec<u32, 0> = BoundedVec::new();\n            let vec2: BoundedVec<u32, 0> = BoundedVec::new();\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 0);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_last_zeroed() {\n            let mut vec1: BoundedVec<u32, 4> = BoundedVec::new();\n            let mut vec2: BoundedVec<u32, 4> = BoundedVec::new();\n\n            vec1.push(1);\n            vec1.push(2);\n            vec2.push(3);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 3);\n            assert_eq(vec1.get_unchecked(3), 0);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_empty_self() {\n            // self.len == 0 with Len > MaxLen: the loop doesn't reach\n            // the last storage slot, so the fixup must write it.\n            let mut vec1: BoundedVec<u32, 3> = BoundedVec::new();\n            let vec2: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3]);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 3);\n            assert_eq(vec1.get(0), 1);\n            assert_eq(vec1.get(1), 2);\n            assert_eq(vec1.get(2), 3);\n        }\n\n        #[test]\n        fn extend_from_bounded_vec_equal_capacity() {\n            // Len == MaxLen, fills to capacity.\n            let mut vec1: BoundedVec<u32, 4> = BoundedVec::new();\n            vec1.push(1);\n            let vec2: BoundedVec<u32, 4> = BoundedVec::from_array([2, 3, 4]);\n\n            vec1.extend_from_bounded_vec(vec2);\n\n            assert_eq(vec1.len(), 4);\n            assert_eq(vec1.get(0), 1);\n            assert_eq(vec1.get(1), 2);\n            assert_eq(vec1.get(2), 3);\n            assert_eq(vec1.get(3), 4);\n        }\n\n        #[test(should_fail_with = \"extend_from_array out of bounds\")]\n        fn extend_array_beyond_max_len() {\n            let mut vec: BoundedVec<u32, 3> = BoundedVec::new();\n            vec.push(1);\n            vec.extend_from_array([2, 3, 4]); // should panic\n        }\n\n        #[test(should_fail_with = \"extend_from_vector out of bounds\")]\n        fn extend_vector_beyond_max_len() {\n            let mut vec: BoundedVec<u32, 3> = BoundedVec::new();\n            vec.push(1);\n            vec.extend_from_vector([2, 3, 4].as_vector()); // S]should panic\n        }\n\n        #[test(should_fail_with = \"extend_from_bounded_vec out of bounds\")]\n        fn extend_bounded_vec_beyond_max_len() {\n            let mut vec: BoundedVec<u32, 3> = BoundedVec::new();\n            let other: BoundedVec<u32, 5> = BoundedVec::from_array([1, 2, 3, 4, 5]);\n            vec.extend_from_bounded_vec(other); // should panic\n        }\n\n        #[test]\n        fn extend_with_empty_collections() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n            let original_len = vec.len();\n\n            vec.extend_from_array([]);\n            assert_eq(vec.len(), original_len);\n\n            vec.extend_from_vector([].as_vector());\n            assert_eq(vec.len(), original_len);\n\n            let empty: BoundedVec<u32, 3> = BoundedVec::new();\n            vec.extend_from_bounded_vec(empty);\n            assert_eq(vec.len(), original_len);\n        }\n    }\n\n    mod storage {\n        use crate::collections::bounded_vec::BoundedVec;\n\n        #[test]\n        fn storage_consistency() {\n            let mut vec: BoundedVec<u32, 5> = BoundedVec::new();\n\n            // test initial storage state\n            assert_eq(vec.storage(), [0, 0, 0, 0, 0]);\n\n            vec.push(1);\n            vec.push(2);\n\n            // test storage after modifications\n            assert_eq(vec.storage(), [1, 2, 0, 0, 0]);\n\n            // storage doesn't change length\n            assert_eq(vec.len(), 2);\n            assert_eq(vec.max_len(), 5);\n        }\n\n        #[test]\n        fn storage_after_pop() {\n            let mut vec: BoundedVec<u32, 3> = BoundedVec::from_array([1, 2, 3]);\n\n            let _ = vec.pop();\n            // after pop, the last element should be unmodified\n            assert_eq(vec.storage(), [1, 2, 3]);\n            assert_eq(vec.len(), 2);\n        }\n\n        #[test]\n        fn vector_immutable() {\n            let vec: BoundedVec<u32, 3> = BoundedVec::from_array([1, 2, 3]);\n            let storage = vec.storage();\n\n            assert_eq(storage, [1, 2, 3]);\n\n            // Verify that the original vector is unchanged\n            assert_eq(vec.len(), 3);\n            assert_eq(vec.get(0), 1);\n            assert_eq(vec.get(1), 2);\n            assert_eq(vec.get(2), 3);\n        }\n    }\n}\n"
    },
    "61": {
      "function_locations": [
        {
          "name": "PrivateCall<M, N, T>::new",
          "start": 1239
        },
        {
          "name": "PrivateCall<M, N, T>::call",
          "start": 1735
        },
        {
          "name": "PrivateStaticCall<M, N, T>::new",
          "start": 2771
        },
        {
          "name": "PrivateStaticCall<M, N, T>::view",
          "start": 3229
        },
        {
          "name": "PublicCall<M, N, T>::new",
          "start": 4097
        },
        {
          "name": "PublicCall<M, N, T>::with_gas",
          "start": 4281
        },
        {
          "name": "PublicCall<M, N, T>::call",
          "start": 4645
        },
        {
          "name": "PublicCall<M, N, T>::enqueue",
          "start": 5275
        },
        {
          "name": "PublicCall<M, N, T>::enqueue_incognito",
          "start": 5616
        },
        {
          "name": "PublicCall<M, N, T>::enqueue_impl",
          "start": 5774
        },
        {
          "name": "PublicCall<M, N, T>::set_as_teardown",
          "start": 6454
        },
        {
          "name": "PublicCall<M, N, T>::set_as_teardown_incognito",
          "start": 6843
        },
        {
          "name": "PublicCall<M, N, T>::set_as_teardown_impl",
          "start": 6989
        },
        {
          "name": "PublicStaticCall<M, N, T>::new",
          "start": 8039
        },
        {
          "name": "PublicStaticCall<M, N, T>::with_gas",
          "start": 8223
        },
        {
          "name": "PublicStaticCall<M, N, T>::view",
          "start": 8600
        },
        {
          "name": "PublicStaticCall<M, N, T>::enqueue_view",
          "start": 9090
        },
        {
          "name": "PublicStaticCall<M, N, T>::enqueue_view_incognito",
          "start": 9824
        },
        {
          "name": "UtilityCall<M, N, T>::new",
          "start": 10782
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/calls.nr",
      "source": "use crate::protocol::{abis::function_selector::FunctionSelector, address::AztecAddress, traits::{Deserialize, ToField}};\n\nuse crate::context::{gas::GasOpts, PrivateContext, PublicContext};\nuse crate::hash::{hash_args, hash_calldata_array};\nuse crate::oracle::execution_cache;\n\n// Having T associated on the structs and then instantiating it with `std::mem::zeroed()` is ugly but we need to do it\n// like this to avoid forcing users to specify the return type when calling functions on the structs (that's the only\n// way how we can specify the type when we generate the call stubs. The return types are specified in the\n// `external_functions_stubs.nr` file.)\n\n// PrivateCall\n\n#[must_use = \"Your private call needs to be passed into the `self.call(...)` method to be executed (e.g. `self.call(MyContract::at(address).my_private_function(...args))`\"]\npub struct PrivateCall<let M: u32, let N: u32, T> {\n    pub target_contract: AztecAddress,\n    pub selector: FunctionSelector,\n    pub name: str<M>,\n    args_hash: Field,\n    pub args: [Field; N],\n    return_type: T,\n}\n\nimpl<let M: u32, let N: u32, T> PrivateCall<M, N, T> {\n    pub fn new(target_contract: AztecAddress, selector: FunctionSelector, name: str<M>, args: [Field; N]) -> Self {\n        let args_hash = hash_args(args);\n        Self { target_contract, selector, name, args_hash, args, return_type: std::mem::zeroed() }\n    }\n}\n\nimpl<let M: u32, let N: u32, T> PrivateCall<M, N, T>\nwhere\n    T: Deserialize,\n{\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.call(MyContract::at(address).my_private_function(...args))` instead of\n    /// manually constructing and calling `PrivateCall`.\n    pub fn call(self, context: &mut PrivateContext) -> T {\n        execution_cache::store(self.args, self.args_hash);\n        let returns_hash =\n            context.call_private_function_with_args_hash(self.target_contract, self.selector, self.args_hash, false);\n\n        // If T is () (i.e. if the function does not return anything) then `get_preimage` will constrain that the\n        // returns hash is empty as per the protocol rules.\n        returns_hash.get_preimage()\n    }\n}\n\n// PrivateStaticCall\n\n#[must_use = \"Your private static call needs to be passed into the `self.view(...)` method to be executed (e.g. `self.view(MyContract::at(address).my_private_static_function(...args))`\"]\npub struct PrivateStaticCall<let M: u32, let N: u32, T> {\n    pub target_contract: AztecAddress,\n    pub selector: FunctionSelector,\n    pub name: str<M>,\n    args_hash: Field,\n    pub args: [Field; N],\n    return_type: T,\n}\n\nimpl<let M: u32, let N: u32, T> PrivateStaticCall<M, N, T> {\n    pub fn new(target_contract: AztecAddress, selector: FunctionSelector, name: str<M>, args: [Field; N]) -> Self {\n        let args_hash = hash_args(args);\n        Self { target_contract, selector, name, args_hash, args, return_type: std::mem::zeroed() }\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.view(MyContract::at(address).my_private_static_function(...args))`\n    /// instead of manually constructing and calling `PrivateCall`.\n    pub fn view(self, context: &mut PrivateContext) -> T\n    where\n        T: Deserialize,\n    {\n        execution_cache::store(self.args, self.args_hash);\n        let returns =\n            context.call_private_function_with_args_hash(self.target_contract, self.selector, self.args_hash, true);\n        returns.get_preimage()\n    }\n}\n\n// PublicCall\n\n#[must_use = \"Your public call needs to be passed into the `self.call(...)`, `self.enqueue(...)` or `self.enqueue_incognito(...)` method to be executed (e.g. `self.call(MyContract::at(address).my_public_function(...args))`\"]\npub struct PublicCall<let M: u32, let N: u32, T> {\n    pub target_contract: AztecAddress,\n    pub selector: FunctionSelector,\n    pub name: str<M>,\n    pub args: [Field; N],\n    gas_opts: GasOpts,\n    return_type: T,\n}\n\nimpl<let M: u32, let N: u32, T> PublicCall<M, N, T> {\n    pub fn new(target_contract: AztecAddress, selector: FunctionSelector, name: str<M>, args: [Field; N]) -> Self {\n        Self { target_contract, selector, name, args, gas_opts: GasOpts::default(), return_type: std::mem::zeroed() }\n    }\n\n    pub fn with_gas(mut self, gas_opts: GasOpts) -> Self {\n        self.gas_opts = gas_opts;\n        self\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.call(MyContract::at(address).my_public_function(...args))` instead of\n    /// manually constructing and calling `PublicCall`.\n    pub unconstrained fn call(self, context: PublicContext) -> T\n    where\n        T: Deserialize,\n    {\n        let returns = context.call_public_function(self.target_contract, self.selector, self.args, self.gas_opts);\n        // If T is () (i.e. if the function does not return anything) then `as_array` will constrain that `returns` has\n        // a length of 0 (since that is ()'s deserialization length).\n        Deserialize::deserialize(returns.as_array())\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.enqueue(MyContract::at(address).my_public_function(...args))` instead of\n    /// manually constructing and calling `PublicCall`.\n    pub fn enqueue(self, context: &mut PrivateContext) {\n        self.enqueue_impl(context, false, false)\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.enqueue_incognito(MyContract::at(address).my_public_function(...args))`\n    /// instead of manually constructing and calling `PublicCall`.\n    pub fn enqueue_incognito(self, context: &mut PrivateContext) {\n        self.enqueue_impl(context, false, true)\n    }\n\n    fn enqueue_impl(self, context: &mut PrivateContext, is_static_call: bool, hide_msg_sender: bool) {\n        let calldata = [self.selector.to_field()].concat(self.args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        context.call_public_function_with_calldata_hash(\n            self.target_contract,\n            calldata_hash,\n            is_static_call,\n            hide_msg_sender,\n        )\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.set_as_teardown(MyContract::at(address).my_public_function(...args))`\n    /// instead of manually constructing and setting the teardown function `PublicCall`.\n    pub fn set_as_teardown(self, context: &mut PrivateContext) {\n        self.set_as_teardown_impl(context, false);\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API:\n    /// `self.set_as_teardown_incognito(MyContract::at(address).my_public_function(...args))` instead of manually\n    /// constructing and setting the teardown function `PublicCall`.\n    pub fn set_as_teardown_incognito(self, context: &mut PrivateContext) {\n        self.set_as_teardown_impl(context, true);\n    }\n\n    fn set_as_teardown_impl(self, context: &mut PrivateContext, hide_msg_sender: bool) {\n        let calldata = [self.selector.to_field()].concat(self.args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        context.set_public_teardown_function_with_calldata_hash(\n            self.target_contract,\n            calldata_hash,\n            false,\n            hide_msg_sender,\n        )\n    }\n}\n\n// PublicStaticCall\n\n#[must_use = \"Your public static call needs to be passed into the `self.view(...)`, `self.enqueue_view(...)` or `self.enqueue_view_incognito(...)` method to be executed (e.g. `self.view(MyContract::at(address).my_public_static_function(...args))`\"]\npub struct PublicStaticCall<let M: u32, let N: u32, T> {\n    pub target_contract: AztecAddress,\n    pub selector: FunctionSelector,\n    pub name: str<M>,\n    pub args: [Field; N],\n    return_type: T,\n    gas_opts: GasOpts,\n}\n\nimpl<let M: u32, let N: u32, T> PublicStaticCall<M, N, T> {\n    pub fn new(target_contract: AztecAddress, selector: FunctionSelector, name: str<M>, args: [Field; N]) -> Self {\n        Self { target_contract, selector, name, args, return_type: std::mem::zeroed(), gas_opts: GasOpts::default() }\n    }\n\n    pub fn with_gas(mut self, gas_opts: GasOpts) -> Self {\n        self.gas_opts = gas_opts;\n        self\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API: `self.view(MyContract::at(address).my_public_static_function(...args))`\n    /// instead of manually constructing and calling `PublicStaticCall`.\n    pub unconstrained fn view(self, context: PublicContext) -> T\n    where\n        T: Deserialize,\n    {\n        let returns =\n            context.static_call_public_function(self.target_contract, self.selector, self.args, self.gas_opts);\n        Deserialize::deserialize(returns.as_array())\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API:\n    /// `self.enqueue_view(MyContract::at(address).my_public_static_function(...args))` instead of manually\n    /// constructing and calling `PublicStaticCall`.\n    pub fn enqueue_view(self, context: &mut PrivateContext) {\n        let calldata = [self.selector.to_field()].concat(self.args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        context\n            .call_public_function_with_calldata_hash(\n                self.target_contract,\n                calldata_hash,\n                /*static=*/\n                true,\n                false,\n            )\n    }\n\n    /// **DEPRECATED**.\n    ///\n    /// Please use the new contract API:\n    /// `self.enqueue_view_incognito(MyContract::at(address).my_public_static_function(...args))` instead of manually\n    /// constructing and calling `PublicStaticCall`.\n    pub fn enqueue_view_incognito(self, context: &mut PrivateContext) {\n        let calldata = [self.selector.to_field()].concat(self.args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        context\n            .call_public_function_with_calldata_hash(\n                self.target_contract,\n                calldata_hash,\n                /*static=*/\n                true,\n                true,\n            )\n    }\n}\n\n// UtilityCall\n\n#[must_use = \"Your utility call needs to be passed into `self.call(...)` (utility context) or `self.utility.call(...)` (private context) to be executed\"]\npub struct UtilityCall<let M: u32, let N: u32, T> {\n    pub target_contract: AztecAddress,\n    pub selector: FunctionSelector,\n    pub name: str<M>,\n    pub args: [Field; N],\n    return_type: T,\n}\n\nimpl<let M: u32, let N: u32, T> UtilityCall<M, N, T> {\n    pub fn new(target_contract: AztecAddress, selector: FunctionSelector, name: str<M>, args: [Field; N]) -> Self {\n        Self { target_contract, selector, name, args, return_type: std::mem::zeroed() }\n    }\n}\n"
    },
    "66": {
      "function_locations": [
        {
          "name": "NoteExistenceRequest::for_pending",
          "start": 789
        },
        {
          "name": "NoteExistenceRequest::for_settled",
          "start": 1681
        },
        {
          "name": "NoteExistenceRequest::note_hash",
          "start": 1818
        },
        {
          "name": "NoteExistenceRequest::maybe_contract_address",
          "start": 1921
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/note_existence_request.nr",
      "source": "use crate::protocol::address::aztec_address::AztecAddress;\n\n/// A request to assert the existence of a note.\n///\n/// Used by [`crate::context::PrivateContext::assert_note_exists`].\npub struct NoteExistenceRequest {\n    note_hash: Field,\n    maybe_contract_address: Option<AztecAddress>,\n}\n\nimpl NoteExistenceRequest {\n    /// Creates an existence request for a pending note.\n    ///\n    /// Pending notes have not been yet assigned a nonce, and they therefore have no unique note hash. Instead, these\n    /// requests are created using the unsiloed note hash (i.e. from\n    /// [`crate::note::note_interface::NoteHash::compute_note_hash`]) and address of the contract that created the\n    /// note.\n    pub fn for_pending(unsiloed_note_hash: Field, contract_address: AztecAddress) -> Self {\n        // The kernel doesn't take options; it takes a note_hash and an address, and infers whether the request is\n        // siloed based on whether the address is zero or non-zero. When passing the value to the kernel, we use\n        // `maybe_addr.unwrap_or(Address::ZERO)`. Therefore, passing a zero address to `for_pending` is not allowed\n        // since it would be interpreted by the kernel as a settled request.\n        assert(!contract_address.is_zero(), \"Can't read a transient note with a zero contract address\");\n        Self { note_hash: unsiloed_note_hash, maybe_contract_address: Option::some(contract_address) }\n    }\n\n    /// Creates an existence request for a settled note.\n    ///\n    /// Unlike pending notes, settled notes have a nonce, and their existence request is created using the unique note\n    /// hash.\n    pub fn for_settled(unique_note_hash: Field) -> Self {\n        Self { note_hash: unique_note_hash, maybe_contract_address: Option::none() }\n    }\n\n    pub(crate) fn note_hash(self) -> Field {\n        self.note_hash\n    }\n\n    pub(crate) fn maybe_contract_address(self) -> Option<AztecAddress> {\n        self.maybe_contract_address\n    }\n}\n"
    },
    "67": {
      "function_locations": [
        {
          "name": "NullifierExistenceRequest::for_pending",
          "start": 706
        },
        {
          "name": "NullifierExistenceRequest::for_settled",
          "start": 1682
        },
        {
          "name": "NullifierExistenceRequest::nullifier",
          "start": 1819
        },
        {
          "name": "NullifierExistenceRequest::maybe_contract_address",
          "start": 1922
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/nullifier_existence_request.nr",
      "source": "use crate::protocol::address::aztec_address::AztecAddress;\n\n/// A request to assert the existence of a nullifier.\n///\n/// Used by [`crate::context::private_context::PrivateContext::assert_nullifier_exists`].\npub struct NullifierExistenceRequest {\n    nullifier: Field,\n    maybe_contract_address: Option<AztecAddress>,\n}\n\nimpl NullifierExistenceRequest {\n    /// Creates an existence request for a pending nullifier.\n    ///\n    /// Pending nullifiers have not been siloed with the contract address. These requests are created using the\n    /// unsiloed value and address of the contract that emitted the nullifier.\n    pub fn for_pending(unsiloed_nullifier: Field, contract_address: AztecAddress) -> Self {\n        // The kernel doesn't take options; it takes a nullifier and an address, and infers whether the request is\n        // siloed based on whether the address is zero or non-zero. When passing the value to the kernel, we use\n        // `maybe_addr.unwrap_or(Address::ZERO)`. Therefore, passing a zero address to `for_pending` is not allowed\n        // since it would be interpreted by the kernel as a settled request.\n        assert(!contract_address.is_zero(), \"Can't read a pending nullifier with a zero contract address\");\n        Self { nullifier: unsiloed_nullifier, maybe_contract_address: Option::some(contract_address) }\n    }\n\n    /// Creates an existence request for a settled nullifier.\n    ///\n    /// Unlike pending nullifiers, settled nullifiers have been siloed with their contract addresses before adding to\n    /// the nullifier tree, and their existence request is created using the siloed value.\n    pub fn for_settled(siloed_nullifier: Field) -> Self {\n        Self { nullifier: siloed_nullifier, maybe_contract_address: Option::none() }\n    }\n\n    pub(crate) fn nullifier(self) -> Field {\n        self.nullifier\n    }\n\n    pub(crate) fn maybe_contract_address(self) -> Option<AztecAddress> {\n        self.maybe_contract_address\n    }\n}\n"
    },
    "68": {
      "function_locations": [
        {
          "name": "PrivateContext::new",
          "start": 10151
        },
        {
          "name": "PrivateContext::maybe_msg_sender",
          "start": 12335
        },
        {
          "name": "PrivateContext::this_address",
          "start": 13042
        },
        {
          "name": "PrivateContext::chain_id",
          "start": 13547
        },
        {
          "name": "PrivateContext::version",
          "start": 14130
        },
        {
          "name": "PrivateContext::gas_settings",
          "start": 14683
        },
        {
          "name": "PrivateContext::selector",
          "start": 15726
        },
        {
          "name": "PrivateContext::is_static_call",
          "start": 16340
        },
        {
          "name": "PrivateContext::get_args_hash",
          "start": 17059
        },
        {
          "name": "PrivateContext::get_side_effect_counter",
          "start": 17587
        },
        {
          "name": "PrivateContext::push_note_hash",
          "start": 19265
        },
        {
          "name": "PrivateContext::push_nullifier_unsafe",
          "start": 20448
        },
        {
          "name": "PrivateContext::push_nullifier_for_note_hash",
          "start": 22246
        },
        {
          "name": "PrivateContext::get_anchor_block_header",
          "start": 23542
        },
        {
          "name": "PrivateContext::get_block_header_at",
          "start": 25603
        },
        {
          "name": "PrivateContext::set_return_hash",
          "start": 26032
        },
        {
          "name": "PrivateContext::finish",
          "start": 26527
        },
        {
          "name": "PrivateContext::set_as_fee_payer",
          "start": 29204
        },
        {
          "name": "PrivateContext::in_revertible_phase",
          "start": 29394
        },
        {
          "name": "PrivateContext::end_setup",
          "start": 31706
        },
        {
          "name": "PrivateContext::set_expiration_timestamp",
          "start": 34971
        },
        {
          "name": "PrivateContext::assert_note_exists",
          "start": 36366
        },
        {
          "name": "PrivateContext::assert_nullifier_exists",
          "start": 39002
        },
        {
          "name": "PrivateContext::request_nhk_app",
          "start": 41099
        },
        {
          "name": "PrivateContext::request_ovsk_app",
          "start": 42745
        },
        {
          "name": "PrivateContext::request_sk_app",
          "start": 44466
        },
        {
          "name": "PrivateContext::message_portal",
          "start": 47771
        },
        {
          "name": "PrivateContext::consume_l1_to_l2_message",
          "start": 49718
        },
        {
          "name": "PrivateContext::emit_private_log_unsafe",
          "start": 53837
        },
        {
          "name": "PrivateContext::emit_raw_note_log_unsafe",
          "start": 55294
        },
        {
          "name": "PrivateContext::emit_contract_class_log",
          "start": 55902
        },
        {
          "name": "PrivateContext::call_private_function",
          "start": 60461
        },
        {
          "name": "PrivateContext::static_call_private_function",
          "start": 61663
        },
        {
          "name": "PrivateContext::call_private_function_no_args",
          "start": 62678
        },
        {
          "name": "PrivateContext::static_call_private_function_no_args",
          "start": 63531
        },
        {
          "name": "PrivateContext::call_private_function_with_args_hash",
          "start": 64509
        },
        {
          "name": "PrivateContext::call_public_function",
          "start": 68408
        },
        {
          "name": "PrivateContext::static_call_public_function",
          "start": 69675
        },
        {
          "name": "PrivateContext::call_public_function_no_args",
          "start": 70694
        },
        {
          "name": "PrivateContext::static_call_public_function_no_args",
          "start": 71593
        },
        {
          "name": "PrivateContext::call_public_function_with_calldata_hash",
          "start": 72782
        },
        {
          "name": "PrivateContext::set_public_teardown_function",
          "start": 75310
        },
        {
          "name": "PrivateContext::set_public_teardown_function_with_calldata_hash",
          "start": 76581
        },
        {
          "name": "PrivateContext::next_counter",
          "start": 81985
        },
        {
          "name": "<impl Empty for PrivateContext>::empty",
          "start": 82154
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/private_context.nr",
      "source": "use crate::{\n    context::{inputs::PrivateContextInputs, NoteExistenceRequest, NullifierExistenceRequest, ReturnsHash},\n    hash::{hash_args, hash_calldata_array},\n    keys::constants::{NULLIFIER_INDEX, NUM_KEY_TYPES, OUTGOING_INDEX, public_key_domain_separators},\n    messaging::process_l1_to_l2_message,\n    oracle::{\n        block_header::get_block_header_at,\n        call_private_function::call_private_function_internal,\n        execution_cache,\n        key_validation_request::get_key_validation_request,\n        logs::notify_created_contract_class_log,\n        notes::notify_nullified_note,\n        nullifiers::notify_created_nullifier,\n        public_call::assert_valid_public_call_data,\n        tx_phase::{is_execution_in_revertible_phase, notify_revertible_phase_start},\n    },\n};\nuse crate::logging::aztecnr_trace_log_format;\nuse crate::protocol::{\n    abis::{\n        block_header::BlockHeader,\n        call_context::CallContext,\n        function_selector::FunctionSelector,\n        gas_settings::GasSettings,\n        log_hash::LogHash,\n        note_hash::NoteHash,\n        nullifier::Nullifier,\n        private_call_request::PrivateCallRequest,\n        private_circuit_public_inputs::PrivateCircuitPublicInputs,\n        private_log::{PrivateLog, PrivateLogData},\n        public_call_request::PublicCallRequest,\n        validation_requests::{KeyValidationRequest, KeyValidationRequestAndSeparator},\n    },\n    address::{AztecAddress, EthAddress},\n    constants::{\n        CONTRACT_CLASS_LOG_SIZE_IN_FIELDS, MAX_CONTRACT_CLASS_LOGS_PER_CALL, MAX_ENQUEUED_CALLS_PER_CALL,\n        MAX_KEY_VALIDATION_REQUESTS_PER_CALL, MAX_L2_TO_L1_MSGS_PER_CALL, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL,\n        MAX_NOTE_HASHES_PER_CALL, MAX_NULLIFIER_READ_REQUESTS_PER_CALL, MAX_NULLIFIERS_PER_CALL,\n        MAX_PRIVATE_CALL_STACK_LENGTH_PER_CALL, MAX_PRIVATE_LOGS_PER_CALL, MAX_TX_LIFETIME,\n        NULL_MSG_SENDER_CONTRACT_ADDRESS, PRIVATE_LOG_CIPHERTEXT_LEN,\n    },\n    hash::compute_contract_class_log_hash,\n    messaging::l2_to_l1_message::L2ToL1Message,\n    side_effect::{Counted, scoped::Scoped},\n    traits::{Empty, ToField},\n    utils::arrays::{ClaimedLengthArray, trimmed_array_length_hint},\n};\n\n/// # PrivateContext\n///\n/// The **main interface** between an #[external(\"private\")] function and the Aztec blockchain.\n///\n/// An instance of the PrivateContext is initialized automatically at the outset of every private function, within the\n/// #[external(\"private\")] macro, so you'll never need to consciously instantiate this yourself.\n///\n/// The instance is always named `context`, and it is always be available within the body of every\n/// #[external(\"private\")] function in your smart contract.\n///\n/// > For those used to \"vanilla\" Noir, it might be jarring to have access to > `context` without seeing a declaration\n/// `let context = PrivateContext::new(...)` > within the body of your function. This is just a consequence of using >\n/// macros to tidy-up verbose boilerplate. You can use `nargo expand` to > expand all macros, if you dare.\n///\n/// Typical usage for a smart contract developer will be to call getter methods of the PrivateContext.\n///\n/// _Pushing_ data and requests to the context is mostly handled within aztec-nr's own functions, so typically a smart\n/// contract developer won't need to call any setter methods directly.\n///\n/// > Advanced users might occasionally wish to push data to the context > directly for lower-level control. If you\n/// find yourself doing this, please > open an issue on GitHub to describe your use case: it might be that > new\n/// functionality should be added to aztec-nr.\n///\n/// ## Responsibilities\n/// - Exposes contextual data to a private function:\n/// - Data relating to how this private function was called.\n/// - msg_sender\n/// - this_address - (the contract address of the private function being executed)\n/// - See `CallContext` for more data.\n/// - Data relating to the transaction in which this private function is being executed.\n/// - chain_id\n/// - version\n/// - gas_settings\n/// - Provides state access:\n/// - Access to the \"Anchor block\" header. Recall, a private function cannot read from the \"current\" block header, but\n/// must read from some historical block header, because as soon as private function execution begins (asynchronously,\n/// on a user's device), the public state of the chain (the \"current state\") will have progressed forward. We call this\n/// reference the \"Anchor block\". See `BlockHeader`.\n///   - Enables consumption of L1->L2 messages.\n/// - Enables calls to functions of other smart contracts:\n/// - Private function calls\n/// - Enqueueing of public function call requests (Since public functions are executed at a later time, by a block\n/// proposer, we say they are \"enqueued\").\n/// - Writes data to the blockchain:\n/// - New notes\n/// - New nullifiers\n/// - Private logs (for sending encrypted note contents or encrypted events)\n///   - New L2->L1 messages.\n/// - Provides args to the private function (handled by the #[external(\"private\")] macro).\n/// - Returns the return values of this private function (handled by the\n///   #[external(\"private\")] macro).\n/// - Makes Key Validation Requests.\n/// - Private functions are not allowed to see master secret keys, because we do not trust them. They are instead given\n/// \"app-siloed\" secret keys with a claim that they relate to a master public key. They can then request validation of\n/// this claim, by making a \"key validation request\" to the protocol's kernel circuits (which _are_ allowed to see\n/// certain master secret keys).\n///\n/// ## Advanced Responsibilities\n///\n/// - Ultimately, the PrivateContext is responsible for constructing the PrivateCircuitPublicInputs of the private\n/// function being executed. All private functions on Aztec must have public inputs which adhere to the rigid layout of\n/// the PrivateCircuitPublicInputs, in order to be compatible with the protocol's kernel circuits. A well-known\n/// misnomer:\n/// - \"public inputs\" contain both inputs and outputs of this function.\n/// - By \"outputs\" we mean a lot more side-effects than just the \"return values\" of the function.\n/// - Most of the so-called \"public inputs\" are kept _private_, and never leak to the outside world, because they are\n/// 'swallowed' by the protocol's kernel circuits before the tx is sent to the network. Only the following are exposed\n/// to the outside world:\n/// - New note_hashes\n/// - New nullifiers\n/// - New private logs\n///     - New L2->L1 messages\n/// - New enqueued public function call requests All the above-listed arrays of side-effects can be padded by the\n/// user's wallet (through instructions to the kernel circuits, via the PXE) to obscure their true lengths.\n///\n/// ## Syntax Justification\n///\n/// Both user-defined functions _and_ most functions in aztec-nr need access to the PrivateContext instance to\n/// read/write data. This is why you'll see the arguably-ugly pervasiveness of the \"context\" throughout your smart\n/// contract and the aztec-nr library. For example, `&mut context` is prevalent. In some languages, you can access and\n/// mutate a global variable (such as a PrivateContext instance) from a function without polluting the function's\n/// parameters. With Noir, a function must explicitly pass control of a mutable variable to another function, by\n/// reference. Since many functions in aztec-nr need to be able to push new data to the PrivateContext, they need to be\n/// handed a mutable reference _to_ the context as a parameter. For example, `Context` is prevalent as a generic\n/// parameter, to give better type safety at compile time. Many `aztec-nr` functions don't make sense if they're called\n/// in a particular runtime (private, public or utility), and so are intentionally only implemented over certain\n/// [Private|Public|Utility]Context structs. This gives smart contract developers a much faster feedback loop if\n/// they're making a mistake, as an error will be thrown by the LSP or when they compile their contract.\n///\n#[derive(Eq)]\npub struct PrivateContext {\n    // docs:start:private-context\n    inputs: PrivateContextInputs,\n    side_effect_counter: u32,\n\n    min_revertible_side_effect_counter: u32,\n    is_fee_payer: bool,\n\n    args_hash: Field,\n    return_hash: Field,\n\n    pub(crate) expiration_timestamp: u64,\n\n    pub(crate) note_hash_read_requests: BoundedVec<Scoped<Counted<Field>>, MAX_NOTE_HASH_READ_REQUESTS_PER_CALL>,\n    pub(crate) nullifier_read_requests: BoundedVec<Scoped<Counted<Field>>, MAX_NULLIFIER_READ_REQUESTS_PER_CALL>,\n    key_validation_requests_and_separators: BoundedVec<KeyValidationRequestAndSeparator, MAX_KEY_VALIDATION_REQUESTS_PER_CALL>,\n\n    pub(crate) note_hashes: BoundedVec<Counted<NoteHash>, MAX_NOTE_HASHES_PER_CALL>,\n    pub(crate) nullifiers: BoundedVec<Counted<Nullifier>, MAX_NULLIFIERS_PER_CALL>,\n\n    pub(crate) private_call_requests: BoundedVec<PrivateCallRequest, MAX_PRIVATE_CALL_STACK_LENGTH_PER_CALL>,\n    public_call_requests: BoundedVec<Counted<PublicCallRequest>, MAX_ENQUEUED_CALLS_PER_CALL>,\n    public_teardown_call_request: PublicCallRequest,\n    l2_to_l1_msgs: BoundedVec<Counted<L2ToL1Message>, MAX_L2_TO_L1_MSGS_PER_CALL>,\n    // docs:end:private-context\n\n    // Header of a block whose state is used during private execution (not the block the transaction is included in).\n    pub(crate) anchor_block_header: BlockHeader,\n\n    private_logs: BoundedVec<Counted<PrivateLogData>, MAX_PRIVATE_LOGS_PER_CALL>,\n    contract_class_logs_hashes: BoundedVec<Counted<LogHash>, MAX_CONTRACT_CLASS_LOGS_PER_CALL>,\n\n    // Contains the last key validation request for each key type. This is used to cache the last request and avoid\n    // fetching the same request multiple times. The index of the array corresponds to the key type (0 nullifier, 1\n    // incoming, 2 outgoing, 3 tagging).\n    last_key_validation_requests: [Option<KeyValidationRequest>; NUM_KEY_TYPES],\n\n    expected_non_revertible_side_effect_counter: u32,\n    expected_revertible_side_effect_counter: u32,\n}\n\nimpl PrivateContext {\n    pub fn new(inputs: PrivateContextInputs, args_hash: Field) -> PrivateContext {\n        PrivateContext {\n            inputs,\n            side_effect_counter: inputs.start_side_effect_counter + 1,\n            min_revertible_side_effect_counter: 0,\n            is_fee_payer: false,\n            args_hash,\n            return_hash: 0,\n            expiration_timestamp: inputs.anchor_block_header.timestamp() + MAX_TX_LIFETIME,\n            note_hash_read_requests: BoundedVec::new(),\n            nullifier_read_requests: BoundedVec::new(),\n            key_validation_requests_and_separators: BoundedVec::new(),\n            note_hashes: BoundedVec::new(),\n            nullifiers: BoundedVec::new(),\n            anchor_block_header: inputs.anchor_block_header,\n            private_call_requests: BoundedVec::new(),\n            public_call_requests: BoundedVec::new(),\n            public_teardown_call_request: PublicCallRequest::empty(),\n            l2_to_l1_msgs: BoundedVec::new(),\n            private_logs: BoundedVec::new(),\n            contract_class_logs_hashes: BoundedVec::new(),\n            last_key_validation_requests: [Option::none(); NUM_KEY_TYPES],\n            expected_non_revertible_side_effect_counter: 0,\n            expected_revertible_side_effect_counter: 0,\n        }\n    }\n\n    /// Returns the contract address that initiated this function call.\n    ///\n    /// This is similar to `msg.sender` in Solidity (hence the name).\n    ///\n    /// Important Note: Since Aztec doesn't have a concept of an EoA (Externally-owned Account), the msg_sender is\n    /// \"none\" for the first function call of every transaction. The first function call of a tx is likely to be a call\n    /// to the user's account contract, so this quirk will most often be handled by account contract developers.\n    ///\n    /// # Returns\n    /// * `Option<AztecAddress>` - The address of the smart contract that called this function (be it an app contract\n    /// or a user's account contract). Returns `Option<AztecAddress>::none` for the first function call of the tx. No\n    /// other _private_ function calls in the tx will have a `none` msg_sender, but _public_ function calls might (see\n    /// the PublicContext).\n    pub fn maybe_msg_sender(self) -> Option<AztecAddress> {\n        let maybe_msg_sender = self.inputs.call_context.msg_sender;\n        if maybe_msg_sender == NULL_MSG_SENDER_CONTRACT_ADDRESS {\n            Option::none()\n        } else {\n            Option::some(maybe_msg_sender)\n        }\n    }\n\n    /// Returns the contract address of the current function being executed.\n    ///\n    /// This is equivalent to `address(this)` in Solidity (hence the name). Use this to identify the current contract's\n    /// address, commonly needed for access control or when interacting with other contracts.\n    ///\n    /// # Returns\n    /// * `AztecAddress` - The contract address of the current function being executed.\n    ///\n    pub fn this_address(self) -> AztecAddress {\n        self.inputs.call_context.contract_address\n    }\n\n    /// Returns the chain ID of the current network.\n    ///\n    /// This is similar to `block.chainid` in Solidity. Returns the unique identifier for the blockchain network this\n    /// transaction is executing on.\n    ///\n    /// Helps prevent cross-chain replay attacks. Useful if implementing multi-chain contract logic.\n    ///\n    /// # Returns\n    /// * `Field` - The chain ID as a field element\n    ///\n    pub fn chain_id(self) -> Field {\n        self.inputs.tx_context.chain_id\n    }\n\n    /// Returns the Aztec protocol version that this transaction is executing under. Different versions may have\n    /// different rules, opcodes, or cryptographic primitives.\n    ///\n    /// This is similar to how Ethereum has different EVM versions.\n    ///\n    /// Useful for forward/backward compatibility checks\n    ///\n    /// Not to be confused with contract versions; this is the protocol version.\n    ///\n    /// # Returns\n    /// * `Field` - The protocol version as a field element\n    ///\n    pub fn version(self) -> Field {\n        self.inputs.tx_context.version\n    }\n\n    /// Returns the gas settings for the current transaction.\n    ///\n    /// This provides information about gas limits and pricing for the transaction, similar to `tx.gasprice` and gas\n    /// limits in Ethereum. However, Aztec has a more sophisticated gas model with separate accounting for L2\n    /// computation and data availability (DA) costs.\n    ///\n    /// # Returns\n    /// * `GasSettings` - Struct containing gas limits and fee information\n    ///\n    pub fn gas_settings(self) -> GasSettings {\n        self.inputs.tx_context.gas_settings\n    }\n\n    /// Returns the function selector of the currently executing function.\n    ///\n    /// Low-level function: Ordinarily, smart contract developers will not need to access this.\n    ///\n    /// This is similar to `msg.sig` in Solidity, which returns the first 4 bytes of the function signature. In Aztec,\n    /// the selector uniquely identifies which function within the contract is being called.\n    ///\n    /// # Returns\n    /// * `FunctionSelector` - The 4-byte function identifier\n    ///\n    /// # Advanced\n    /// Only #[external(\"private\")] functions have a function selector as a protocol- enshrined concept. The function\n    /// selectors of private functions are baked into the preimage of the contract address, and are used by the\n    /// protocol's kernel circuits to identify each private function and ensure the correct one is being executed.\n    ///\n    /// Used internally for function dispatch and call verification.\n    ///\n    pub fn selector(self) -> FunctionSelector {\n        self.inputs.call_context.function_selector\n    }\n\n    /// Returns whether this call is being executed as part of a static call.\n    ///\n    /// Similar to Solidity's `STATICCALL`, a static call is read-only: neither this function nor any of its nested\n    /// calls may emit side-effects (new notes, nullifiers, logs, L2->L1 messages, etc.). A call is considered static\n    /// if it was invoked as a static call or if any of its ancestor calls were.\n    ///\n    /// # Returns\n    /// * `bool` - `true` if this call (or an ancestor call) is a static call.\n    ///\n    pub fn is_static_call(self) -> bool {\n        self.inputs.call_context.is_static_call\n    }\n\n    /// Returns the hash of the arguments passed to the current function.\n    ///\n    /// Very low-level function: You shouldn't need to call this. The #[external(\"private\")] macro calls this, and it\n    /// makes the arguments neatly available to the body of your private function.\n    ///\n    /// # Returns\n    /// * `Field` - Hash of the function arguments\n    ///\n    /// # Advanced\n    /// * Arguments are hashed to reduce proof size and verification time\n    /// * Enables efficient argument passing in recursive function calls\n    /// * The hash can be used to retrieve the original arguments from the PXE.\n    ///\n    pub fn get_args_hash(self) -> Field {\n        self.args_hash\n    }\n\n    /// Returns the current value of the side-effect counter, i.e. the counter that will be assigned to the next\n    /// side-effect emitted by this function.\n    ///\n    /// Low-level function: Ordinarily, smart contract developers will not need to access this. See `next_counter` for\n    /// details on how side-effect counters are assigned and why they exist.\n    ///\n    /// # Returns\n    /// * `u32` - The current side-effect counter.\n    ///\n    pub fn get_side_effect_counter(self) -> u32 {\n        self.side_effect_counter\n    }\n\n    /// Pushes a new note_hash to the Aztec blockchain's global Note Hash Tree (a state tree).\n    ///\n    /// A note_hash is a commitment to a piece of private state.\n    ///\n    /// Low-level function: Ordinarily, smart contract developers will not need to manually call this. Aztec-nr's state\n    /// variables (see `../state_vars/`) are designed to understand when to create and push new note hashes.\n    ///\n    /// # Arguments\n    /// * `note_hash` - The new note_hash.\n    ///\n    /// # Advanced\n    /// From here, the protocol's kernel circuits will take over and insert the note_hash into the protocol's \"note\n    /// hash tree\" (in the Base Rollup circuit). Before insertion, the protocol will:\n    /// - \"Silo\" the `note_hash` with the contract address of this function, to yield a `siloed_note_hash`. This\n    /// prevents state collisions between different smart contracts.\n    /// - Ensure uniqueness of the `siloed_note_hash`, to prevent Faerie-Gold attacks, by hashing the\n    /// `siloed_note_hash` with a unique value, to yield a `unique_siloed_note_hash` (see the protocol spec for more).\n    ///\n    /// In addition to calling this function, aztec-nr provides the contents of the newly-created note to the PXE, via\n    /// the `notify_created_note` oracle.\n    ///\n    /// > Advanced users might occasionally wish to push data to the context > directly for lower-level control. If you\n    /// find yourself doing this, > please open an issue on GitHub to describe your use case: it might be > that new\n    /// functionality should be added to aztec-nr.\n    ///\n    pub fn push_note_hash(&mut self, note_hash: Field) {\n        self.note_hashes.push(Counted::new(note_hash, self.next_counter()));\n    }\n\n    /// Creates a new [nullifier](crate::nullifier).\n    ///\n    /// ## Safety\n    ///\n    /// This is a low-level function that must be used with great care to avoid subtle corruption of contract state.\n    /// Instead of calling this function, consider using the higher-level [`crate::state_vars::SingleUseClaim`].\n    ///\n    /// In particular, callers must ensure all nullifiers created by a contract are properly domain-separated, so that\n    /// unrelated components don't interfere with one another (e.g. a transaction nullifier accidentally marking a\n    /// variable as initialized). Only [`PrivateContext::push_nullifier_for_note_hash`] should be used for note\n    /// nullifiers, never this one.\n    ///\n    /// ## Advanced\n    ///\n    /// The raw `nullifier` is not what is inserted into the Aztec state tree: it will be first siloed by contract\n    /// address via [`crate::protocol::hash::compute_siloed_nullifier`] in order to prevent accidental or malicious\n    /// interference of nullifiers from different contracts.\n    pub fn push_nullifier_unsafe(&mut self, nullifier: Field) {\n        notify_created_nullifier(nullifier);\n        self.nullifiers.push(Nullifier { value: nullifier, note_hash: 0 }.count(self.next_counter()));\n    }\n\n    /// Creates a new [nullifier](crate::nullifier) associated with a note.\n    ///\n    /// This is a variant of [`PrivateContext::push_nullifier_unsafe`] that is used for note nullifiers, i.e.\n    /// nullifiers that correspond to a note. If a note and its nullifier are created in the same transaction, then\n    /// the private kernels will 'squash' these values, deleting them both as if they never existed and reducing\n    /// transaction fees.\n    ///\n    /// The `nullification_note_hash` must be the result of calling\n    /// [`crate::note::utils::compute_confirmed_note_hash_for_nullification`] for pending notes, and `0` for settled\n    /// notes (which cannot be squashed).\n    ///\n    /// ## Safety\n    ///\n    /// This is a low-level function that must be used with great care to avoid subtle corruption of contract state.\n    /// Instead of calling this function, consider using the higher-level [`crate::note::lifecycle::destroy_note`].\n    ///\n    /// The precautions listed for [`PrivateContext::push_nullifier_unsafe`] apply here as well, and callers should\n    /// additionally ensure `nullification_note_hash` corresponds to a note emitted by this contract, with its hash\n    /// computed in the same transaction execution phase as the call to this function. Finally, only this function\n    /// should be used for note nullifiers, never [`PrivateContext::push_nullifier_unsafe`].\n    ///\n    /// Failure to do these things can result in unprovable contexts, accidental deletion of notes, or double-spend\n    /// attacks.\n    pub fn push_nullifier_for_note_hash(&mut self, nullifier: Field, nullification_note_hash: Field) {\n        let nullifier_counter = self.next_counter();\n        notify_nullified_note(nullifier, nullification_note_hash, nullifier_counter);\n        self.nullifiers.push(Nullifier { value: nullifier, note_hash: nullification_note_hash }.count(\n            nullifier_counter,\n        ));\n    }\n\n    /// Returns the anchor block header - the historical block header that this private function is reading from.\n    ///\n    /// A private function CANNOT read from the \"current\" block header, but must read from some older block header,\n    /// because as soon as private function execution begins (asynchronously, on a user's device), the public state of\n    /// the chain (the \"current state\") will have progressed forward.\n    ///\n    /// # Returns\n    /// * `BlockHeader` - The anchor block header.\n    ///\n    /// # Advanced\n    /// * All private functions of a tx read from the same anchor block header.\n    /// * The protocol asserts that the `expiration_timestamp` of every tx is at most 24 hours beyond the timestamp of\n    /// the tx's chosen anchor block header. This enables the network's nodes to safely prune old txs from the mempool.\n    /// Therefore, the chosen block header _must_ be one from within the last 24 hours.\n    ///\n    pub fn get_anchor_block_header(self) -> BlockHeader {\n        self.anchor_block_header\n    }\n\n    /// Returns the header of any historical block at or before the anchor block.\n    ///\n    /// This enables private contracts to access information from even older blocks than the anchor block header.\n    ///\n    /// Useful for time-based contract logic that needs to compare against multiple historical points.\n    ///\n    /// # Arguments\n    /// * `block_number` - The block number to retrieve (must be <= anchor block number)\n    ///\n    /// # Returns\n    /// * `BlockHeader` - The header of the requested historical block\n    ///\n    /// # Advanced\n    /// This function uses an oracle to fetch block header data from the user's PXE. Depending on how much blockchain\n    /// data the user's PXE has been set up to store, this might require a query from the PXE to another Aztec node to\n    /// get the data. > This is generally true of all oracle getters (see `../oracle`).\n    ///\n    /// Each block header gets hashed and stored as a leaf in the protocol's Archive Tree. In fact, the i-th block\n    /// header gets stored at the i-th leaf index of the Archive Tree. Behind the scenes, this `get_block_header_at`\n    /// function will add Archive Tree merkle-membership constraints (~3k) to your smart contract function's circuit,\n    /// to prove existence of the block header in the Archive Tree.\n    ///\n    /// Note: we don't do any caching, so avoid making duplicate calls for the same block header, because each call\n    /// will add duplicate constraints.\n    ///\n    /// Calling this function is more expensive (constraint-wise) than getting the anchor block header (via\n    /// `get_block_header`). This is because the anchor block's merkle membership proof is handled by Aztec's protocol\n    /// circuits, and is only performed once for the entire tx because all private functions of a tx share a common\n    /// anchor block header. Therefore, the cost (constraint-wise) of calling `get_block_header` is effectively free.\n    ///\n    pub fn get_block_header_at(self, block_number: u32) -> BlockHeader {\n        get_block_header_at(block_number, self)\n    }\n\n    /// Sets the hash of the return values for this private function.\n    ///\n    /// Very low-level function: this is called by the #[external(\"private\")] macro.\n    ///\n    /// # Arguments\n    /// * `serialized_return_values` - The serialized return values as a field array\n    ///\n    pub fn set_return_hash<let N: u32>(&mut self, serialized_return_values: [Field; N]) {\n        let return_hash = hash_args(serialized_return_values);\n        self.return_hash = return_hash;\n        execution_cache::store(serialized_return_values, return_hash);\n    }\n\n    /// Builds the PrivateCircuitPublicInputs for this private function, to ensure compatibility with the protocol's\n    /// kernel circuits.\n    ///\n    /// Very low-level function: This function is automatically called by the #[external(\"private\")] macro.\n    pub fn finish(self) -> PrivateCircuitPublicInputs {\n        PrivateCircuitPublicInputs {\n            call_context: self.inputs.call_context,\n            args_hash: self.args_hash,\n            returns_hash: self.return_hash,\n            min_revertible_side_effect_counter: self.min_revertible_side_effect_counter,\n            is_fee_payer: self.is_fee_payer,\n            expiration_timestamp: self.expiration_timestamp,\n            note_hash_read_requests: ClaimedLengthArray::from_bounded_vec(self.note_hash_read_requests),\n            nullifier_read_requests: ClaimedLengthArray::from_bounded_vec(self.nullifier_read_requests),\n            key_validation_requests_and_separators: ClaimedLengthArray::from_bounded_vec(\n                self.key_validation_requests_and_separators,\n            ),\n            note_hashes: ClaimedLengthArray::from_bounded_vec(self.note_hashes),\n            nullifiers: ClaimedLengthArray::from_bounded_vec(self.nullifiers),\n            private_call_requests: ClaimedLengthArray::from_bounded_vec(self.private_call_requests),\n            public_call_requests: ClaimedLengthArray::from_bounded_vec(self.public_call_requests),\n            public_teardown_call_request: self.public_teardown_call_request,\n            l2_to_l1_msgs: ClaimedLengthArray::from_bounded_vec(self.l2_to_l1_msgs),\n            start_side_effect_counter: self.inputs.start_side_effect_counter,\n            end_side_effect_counter: self.side_effect_counter,\n            private_logs: ClaimedLengthArray::from_bounded_vec(self.private_logs),\n            contract_class_logs_hashes: ClaimedLengthArray::from_bounded_vec(self.contract_class_logs_hashes),\n            anchor_block_header: self.anchor_block_header,\n            tx_context: self.inputs.tx_context,\n            expected_non_revertible_side_effect_counter: self.expected_non_revertible_side_effect_counter,\n            expected_revertible_side_effect_counter: self.expected_revertible_side_effect_counter,\n            tx_request_salt: self.inputs.tx_request_salt,\n        }\n    }\n\n    /// Designates this contract as the fee payer for the transaction.\n    ///\n    /// Unlike Ethereum, where the transaction sender always pays fees, Aztec allows any contract to voluntarily pay\n    /// transaction fees. This enables patterns like sponsored transactions or fee abstraction where users don't need\n    /// to hold fee-juice themselves. (Fee juice is a fee-paying asset for Aztec).\n    ///\n    /// Only one contract per transaction can declare itself as the fee payer, and it must have sufficient fee-juice\n    /// balance (>= the gas limits specified in the TxContext) by the time we reach the public setup phase of the tx.\n    ///\n    pub fn set_as_fee_payer(&mut self) {\n        aztecnr_trace_log_format!(\"Setting {0} as fee payer\")([self.this_address().to_field()]);\n        self.is_fee_payer = true;\n    }\n\n    pub fn in_revertible_phase(&mut self) -> bool {\n        let current_counter = self.side_effect_counter;\n\n        // Safety: Kernel will validate that the claim is correct by validating the expected counters.\n        let is_revertible = unsafe { is_execution_in_revertible_phase(current_counter) };\n\n        if is_revertible {\n            if (self.expected_revertible_side_effect_counter == 0)\n                | (current_counter < self.expected_revertible_side_effect_counter) {\n                self.expected_revertible_side_effect_counter = current_counter;\n            }\n        } else if current_counter > self.expected_non_revertible_side_effect_counter {\n            self.expected_non_revertible_side_effect_counter = current_counter;\n        }\n\n        is_revertible\n    }\n\n    /// Declares the end of the \"setup phase\" of this tx.\n    ///\n    /// Only one function per tx can declare the end of the setup phase.\n    ///\n    /// Niche function: Only wallet developers and paymaster contract developers (aka Fee-payment contracts) will need\n    /// to make use of this function.\n    ///\n    /// Aztec supports a three-phase execution model: setup, app logic, teardown. The phases exist to enable a fee\n    /// payer to take on the risk of paying a transaction fee, safe in the knowledge that their payment (in whatever\n    /// token or method the user chooses) will succeed, regardless of whether the app logic will succeed. The \"setup\"\n    /// phase enables such a payment to be made, because the setup phase _cannot revert_: a reverting function within\n    /// the setup phase would result in an invalid block which cannot be proven. Any side-effects generated during that\n    /// phase are guaranteed to be inserted into Aztec's state trees (except for squashed notes & nullifiers, of\n    /// course).\n    ///\n    /// Even though the end of the setup phase is declared within a private function, you might have noticed that\n    /// _public_ functions can also execute within the setup phase. This is because any public function calls which\n    /// were enqueued _within the setup phase_ by a private function are considered part of the setup phase.\n    ///\n    /// # Advanced\n    /// * Sets the minimum revertible side effect counter of this tx to be the PrivateContext's _current_ side effect\n    /// counter.\n    ///\n    pub fn end_setup(&mut self) {\n        // We bump the counter twice: once so that `min_revertible_side_effect_counter` sits strictly above any\n        // non-revertible side effect counter (including queries made via `in_revertible_phase` before this call), and\n        // once more so that the next revertible side effect counter is strictly greater than\n        // `min_revertible_side_effect_counter`. This ensures `min_revertible_side_effect_counter` occupies a gap that\n        // no side effect takes, which the kernel relies on when validating the phase split.\n        self.side_effect_counter += 1;\n        self.min_revertible_side_effect_counter = self.side_effect_counter;\n        self.side_effect_counter += 1;\n\n        aztecnr_trace_log_format!(\n            \"Ending setup, minimum revertible side effect counter is {0}\",\n        )(\n            [self.min_revertible_side_effect_counter as Field],\n        );\n        notify_revertible_phase_start(self.min_revertible_side_effect_counter);\n    }\n\n    /// Sets a deadline (an \"include-by timestamp\") for when this transaction must be included in a block.\n    ///\n    /// Other functions in this tx might call this setter with differing values for the include-by timestamp. To ensure\n    /// that all functions' deadlines are met, the _minimum_ of all these include-by timestamps will be exposed when\n    /// this tx is submitted to the network.\n    ///\n    /// If the transaction is not included in a block by its include-by timestamp, it becomes invalid and it will never\n    /// be included.\n    ///\n    /// This expiry timestamp is publicly visible. See the \"Advanced\" section for privacy concerns.\n    ///\n    /// # Arguments\n    /// * `expiration_timestamp` - Unix timestamp (seconds) deadline for inclusion. The include-by timestamp of this tx\n    /// will be _at most_ the timestamp specified.\n    ///\n    /// # Advanced\n    /// * If multiple functions set differing `expiration_timestamp`s, the kernel circuits will set it to be the\n    /// _minimum_ of the two. This ensures the tx expiry requirements of all functions in the tx are met.\n    /// * Rollup circuits will reject expired txs.\n    /// * The protocol enforces that all transactions must be included within 24 hours of their chosen anchor block's\n    /// timestamp, to enable safe mempool pruning.\n    /// * The DelayedPublicMutable design makes heavy use of this functionality, to enable private functions to read\n    /// public state.\n    /// * A sophisticated Wallet should cleverly set an include-by timestamp to improve the privacy of the user and the\n    /// network as a whole. For example, if a contract interaction sets include-by to some publicly-known value (e.g.\n    /// the time when a contract upgrades), then the wallet might wish to set an even lower one to avoid revealing that\n    /// this tx is interacting with said contract. Ideally, all wallets should standardize on an approach in order to\n    ///   provide users with a large privacy set -- although the exact approach\n    /// will need to be discussed. Wallets that deviate from a standard might accidentally reveal which wallet each\n    /// transaction originates from.\n    ///\n    // docs:start:expiration-timestamp\n    pub fn set_expiration_timestamp(&mut self, expiration_timestamp: u64) {\n        // docs:end:expiration-timestamp\n        self.expiration_timestamp = std::cmp::min(self.expiration_timestamp, expiration_timestamp);\n    }\n\n    /// Asserts that a note has been created.\n    ///\n    /// This function will cause the transaction to fail unless the requested note exists. This is the preferred\n    /// mechanism for performing this check, and the only one that works for pending notes.\n    ///\n    /// ## Pending Notes\n    ///\n    /// Both settled notes (created in prior transactions) and pending notes (created in the current transaction) will\n    /// be considered by this function. Pending notes must have been created **before** this call is made for the check\n    /// to pass.\n    ///\n    /// ## Historical Notes\n    ///\n    /// If you need to assert that a note existed _by some specific block in the past_, instead of simply proving that\n    /// it exists by the current anchor block, use [`crate::history::note::assert_note_existed_by`] instead.\n    ///\n    /// ## Cost\n    ///\n    /// This uses up one of the call's kernel note hash read requests, which are limited. Like all kernel requests,\n    /// proving time costs are only incurred when the total number of requests exceeds the kernel's capacity, requiring\n    /// an additional invocation of the kernel reset circuit.\n    pub fn assert_note_exists(&mut self, note_existence_request: NoteExistenceRequest) {\n        // Note that the `note_hash_read_requests` array does not hold `NoteExistenceRequest` objects, but rather a\n        // custom kernel type. We convert from the aztec-nr type into it.\n\n        let note_hash = note_existence_request.note_hash();\n        let contract_address = note_existence_request.maybe_contract_address().unwrap_or(AztecAddress::zero());\n\n        let side_effect = Scoped::new(\n            Counted::new(note_hash, self.next_counter()),\n            contract_address,\n        );\n\n        self.note_hash_read_requests.push(side_effect);\n    }\n\n    /// Asserts that a nullifier has been emitted.\n    ///\n    /// This function will cause the transaction to fail unless the requested nullifier exists. This is the preferred\n    /// mechanism for performing this check, and the only one that works for pending nullifiers.\n    ///\n    /// ## Pending Nullifiers\n    ///\n    /// Both settled nullifiers (emitted in prior transactions) and pending nullifiers (emitted in the current\n    /// transaction) will be considered by this function. Pending nullifiers must have been emitted **before** this\n    /// call is made for the check to pass.\n    ///\n    /// ## Historical Nullifiers\n    ///\n    /// If you need to assert that a nullifier existed _by some specific block in the past_, instead of simply proving\n    /// that it exists by the current anchor block, use [`crate::history::nullifier::assert_nullifier_existed_by`]\n    /// instead.\n    ///\n    /// ## Public vs Private\n    ///\n    /// In general, it is unsafe to check for nullifier non-existence in private, as that will not consider the\n    /// possibility of the nullifier having been emitted in any transaction between the anchor block and the inclusion\n    /// block. Private functions instead prove existence via this function and 'prove' non-existence by _emitting_ the\n    /// nullifer, which would cause the transaction to fail if the nullifier existed.\n    ///\n    /// This is not the case in public functions, which do have access to the tip of the blockchain and so can reliably\n    /// prove whether a nullifier exists or not via\n    /// [`crate::context::public_context::PublicContext::nullifier_exists_unsafe`].\n    ///\n    /// ## Cost\n    ///\n    /// This uses up one of the call's kernel nullifier read requests, which are limited. Like all kernel requests,\n    /// proving time costs are only incurred when the total number of requests exceeds the kernel's capacity, requiring\n    /// an additional invocation of the kernel reset circuit.\n    pub fn assert_nullifier_exists(&mut self, nullifier_existence_request: NullifierExistenceRequest) {\n        let nullifier = nullifier_existence_request.nullifier();\n        let contract_address = nullifier_existence_request.maybe_contract_address().unwrap_or(AztecAddress::zero());\n\n        let request = Scoped::new(\n            Counted::new(nullifier, self.next_counter()),\n            contract_address,\n        );\n\n        self.nullifier_read_requests.push(request);\n    }\n\n    /// Requests the app-siloed nullifier hiding key (nhk_app) for the given (hashed) master nullifier public key\n    /// (npk_m), from the user's PXE.\n    ///\n    /// Advanced function: Only needed if you're designing your own notes and/or nullifiers.\n    ///\n    /// Contracts are not allowed to compute nullifiers for other contracts, as that would let them read parts of their\n    /// private state. Because of this, a contract is only given an \"app-siloed key\", which is constructed by\n    /// hashing the user's master nullifier hiding key with the contract's address. However, because contracts cannot\n    /// be trusted with a user's master nullifier hiding key (because we don't know which contracts are honest or\n    /// malicious), the PXE refuses to provide any master secret keys to any app smart contract function. This means\n    /// app functions are unable to prove that the derivation of an app-siloed nullifier hiding key has been computed\n    /// correctly. Instead, an app function can request to the kernel (via `request_nhk_app`) that it validates the\n    /// siloed derivation, since the kernel has been vetted to not leak any master secret keys.\n    ///\n    /// A common nullification scheme is to inject a nullifier hiding key into the preimage of a nullifier, to make the\n    /// nullifier deterministic but random-looking. This function enables that flow.\n    ///\n    /// # Arguments\n    /// * `npk_m_hash` - A hash of the master nullifier public key of the user whose PXE is executing this function.\n    ///\n    /// # Returns\n    /// * The app-siloed nullifier hiding key that corresponds to the given `npk_m_hash`.\n    ///\n    pub fn request_nhk_app(&mut self, npk_m_hash: Field) -> Field {\n        self.request_sk_app(npk_m_hash, NULLIFIER_INDEX)\n    }\n\n    /// Requests the app-siloed outgoing viewing secret key (ovsk_app) for the given (hashed) master outgoing\n    /// viewing public key (ovpk_m), from the user's PXE.\n    ///\n    /// See `request_nhk_app` and `request_sk_app` for more info.\n    ///\n    /// The intention of the \"outgoing\" keypair is to provide a second secret key for all of a user's outgoing activity\n    /// (i.e. for notes that a user creates, as opposed to notes that a user receives from others). The separation of\n    /// incoming and outgoing data was a distinction made by zcash, with the intention of enabling a user to optionally\n    /// share with a 3rd party a controlled view of only incoming or outgoing notes. Similar functionality of sharing\n    /// select data can be achieved with offchain zero-knowledge proofs. It is up to an app developer whether they\n    /// choose to make use of a user's outgoing keypair within their application logic, or instead simply use the same\n    /// keypair (the address keypair (which is effectively the same as the \"incoming\" keypair)) for all incoming &\n    /// outgoing messages to a user.\n    ///\n    /// Currently, all of the exposed encryption functions in aztec-nr ignore the outgoing viewing keys, and instead\n    /// encrypt all note logs and event logs to a user's address public key.\n    ///\n    /// # Arguments\n    /// * `ovpk_m_hash` - Hash of the outgoing viewing public key master\n    ///\n    /// # Returns\n    /// * The application-specific outgoing viewing secret key\n    ///\n    pub fn request_ovsk_app(&mut self, ovpk_m_hash: Field) -> Field {\n        self.request_sk_app(ovpk_m_hash, OUTGOING_INDEX)\n    }\n\n    /// Pushes a Key Validation Request to the kernel.\n    ///\n    /// Private functions are not allowed to see a user's master secret keys, because we do not trust them. They are\n    /// instead given \"app-siloed\" secret keys with a claim that they relate to a master public key. They can then\n    /// request validation of this claim, by making a \"key validation request\" to the protocol's kernel circuits (which\n    /// _are_ allowed to see certain master secret keys).\n    ///\n    /// The app circuit only sees `pk_m_hash` (not the raw point). The kernel derives the\n    /// point from `sk_m`, hashes it, and asserts equality. When a Key Validation Request tuple of\n    /// (sk_app, pk_m_hash, app_address) is submitted to the kernel, it performs the following\n    /// derivations to validate the relationship between the claimed sk_app and the user's pk_m_hash:\n    ///\n    ///       (sk_m) ----> * G ----> pk_m ----> hash_public_key(pk_m)\n    ///         |                                        |\n    ///         v                                        | We use the kernel to prove this\n    ///  h(sk_m, app_address)                            | sk_app-pk_m_hash relationship, because app\n    ///         |                                        | circuits must not be trusted to see sk_m.\n    ///         v                                        |\n    ///      sk_app  - - - - - - - - - - - - - - - - - -\n    ///\n    /// The function is named \"request_\" instead of \"get_\" to remind the user that a Key Validation Request will be\n    /// emitted to the kernel.\n    ///\n    fn request_sk_app(&mut self, pk_m_hash: Field, key_index: Field) -> Field {\n        // Match against the cache only when a request is actually present in the slot.\n        let cached_slot = self.last_key_validation_requests[key_index as u32];\n        let cache_hit = cached_slot.is_some() & (cached_slot.unwrap_unchecked().pk_m_hash == pk_m_hash);\n\n        if cache_hit {\n            // We get a match so the cached request is the latest one\n            cached_slot.unwrap_unchecked().sk_app\n        } else {\n            // We didn't get a match meaning the cached result is stale. Typically we'd validate keys by showing that\n            // the master secret key derives to a public key matching `pk_m_hash`, but that'd require the oracle\n            // returning the master secret keys, which could cause malicious contracts to leak it or learn about\n            // secrets from other contracts. We therefore silo secret keys, and rely on the private kernel to validate\n            // that the siloed secret key corresponds to correct siloing of the master secret key that hashes to\n            // `pk_m_hash`.\n\n            // Safety: Kernels verify that the key validation request is valid and below we verify that a request for\n            // the correct public key has been received.\n            let request = unsafe { get_key_validation_request(pk_m_hash, key_index) };\n            assert_eq(request.pk_m_hash, pk_m_hash, \"Obtained key validation request for wrong pk_m_hash\");\n\n            self.key_validation_requests_and_separators.push(\n                KeyValidationRequestAndSeparator {\n                    request,\n                    key_type_domain_separator: public_key_domain_separators[key_index as u32],\n                },\n            );\n            self.last_key_validation_requests[key_index as u32] = Option::some(request);\n            request.sk_app\n        }\n    }\n\n    /// Sends an \"L2 -> L1 message\" from this function (Aztec, L2) to a smart contract on Ethereum (L1). L1 contracts\n    /// which are designed to send/receive messages to/from Aztec are called \"Portal Contracts\".\n    ///\n    /// Common use cases include withdrawals, cross-chain asset transfers, and triggering L1 actions based on L2 state\n    /// changes.\n    ///\n    /// The message will be inserted into an Aztec \"Outbox\" contract on L1, when this transaction's block is proposed\n    /// to L1. Sending the message will not result in any immediate state changes in the target portal contract. The\n    /// message will need to be manually consumed from the Outbox through a separate Ethereum transaction: a user will\n    /// need to call a function of the portal contract -- a function specifically designed to make a call to the Outbox\n    /// to consume the message. The message will only be available for consumption once the _epoch_ proof has been\n    /// submitted. Given that there are multiple Aztec blocks within an epoch, it might take some time for this epoch\n    /// proof to be submitted -- especially if the block was near the start of an epoch.\n    ///\n    /// # Arguments\n    /// * `recipient` - Ethereum address that will receive the message\n    /// * `content` - Message content (32 bytes as a Field element). This content has a very\n    /// specific layout. docs:start:context_message_portal\n    pub fn message_portal(&mut self, recipient: EthAddress, content: Field) {\n        let message = L2ToL1Message { recipient, content };\n        self.l2_to_l1_msgs.push(message.count(self.next_counter()));\n    }\n\n    /// Consumes a message sent from Ethereum (L1) to Aztec (L2).\n    ///\n    /// Common use cases include token bridging, cross-chain governance, and triggering L2 actions based on L1 events.\n    ///\n    /// Use this function if you only want the message to ever be \"referred to\" once. Once consumed using this method,\n    /// the message cannot be consumed again, because a nullifier is emitted. If your use case wants for the message to\n    /// be read unlimited times, then you can always read any historic message from the L1-to-L2 messages tree;\n    /// messages never technically get deleted from that tree.\n    ///\n    /// The message will first be inserted into an Aztec \"Inbox\" smart contract on L1. Sending the message will not\n    /// result in any immediate state changes in the target L2 contract. The message will need to be manually consumed\n    /// by the target contract through a separate Aztec transaction. The message will not be available for consumption\n    /// immediately. Messages get copied over from the L1 Inbox to L2 by the next Proposer in batches. So you will need\n    /// to wait until the messages are copied before you can consume them.\n    ///\n    /// # Arguments\n    /// * `content` - The message content that was sent from L1\n    /// * `secret` - Secret fields used for message privacy (if needed)\n    /// * `sender` - Ethereum address that sent the message\n    /// * `leaf_index` - Index of the message in the L1-to-L2 message tree\n    ///\n    /// # Advanced\n    /// Validates message existence in the L1-to-L2 message tree and nullifies the message to prevent\n    /// double-consumption.\n    pub fn consume_l1_to_l2_message<let N: u32>(\n        &mut self,\n        content: Field,\n        secret: [Field; N],\n        sender: EthAddress,\n        leaf_index: Field,\n    ) {\n        let nullifier = process_l1_to_l2_message(\n            self.anchor_block_header.state.l1_to_l2_message_tree.root,\n            self.this_address(),\n            sender,\n            self.chain_id(),\n            self.version(),\n            content,\n            secret,\n            leaf_index,\n        );\n\n        // Push nullifier (and the \"commitment\" corresponding to this can be \"empty\")\n        self.push_nullifier_unsafe(nullifier)\n    }\n\n    /// Emits a private log (an array of Fields) that will be published to an Ethereum blob.\n    ///\n    /// Private logs are intended for the broadcasting of ciphertexts: that is, encrypted events or encrypted note\n    /// contents. Since the data in the logs is meant to be _encrypted_, private_logs are broadcast to publicly-visible\n    /// Ethereum blobs. The intended recipients of such encrypted messages can then discover and decrypt these\n    /// encrypted logs using their viewing secret key. (See `../messages/discovery` for more details).\n    ///\n    /// Important note: This function DOES NOT _do_ any encryption of the input `log` fields. This function blindly\n    /// publishes whatever input `log` data is fed into it, so the caller of this function should have already\n    /// performed the encryption, and the `log` should be the result of that encryption.\n    ///\n    /// The protocol does not dictate what encryption scheme should be used: a smart contract developer can choose\n    /// whatever encryption scheme they like. Aztec-nr includes some off-the-shelf encryption libraries that developers\n    /// might wish to use, for convenience. These libraries not only encrypt a plaintext (to produce a ciphertext);\n    /// they also prepend the ciphertext with a `tag` and `ephemeral public key` for easier message discovery. This is\n    /// a very dense topic, and we will be writing more libraries and docs soon.\n    ///\n    /// > Currently, AES128 CBC encryption is the main scheme included in > aztec.nr. > We are currently making\n    /// significant changes to the interfaces of the > encryption library.\n    ///\n    /// In some niche use cases, an app might be tempted to publish _un-encrypted_ data via a private log, because\n    /// _public logs_ are not available to private functions. Be warned that emitting public data via private logs is\n    /// strongly discouraged, and is considered a \"privacy anti-pattern\", because it reveals identifiable information\n    /// about _which_ function has been executed. A tx which leaks such information does not contribute to the privacy\n    /// set of the network.\n    ///\n    /// * Unlike `emit_raw_note_log_unsafe`, this log is not tied to any specific note\n    ///\n    /// # Arguments\n    /// * `tag` - A tag placed at `fields[0]` of the emitted log. Used by recipients and nodes to identify and\n    /// filter for relevant logs without scanning all of them.\n    /// * `log` - The log data that will be publicly broadcast (so make sure it's already been encrypted before you\n    /// call this function). Private logs are bounded in size (`PRIVATE_LOG_CIPHERTEXT_LEN`), to encourage all logs\n    /// from all smart contracts look identical. The protocol's kernel circuits can then append random fields as\n    /// \"padding\" after the log's length, so that the logs of this smart contract look indistinguishable from (the\n    /// same length as) the logs of all other applications. It's up to wallets how much padding to apply, so\n    /// ideally all wallets should agree on standards for this.\n    ///\n    /// ## Safety\n    ///\n    /// The `tag` should be domain-separated (e.g. via [`crate::protocol::hash::compute_log_tag`]) to prevent\n    /// collisions between logs from different sources. Without domain separation, two unrelated log types that\n    /// happen to share a raw tag value become indistinguishable. Prefer the higher-level APIs\n    /// ([`crate::messages::delivery::MessageDelivery`] for messages, `self.emit(event)` for events) which\n    /// handle tagging automatically.\n    pub fn emit_private_log_unsafe(&mut self, tag: Field, log: BoundedVec<Field, PRIVATE_LOG_CIPHERTEXT_LEN>) {\n        self.emit_raw_note_log_unsafe(tag, log, 0);\n    }\n\n    /// Emits a private log that is explicitly tied to a newly-emitted note_hash, to convey to the kernel: \"this log\n    /// relates to this note\".\n    ///\n    /// This linkage is important in case the note gets squashed (due to being read later in this same tx), since we\n    /// can then squash the log as well.\n    ///\n    /// See [`emit_private_log_unsafe`](PrivateContext::emit_private_log_unsafe) for more info about private log\n    /// emission.\n    ///\n    /// # Arguments\n    /// * `tag` - A tag placed at `fields[0]`. See\n    ///   [`emit_private_log_unsafe`](PrivateContext::emit_private_log_unsafe).\n    /// * `log` - The log data as a `BoundedVec` of Field elements.\n    /// * `note_hash_counter` - The side-effect counter that was assigned to the new note_hash when it was pushed to\n    /// this `PrivateContext`.\n    ///\n    /// Important: If your application logic requires the log to always be emitted regardless of note squashing,\n    /// consider using [`emit_private_log_unsafe`](PrivateContext::emit_private_log_unsafe) instead, or emitting\n    /// additional events.\n    ///\n    /// ## Safety\n    ///\n    /// Same as [`PrivateContext::emit_private_log_unsafe`]: the `tag` should be domain-separated.\n    pub fn emit_raw_note_log_unsafe(\n        &mut self,\n        tag: Field,\n        log: BoundedVec<Field, PRIVATE_LOG_CIPHERTEXT_LEN>,\n        note_hash_counter: u32,\n    ) {\n        let counter = self.next_counter();\n        let full_log = [tag].concat(log.storage());\n        let private_log = PrivateLogData { log: PrivateLog::new(full_log, log.len() + 1), note_hash_counter };\n        self.private_logs.push(private_log.count(counter));\n    }\n\n    /// Emits large data blobs.\n    ///\n    /// This reuses the Contract Class Log channel to emit blobs of up to [`CONTRACT_CLASS_LOG_SIZE_IN_FIELDS`].\n    ///\n    /// ## Privacy\n    ///\n    /// The address of the contract emitting these blobs is revelead.\n    pub fn emit_contract_class_log<let N: u32>(&mut self, log: [Field; N]) {\n        let contract_address = self.this_address();\n        let counter = self.next_counter();\n\n        let log_to_emit: [Field; CONTRACT_CLASS_LOG_SIZE_IN_FIELDS] =\n            log.concat([0; CONTRACT_CLASS_LOG_SIZE_IN_FIELDS - N]);\n        // Note: the length is not always N, it is the number of fields we want to broadcast, omitting trailing zeros\n        // to save blob space.\n        // Safety: The below length is constrained in the base rollup, which will make sure that all the fields beyond\n        // length are zero. However, it won't be able to check that we didn't add extra padding (trailing zeroes) or\n        // that we cut trailing zeroes from the end.\n        let length = unsafe { trimmed_array_length_hint(log) };\n        // We hash the entire padded log to ensure a user cannot pass a shorter length and so emit incorrect shorter\n        // bytecode.\n        let log_hash = compute_contract_class_log_hash(log_to_emit);\n        // Safety: the below only exists to broadcast the raw log, so we can provide it to the base rollup later to be\n        // constrained.\n        unsafe {\n            notify_created_contract_class_log(contract_address, log_to_emit, length, counter);\n        }\n\n        self.contract_class_logs_hashes.push(LogHash { value: log_hash, length: length }.count(counter));\n    }\n\n    /// Calls a private function on another contract (or the same contract).\n    ///\n    /// Very low-level function.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args` - Array of arguments to pass to the called function\n    ///\n    /// # Returns\n    /// * `ReturnsHash` - Hash of the called function's return values. Use `.get_preimage()` to extract the actual\n    /// return values.\n    ///\n    /// This enables contracts to interact with each other while maintaining privacy. This \"composability\" of private\n    /// contract functions is a key feature of the Aztec network.\n    ///\n    /// If a user's transaction includes multiple private function calls, then by the design of Aztec, the following\n    /// information will remain private[1]:\n    /// - The function selectors and contract addresses of all private function calls will remain private, so an\n    /// observer of the public mempool will not be able to look at a tx and deduce which private functions have been\n    /// executed.\n    /// - The arguments and return values of all private function calls will remain private.\n    /// - The person who initiated the tx will remain private.\n    /// - The notes and nullifiers and private logs that are emitted by all private function calls will (if designed\n    /// well) not leak any user secrets, nor leak which functions have been executed.\n    ///\n    /// [1] Caveats: Some of these privacy guarantees depend on how app developers design their smart contracts. Some\n    /// actions _can_ leak information, such as:\n    /// - Calling an internal public function.\n    /// - Calling a public function and not setting msg_sender to Option::none (feature not built yet - see github).\n    /// - Calling any public function will always leak details about the nature of the transaction, so devs should be\n    /// careful in their contract designs. If it can be done in a private function, then that will give the best\n    /// privacy.\n    /// - Not padding the side-effects of a tx to some standardized, uniform size. The kernel circuits can take hints\n    /// to pad side-effects, so a wallet should be able to request for a particular amount of padding. Wallets should\n    /// ideally agree on some standard.\n    /// - Padding should include:\n    /// - Padding the lengths of note & nullifier arrays\n    /// - Padding private logs with random fields, up to some standardized size. See also:\n    /// https://docs.aztec.network/developers/resources/considerations/privacy_considerations\n    ///\n    /// # Advanced\n    /// * The call is added to the private call stack and executed by kernel circuits after this function completes\n    /// * The called function can modify its own contract's private state\n    /// * Side effects from the called function are included in this transaction\n    /// * The call inherits the current transaction's context and gas limits\n    ///\n    pub fn call_private_function<let ArgsCount: u32>(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; ArgsCount],\n    ) -> ReturnsHash {\n        let args_hash = hash_args(args);\n        execution_cache::store(args, args_hash);\n        self.call_private_function_with_args_hash(contract_address, function_selector, args_hash, false)\n    }\n\n    /// Makes a read-only call to a private function on another contract.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state, emit L2->L2 messages, nor\n    /// emit events. Any nested calls are constrained to also be staticcalls.\n    ///\n    /// See `call_private_function` for more general info on private function calls.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract to call\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args` - Array of arguments to pass to the called function\n    ///\n    /// # Returns\n    /// * `ReturnsHash` - Hash of the called function's return values. Use `.get_preimage()` to extract the actual\n    /// return values.\n    ///\n    pub fn static_call_private_function<let ArgsCount: u32>(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; ArgsCount],\n    ) -> ReturnsHash {\n        let args_hash = hash_args(args);\n        execution_cache::store(args, args_hash);\n        self.call_private_function_with_args_hash(contract_address, function_selector, args_hash, true)\n    }\n\n    /// Calls a private function that takes no arguments.\n    ///\n    /// This is a convenience function for calling private functions that don't require any input parameters. It's\n    /// equivalent to `call_private_function` but slightly more efficient to use when no arguments are needed.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    ///\n    /// # Returns\n    /// * `ReturnsHash` - Hash of the called function's return values. Use `.get_preimage()` to extract the actual\n    /// return values.\n    ///\n    pub fn call_private_function_no_args(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n    ) -> ReturnsHash {\n        self.call_private_function_with_args_hash(contract_address, function_selector, 0, false)\n    }\n\n    /// Makes a read-only call to a private function which takes no arguments.\n    ///\n    /// This combines the optimisation of `call_private_function_no_args` with the safety of\n    /// `static_call_private_function`.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    ///\n    /// # Returns\n    /// * `ReturnsHash` - Hash of the called function's return values. Use `.get_preimage()` to extract the actual\n    /// return values.\n    ///\n    pub fn static_call_private_function_no_args(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n    ) -> ReturnsHash {\n        self.call_private_function_with_args_hash(contract_address, function_selector, 0, true)\n    }\n\n    /// Low-level private function call.\n    ///\n    /// This is the underlying implementation used by all other private function call methods. Instead of taking raw\n    /// arguments, it accepts a hash of the arguments.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args_hash` - Pre-computed hash of the function arguments\n    /// * `is_static_call` - Whether this should be a read-only call\n    ///\n    /// # Returns\n    /// * `ReturnsHash` - Hash of the called function's return values\n    ///\n    pub fn call_private_function_with_args_hash(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args_hash: Field,\n        is_static_call: bool,\n    ) -> ReturnsHash {\n        let is_static_call = is_static_call | self.inputs.call_context.is_static_call;\n        let start_side_effect_counter = self.side_effect_counter;\n\n        // Safety: The oracle simulates the private call and returns the value of the side effects counter after\n        // execution of the call (which means that end_side_effect_counter - start_side_effect_counter is the number of\n        // side effects that took place), along with the hash of the return values. We validate these by requesting a\n        // private kernel iteration in which the return values are constrained to hash to `returns_hash` and the side\n        // effects counter to increment from start to end.\n        let (end_side_effect_counter, returns_hash) = unsafe {\n            call_private_function_internal(\n                contract_address,\n                function_selector,\n                args_hash,\n                start_side_effect_counter,\n                is_static_call,\n            )\n        };\n\n        self.private_call_requests.push(\n            PrivateCallRequest {\n                call_context: CallContext {\n                    msg_sender: self.this_address(),\n                    contract_address,\n                    function_selector,\n                    is_static_call,\n                },\n                args_hash,\n                returns_hash,\n                start_side_effect_counter,\n                end_side_effect_counter,\n            },\n        );\n\n        // The kernel circuits ensure that end_side_effect_counter is greater than start_side_effect_counter, and that\n        // all side effects emitted in the child call have counters within the range [start_side_effect_counter,\n        // end_side_effect_counter]. Therefore, we only need to ensure that the next side effect from the current call\n        // starts after the end side effect from the child call.\n        self.side_effect_counter = end_side_effect_counter + 1;\n\n        ReturnsHash::new(returns_hash)\n    }\n\n    /// Enqueues a call to a public function to be executed later.\n    ///\n    /// Unlike private functions which execute immediately on the user's device, public function calls are \"enqueued\"\n    /// and executed some time later by a block proposer.\n    ///\n    /// This means a public function cannot return any values back to a private function, because by the time the\n    /// public function is being executed, the private function which called it has already completed execution. (In\n    /// fact, the private function has been executed and proven, along with all other private function calls of the\n    /// user's tx. A single proof of the tx has been submitted to the Aztec network, and some time later a proposer has\n    /// picked the tx up from the mempool and begun executing all of the enqueued public functions).\n    ///\n    /// # Privacy warning Enqueueing a public function call is an inherently leaky action. Many interesting applications will require some interaction with public state, but smart contract developers should try to use public function calls sparingly, and carefully. _Internal_ public function calls are especially leaky, because they completely leak which private contract made the call. See also: https://docs.aztec.network/developers/resources/considerations/privacy_considerations\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args` - Array of arguments to pass to the public function\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn call_public_function<let ArgsCount: u32>(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; ArgsCount],\n        hide_msg_sender: bool,\n    ) {\n        let calldata = [function_selector.to_field()].concat(args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        self.call_public_function_with_calldata_hash(contract_address, calldata_hash, false, hide_msg_sender)\n    }\n\n    /// Enqueues a read-only call to a public function.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state or emit events. Any nested\n    /// calls are constrained to also be staticcalls.\n    ///\n    /// See also `call_public_function` for more important information about making private -> public function calls.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args` - Array of arguments to pass to the public function\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn static_call_public_function<let ArgsCount: u32>(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; ArgsCount],\n        hide_msg_sender: bool,\n    ) {\n        let calldata = [function_selector.to_field()].concat(args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        self.call_public_function_with_calldata_hash(contract_address, calldata_hash, true, hide_msg_sender)\n    }\n\n    /// Enqueues a call to a public function that takes no arguments.\n    ///\n    /// This is an optimisation for calling public functions that don't take any input parameters. It's otherwise\n    /// equivalent to `call_public_function`.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn call_public_function_no_args(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        hide_msg_sender: bool,\n    ) {\n        let calldata_hash = hash_calldata_array([function_selector.to_field()]);\n        self.call_public_function_with_calldata_hash(contract_address, calldata_hash, false, hide_msg_sender)\n    }\n\n    /// Enqueues a read-only call to a public function with no arguments.\n    ///\n    /// This combines the optimisation of `call_public_function_no_args` with the safety of\n    /// `static_call_public_function`.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn static_call_public_function_no_args(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        hide_msg_sender: bool,\n    ) {\n        let calldata_hash = hash_calldata_array([function_selector.to_field()]);\n        self.call_public_function_with_calldata_hash(contract_address, calldata_hash, true, hide_msg_sender)\n    }\n\n    /// Low-level public function call.\n    ///\n    /// This is the underlying implementation used by all other public function call methods. Instead of taking raw\n    /// arguments, it accepts a hash of the arguments.\n    ///\n    /// Advanced function: Most developers should use `call_public_function` or `static_call_public_function` instead.\n    /// This function is exposed for performance optimization and advanced use cases.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the function\n    /// * `calldata_hash` - Hash of the function calldata\n    /// * `is_static_call` - Whether this should be a read-only call\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn call_public_function_with_calldata_hash(\n        &mut self,\n        contract_address: AztecAddress,\n        calldata_hash: Field,\n        is_static_call: bool,\n        hide_msg_sender: bool,\n    ) {\n        let counter = self.next_counter();\n\n        let is_static_call = is_static_call | self.inputs.call_context.is_static_call;\n\n        assert_valid_public_call_data(calldata_hash);\n\n        let msg_sender = if hide_msg_sender {\n            NULL_MSG_SENDER_CONTRACT_ADDRESS\n        } else {\n            self.this_address()\n        };\n\n        let call_request = PublicCallRequest { msg_sender, contract_address, is_static_call, calldata_hash };\n\n        self.public_call_requests.push(Counted::new(call_request, counter));\n    }\n\n    /// Enqueues a public function call, and designates it to be the teardown function for this tx. Only one teardown\n    /// function call can be made by a tx.\n    ///\n    /// Niche function: Only wallet developers and paymaster contract developers (aka Fee-payment contracts) will need\n    /// to make use of this function.\n    ///\n    /// Aztec supports a three-phase execution model: setup, app logic, teardown. The phases exist to enable a fee\n    /// payer to take on the risk of paying a transaction fee, safe in the knowledge that their payment (in whatever\n    /// token or method the user chooses) will succeed, regardless of whether the app logic will succeed. The \"setup\"\n    /// phase ensures the fee payer has sufficient balance to pay the proposer their fees. The teardown phase is\n    /// primarily intended to: calculate exactly how much the user owes, based on gas consumption, and refund the user\n    /// any change.\n    ///\n    /// Note: in some cases, the cost of refunding the user (i.e. DA costs of tx side-effects) might exceed the refund\n    /// amount. For app logic with fairly stable and predictable gas consumption, a material refund amount is unlikely.\n    /// For app logic with unpredictable gas consumption, a refund might be important to the user (e.g. if a hefty\n    /// function reverts very early). Wallet/FPC/Paymaster developers should be mindful of this.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the teardown function\n    /// * `function_selector` - 4-byte identifier of the function to call\n    /// * `args` - An array of fields to pass to the function.\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    pub fn set_public_teardown_function<let ArgsCount: u32>(\n        &mut self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; ArgsCount],\n        hide_msg_sender: bool,\n    ) {\n        let calldata = [function_selector.to_field()].concat(args);\n        let calldata_hash = hash_calldata_array(calldata);\n        execution_cache::store(calldata, calldata_hash);\n        self.set_public_teardown_function_with_calldata_hash(contract_address, calldata_hash, false, hide_msg_sender)\n    }\n\n    /// Low-level function to set the public teardown function.\n    ///\n    /// This is the underlying implementation for setting the teardown function call that will execute at the end of\n    /// the transaction. Instead of taking raw arguments, it accepts a hash of the arguments.\n    ///\n    /// Advanced function: Most developers should use `set_public_teardown_function` instead.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract containing the teardown function\n    /// * `calldata_hash` - Hash of the function calldata\n    /// * `is_static_call` - Whether this should be a read-only call\n    /// * `hide_msg_sender` - the called function will see a \"null\" value for `msg_sender` if set to `true`\n    ///\n    pub fn set_public_teardown_function_with_calldata_hash(\n        &mut self,\n        contract_address: AztecAddress,\n        calldata_hash: Field,\n        is_static_call: bool,\n        hide_msg_sender: bool,\n    ) {\n        let is_static_call = is_static_call | self.inputs.call_context.is_static_call;\n\n        assert_valid_public_call_data(calldata_hash);\n\n        let msg_sender = if hide_msg_sender {\n            NULL_MSG_SENDER_CONTRACT_ADDRESS\n        } else {\n            self.this_address()\n        };\n\n        self.public_teardown_call_request =\n            PublicCallRequest { msg_sender, contract_address, is_static_call, calldata_hash };\n    }\n\n    /// Increments the side-effect counter.\n    ///\n    /// Very low-level function.\n    ///\n    /// # Advanced\n    ///\n    /// Every side-effect of a private function is given a \"side-effect counter\", based on when it is created. This\n    /// PrivateContext is in charge of assigning the counters.\n    ///\n    /// The reason we have side-effect counters is complicated. Consider this illustrative pseudocode of inter-contract\n    /// function calls:\n    /// ```\n    /// contract A {\n    ///    let x = 5; // pseudocode for storage var x.\n    ///    fn a1 {\n    ///        read x; // value: 5, counter: 1.\n    ///        x = x + 1;\n    ///        write x; // value: 6, counter: 2.\n    ///\n    ///        B.b(); // start_counter: 2, end_counter: 4\n    ///\n    ///        read x; // value: 36, counter: 5.\n    ///        x = x + 1;\n    ///        write x; // value: 37, counter: 6.\n    ///    }\n    ///\n    ///    fn a2 {\n    ///        read x; // value: 6, counter: 3.\n    ///        x = x * x;\n    ///        write x; // value: 36, counter: 4.\n    ///    }\n    /// }\n    ///\n    /// contract B {\n    ///     fn b() {\n    ///         A.a2();\n    ///     }\n    /// }\n    /// ```\n    ///\n    /// Suppose a1 is the first function called. The comments show the execution counter of each side-effect, and what\n    /// the new value of `x` is.\n    ///\n    /// These (private) functions are processed by Aztec's kernel circuits in an order that is different from execution\n    /// order: All of A.a1 is proven before B.b is proven, before A.a2 is proven. So when we're in the 2nd execution\n    /// frame of A.a1 (after the call to B.b), the circuit needs to justify why x went from being `6` to `36`. But the\n    /// circuit doesn't know why, and given the order of proving, the kernel hasn't _seen_ a value of 36 get written\n    /// yet. The kernel needs to track big arrays of all side-effects of all private functions in a tx. Then, as it\n    /// recurses and processes B.b(), it will eventually see a value of 36 get written.\n    ///\n    /// Suppose side-effect counters weren't exposed: The kernel would only see this ordering (in order of proof\n    /// verification): [ A.a1.read, A.a1.write, A.a1.read, A.a1.write, A.a2.read, A.a2.write ]\n    /// [         5,          6,        36,         37,         6,         36 ]\n    /// The kernel wouldn't know _when_ B.b() was called within A.a1(), because it can't see what's going on within an\n    /// app circuit. So the kernel wouldn't know that the ordering of reads and writes should actually be: [ A.a1.read,\n    /// A.a1.write, A.a2.read, A.a2.write, A.a1.read, A.a1.write ]\n    /// [         5,          6,        6,         36,         36,         37 ]\n    ///\n    /// And so, we introduced side-effect counters: every private function must assign side-effect counters alongside\n    /// every side-effect that it emits, and also expose to the kernel the counters that it started and ended with.\n    /// This gives the kernel enough information to arrange all side-effects in the correct order. It can then catch\n    /// (for example) if a function tries to read state before it has been written (e.g. if A.a2() maliciously tried to\n    /// read a value of x=37) (e.g. if A.a1() maliciously tried to read x=6).\n    ///\n    /// If a malicious app contract _lies_ and does not count correctly:\n    /// - It cannot lie about its start and end counters because the kernel will catch this.\n    /// - It _could_ lie about its intermediate counters:\n    /// - 1. It could not increment its side-effects correctly\n    /// - 2. It could label its side-effects with counters outside of its start and end counters' range. The kernel\n    /// will catch 2. The kernel will not catch 1., but this would only cause corruption to the private state of the\n    /// malicious contract, and not any other contracts (because a contract can only modify its own state). If a \"good\"\n    /// contract is given _read access_ to a maliciously-counting contract (via an external getter function, or by\n    /// reading historic state from the archive tree directly), and they then make state changes to their _own_ state\n    /// accordingly, that could be dangerous. Developers should be mindful not to trust the claimed innards of external\n    /// contracts unless they have audited/vetted the contracts including vetting the side-effect counter\n    /// incrementation. This is a similar paradigm to Ethereum smart contract development: you must vet external\n    /// contracts that your contract relies upon, and you must not make any presumptions about their claimed behaviour.\n    /// (Hopefully if a contract imports a version of aztec-nr, we will get contract verification tooling that can\n    /// validate the authenticity of the imported aztec-nr package, and hence infer that the side- effect counting will\n    /// be correct, without having to re-audit such logic for every contract).\n    ///\n    fn next_counter(&mut self) -> u32 {\n        let counter = self.side_effect_counter;\n        self.side_effect_counter += 1;\n        counter\n    }\n}\n\nimpl Empty for PrivateContext {\n    fn empty() -> Self {\n        PrivateContext {\n            inputs: PrivateContextInputs::empty(),\n            side_effect_counter: 0 as u32,\n            min_revertible_side_effect_counter: 0 as u32,\n            is_fee_payer: false,\n            args_hash: 0,\n            return_hash: 0,\n            expiration_timestamp: 0,\n            note_hash_read_requests: BoundedVec::new(),\n            nullifier_read_requests: BoundedVec::new(),\n            key_validation_requests_and_separators: BoundedVec::new(),\n            note_hashes: BoundedVec::new(),\n            nullifiers: BoundedVec::new(),\n            private_call_requests: BoundedVec::new(),\n            public_call_requests: BoundedVec::new(),\n            public_teardown_call_request: PublicCallRequest::empty(),\n            l2_to_l1_msgs: BoundedVec::new(),\n            anchor_block_header: BlockHeader::empty(),\n            private_logs: BoundedVec::new(),\n            contract_class_logs_hashes: BoundedVec::new(),\n            last_key_validation_requests: [Option::none(); NUM_KEY_TYPES],\n            expected_non_revertible_side_effect_counter: 0,\n            expected_revertible_side_effect_counter: 0,\n        }\n    }\n}\n"
    },
    "69": {
      "function_locations": [
        {
          "name": "<impl Eq for PublicContext>::eq",
          "start": 3345
        },
        {
          "name": "PublicContext::new",
          "start": 3930
        },
        {
          "name": "PublicContext::emit_public_log_unsafe",
          "start": 4879
        },
        {
          "name": "PublicContext::note_hash_exists",
          "start": 5803
        },
        {
          "name": "PublicContext::l1_to_l2_msg_exists",
          "start": 6816
        },
        {
          "name": "PublicContext::nullifier_exists_unsafe",
          "start": 10031
        },
        {
          "name": "PublicContext::consume_l1_to_l2_message",
          "start": 11961
        },
        {
          "name": "PublicContext::message_portal",
          "start": 14085
        },
        {
          "name": "PublicContext::call_public_function",
          "start": 14975
        },
        {
          "name": "PublicContext::static_call_public_function",
          "start": 16607
        },
        {
          "name": "PublicContext::push_note_hash",
          "start": 18391
        },
        {
          "name": "PublicContext::push_nullifier_unsafe",
          "start": 19837
        },
        {
          "name": "PublicContext::this_address",
          "start": 20427
        },
        {
          "name": "PublicContext::maybe_msg_sender",
          "start": 21522
        },
        {
          "name": "PublicContext::selector",
          "start": 22294
        },
        {
          "name": "PublicContext::get_args_hash",
          "start": 23033
        },
        {
          "name": "PublicContext::transaction_fee",
          "start": 24425
        },
        {
          "name": "PublicContext::chain_id",
          "start": 25014
        },
        {
          "name": "PublicContext::version",
          "start": 25684
        },
        {
          "name": "PublicContext::block_number",
          "start": 26624
        },
        {
          "name": "PublicContext::timestamp",
          "start": 27736
        },
        {
          "name": "PublicContext::min_fee_per_l2_gas",
          "start": 29017
        },
        {
          "name": "PublicContext::min_fee_per_da_gas",
          "start": 29544
        },
        {
          "name": "PublicContext::l2_gas_left",
          "start": 29942
        },
        {
          "name": "PublicContext::da_gas_left",
          "start": 30558
        },
        {
          "name": "PublicContext::is_static_call",
          "start": 31023
        },
        {
          "name": "PublicContext::raw_storage_read",
          "start": 31865
        },
        {
          "name": "PublicContext::storage_read",
          "start": 32723
        },
        {
          "name": "PublicContext::raw_storage_write",
          "start": 33391
        },
        {
          "name": "PublicContext::storage_write",
          "start": 34125
        },
        {
          "name": "<impl Empty for PublicContext>::empty",
          "start": 34250
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/public_context.nr",
      "source": "use crate::{\n    context::gas::GasOpts,\n    hash::{\n        compute_l1_to_l2_message_hash, compute_l1_to_l2_message_nullifier, compute_secret_hash,\n        compute_siloed_nullifier,\n    },\n    oracle::avm,\n};\nuse crate::protocol::{\n    abis::function_selector::FunctionSelector,\n    address::{AztecAddress, EthAddress},\n    constants::{MAX_U32_VALUE, NULL_MSG_SENDER_CONTRACT_ADDRESS},\n    traits::{Empty, FromField, Packable, Serialize, ToField},\n    utils::writer::Writer,\n};\n\n/// # PublicContext\n///\n/// The **main interface** between an #[external(\"public\")] function and the Aztec blockchain.\n///\n/// An instance of the PublicContext is initialized automatically at the outset of every public function, within the\n/// #[external(\"public\")] macro, so you'll never need to consciously instantiate this yourself.\n///\n/// The instance is always named `context`, and it will always be available within the body of every\n/// #[external(\"public\")] function in your smart contract.\n///\n/// Typical usage for a smart contract developer will be to call getter methods of the PublicContext.\n///\n/// _Pushing_ data and requests to the context is mostly handled within aztec-nr's own functions, so typically a smart\n/// contract developer won't need to call any setter methods directly.\n///\n/// ## Responsibilities\n/// - Exposes contextual data to a public function:\n/// - Data relating to how this public function was called:\n/// - msg_sender, this_address\n/// - Data relating to the current blockchain state:\n/// - timestamp, block_number, chain_id, version\n/// - Gas and fee information\n/// - Provides state access:\n/// - Read/write public storage (key-value mapping)\n/// - Check existence of notes and nullifiers (Some patterns use notes & nullifiers to store public (not private)\n/// information)\n///   - Enables consumption of L1->L2 messages.\n/// - Enables calls to other public smart contract functions:\n/// - Writes data to the blockchain:\n/// - Updates to public state variables\n/// - New public logs (for events)\n///   - New L2->L1 messages\n/// - New notes & nullifiers (E.g. pushing public info to notes/nullifiers, or for completing \"partial notes\")\n///\n/// ## Key Differences from Private Execution\n///\n/// Unlike private functions -- which are executed on the user's device and which can only reference historic state --\n/// public functions are executed by a block proposer and are executed \"live\" on the _current_ tip of the chain. This\n/// means public functions can:\n/// - Read and write _current_ public state\n/// - Immediately see the effects of earlier transactions in the same block\n///\n/// Also, public functions are executed within a zkVM (the \"AVM\"), so that they can _revert_ whilst still ensuring\n/// payment to the proposer and prover. (Private functions cannot revert: they either succeed, or they cannot be\n/// included).\n///\n/// ## Optimising Public Functions\n///\n/// Using the AVM to execute public functions means they compile down to \"AVM bytecode\" instead of the ACIR that\n/// private functions (standalone circuits) compile to. Therefore the approach to optimising a public function is\n/// fundamentally different from optimising a public function.\n///\npub struct PublicContext {\n    args_hash: Option<Field>,\n    compute_args_hash: fn() -> Field,\n}\n\nimpl Eq for PublicContext {\n    fn eq(self, other: Self) -> bool {\n        (self.args_hash == other.args_hash)\n        // Can't compare the function compute_args_hash\n    }\n}\n\nimpl PublicContext {\n    /// Creates a new PublicContext instance.\n    ///\n    /// Low-level function: This is called automatically by the #[external(\"public\")] macro, so you shouldn't need to\n    /// be called directly by smart contract developers.\n    ///\n    /// # Arguments\n    /// * `compute_args_hash` - Function to compute the args_hash\n    ///\n    /// # Returns\n    /// * A new PublicContext instance\n    ///\n    pub fn new(compute_args_hash: fn() -> Field) -> Self {\n        PublicContext { args_hash: Option::none(), compute_args_hash }\n    }\n\n    /// Emits a _public_ log that will be visible onchain to everyone.\n    ///\n    /// # Arguments\n    /// * `tag` - A tag placed at `fields[0]` of the emitted log. Nodes index logs by this value, allowing\n    /// clients to efficiently query for matching logs without scanning all of them.\n    /// * `log` - The data to log, must implement Serialize trait.\n    ///\n    /// ## Safety\n    ///\n    /// The `tag` should be domain-separated (e.g. via [`crate::protocol::hash::compute_log_tag`]) to prevent\n    /// collisions between logs from different sources. Without domain separation, two unrelated log types that\n    /// happen to share a raw tag value become indistinguishable. Prefer `self.emit(event)` for events, which\n    /// handles tagging automatically.\n    pub fn emit_public_log_unsafe<T>(_self: Self, tag: Field, log: T)\n    where\n        T: Serialize,\n    {\n        // We use a Writer to serialize the log directly after the tag, avoiding an extra O(n) copy that would\n        // result from serializing first and then prepending the tag.\n        let mut writer: Writer<1 + <T as Serialize>::N> = Writer::new();\n        writer.write(tag);\n        Serialize::stream_serialize(log, &mut writer);\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe { avm::emit_public_log(writer.finish().as_vector()) };\n    }\n\n    /// Checks if a given note hash exists in the note hash tree at a particular leaf_index.\n    ///\n    /// # Arguments\n    /// * `note_hash` - The note hash to check for existence\n    /// * `leaf_index` - The index where the note hash should be located\n    ///\n    /// # Returns\n    /// * `bool` - True if the note hash exists at the specified index\n    ///\n    pub fn note_hash_exists(_self: Self, note_hash: Field, leaf_index: u64) -> bool {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::note_hash_exists(note_hash, leaf_index)\n        }\n    }\n\n    /// Checks if a specific L1-to-L2 message exists in the L1-to-L2 message tree at a particular leaf index.\n    ///\n    /// Common use cases include token bridging, cross-chain governance, and triggering L2 actions based on L1 events.\n    ///\n    /// This function should be called before attempting to consume an L1-to-L2 message.\n    ///\n    /// # Arguments\n    /// * `msg_hash` - Hash of the L1-to-L2 message to check\n    /// * `msg_leaf_index` - The index where the message should be located\n    ///\n    /// # Returns\n    /// * `bool` - True if the message exists at the specified index\n    ///\n    /// # Advanced\n    /// * Uses the AVM l1_to_l2_msg_exists opcode for tree lookup\n    /// * Messages are copied from L1 Inbox to L2 by block proposers\n    ///\n    pub fn l1_to_l2_msg_exists(_self: Self, msg_hash: Field, msg_leaf_index: Field) -> bool {\n        // Safety: AVM opcodes are constrained by the AVM itself TODO(alvaro): Make l1l2msg leaf index a u64 upstream\n        unsafe {\n            avm::l1_to_l2_msg_exists(msg_hash, msg_leaf_index as u64)\n        }\n    }\n\n    /// Returns `true` if an `unsiloed_nullifier` has been emitted by `contract_address`.\n    ///\n    /// Note that unsiloed nullifiers are not the actual values stored in the nullifier tree: they are first siloed via\n    /// [`crate::hash::compute_siloed_nullifier`] with the emitting contract's address.\n    ///\n    /// ## Use Cases\n    ///\n    /// Nullifiers are typically used as a _privacy-preserving_ record of a one-time action, but they can also be used\n    /// to efficiently record _public_ one-time actions as well. This is cheaper than using public storage, and has the\n    /// added benefit of the nullifier being emittable from a private function.\n    ///\n    /// An example is to check whether a contract has been published: we emit a nullifier that is deterministic and\n    /// which has a _public_ preimage.\n    ///\n    /// ## Public vs Private\n    ///\n    /// In general, one should not attempt to prove nullifier non-existence in private, as that will not consider the\n    /// possibility of the nullifier having been emitted in any transaction between the anchor block and the inclusion\n    /// block. Private functions instead prove existence via\n    /// [`crate::context::PrivateContext::assert_nullifier_exists`]\n    /// and 'prove' non-existence by _emitting_ the nullifer, which would cause the transaction to fail if the\n    /// nullifier existed.\n    ///\n    /// This is not the case in public functions, which **do** have access to the tip of the blockchain and so can\n    /// reliably prove whether a nullifier exists or not.\n    ///\n    /// ## Safety\n    ///\n    /// While it is safe to rely on this function's return value to determine if a nullifier exists or not, it is often\n    /// **not** safe to infer additional information from that. In particular, it is **unsafe** to infer that the\n    /// existence of a nullifier emitted from a private function implies that all other side-effects of said private\n    /// execution have been completed, more concretely that any enqueued public calls have been executed.\n    ///\n    /// For example, if a function in contract `A` privately emits nullifier `X` and then enqueues public function `Y`,\n    /// then it is **unsafe** for a contract `B` to infer that `Y` has alredy executed simply because `X` exists.\n    ///\n    /// This is because **all** private transaction effects are committed _before_ enqueued public functions are run\n    /// (in\n    /// order to not reveal detailed timing information about the transaction), so it is possible to observe a\n    /// nullifier that was emitted alongside the enqueuing of a public call **before** said call has been completed.\n    ///\n    /// ## Cost\n    ///\n    /// This emits the `CHECKNULLIFIEREXISTS` opcode, which conceptually performs a merkle inclusion proof on the\n    /// nullifier tree (both when the nullifier exists and when it doesn't).\n    pub fn nullifier_exists_unsafe(_self: Self, unsiloed_nullifier: Field, contract_address: AztecAddress) -> bool {\n        let siloed_nullifier = compute_siloed_nullifier(contract_address, unsiloed_nullifier);\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::nullifier_exists(siloed_nullifier)\n        }\n    }\n\n    /// Consumes a message sent from Ethereum (L1) to Aztec (L2) -- effectively marking it as \"read\".\n    ///\n    /// Use this function if you only want the message to ever be \"referred to\" once. Once consumed using this method,\n    /// the message cannot be consumed again, because a nullifier is emitted. If your use case wants for the message to\n    /// be read unlimited times, then you can always read any historic message from the L1-to-L2 messages tree, using\n    /// the `l1_to_l2_msg_exists` method. Messages never technically get deleted from that tree.\n    ///\n    /// The message will first be inserted into an Aztec \"Inbox\" smart contract on L1. It will not be available for\n    /// consumption immediately. Messages get copied-over from the L1 Inbox to L2 by the next Proposer in batches. So\n    /// you will need to wait until the messages are copied before you can consume them.\n    ///\n    /// # Arguments\n    /// * `content` - The message content that was sent from L1\n    /// * `secret` - Secret fields used for message privacy (if needed)\n    /// * `sender` - Ethereum address that sent the message\n    /// * `leaf_index` - Index of the message in the L1-to-L2 message tree\n    ///\n    /// # Advanced\n    /// * Validates message existence in the L1-to-L2 message tree\n    /// * Prevents double-consumption by emitting a nullifier\n    /// * Message hash is computed from all parameters + chain context\n    /// * Will revert if message doesn't exist or was already consumed\n    ///\n    pub fn consume_l1_to_l2_message<let N: u32>(\n        self: Self,\n        content: Field,\n        secret: [Field; N],\n        sender: EthAddress,\n        leaf_index: Field,\n    ) {\n        let secret_hash = compute_secret_hash(secret);\n        let message_hash = compute_l1_to_l2_message_hash(\n            sender,\n            self.chain_id(),\n            /*recipient=*/\n            self.this_address(),\n            self.version(),\n            content,\n            secret_hash,\n            leaf_index,\n        );\n        let nullifier = compute_l1_to_l2_message_nullifier(message_hash, secret);\n\n        assert(!self.nullifier_exists_unsafe(nullifier, self.this_address()), \"L1-to-L2 message is already nullified\");\n        assert(self.l1_to_l2_msg_exists(message_hash, leaf_index), \"Tried to consume nonexistent L1-to-L2 message\");\n\n        self.push_nullifier_unsafe(nullifier);\n    }\n\n    /// Sends an \"L2 -> L1 message\" from this function (Aztec, L2) to a smart contract on Ethereum (L1). L1 contracts\n    /// which are designed to send/receive messages to/from Aztec are called \"Portal Contracts\".\n    ///\n    /// Common use cases include withdrawals, cross-chain asset transfers, and triggering L1 actions based on L2 state\n    /// changes.\n    ///\n    /// The message will be inserted into an Aztec \"Outbox\" contract on L1, when this transaction's block is proposed\n    /// to L1. Sending the message will not result in any immediate state changes in the target portal contract. The\n    /// message will need to be manually consumed from the Outbox through a separate Ethereum transaction: a user will\n    /// need to call a function of the portal contract -- a function specifically designed to make a call to the Outbox\n    /// to consume the message. The message will only be available for consumption once the _epoch_ proof has been\n    /// submitted. Given that there are multiple Aztec blocks within an epoch, it might take some time for this epoch\n    /// proof to be submitted -- especially if the block was near the start of an epoch.\n    ///\n    /// # Arguments\n    /// * `recipient` - Ethereum address that will receive the message\n    /// * `content` - Message content (32 bytes as a Field element)\n    ///\n    pub fn message_portal(_self: Self, recipient: EthAddress, content: Field) {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe { avm::send_l2_to_l1_msg(recipient, content) };\n    }\n\n    /// Calls a public function on another contract.\n    ///\n    /// Will revert if the called function reverts or runs out of gas.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract to call\n    /// * `function_selector` - Function to call on the target contract\n    /// * `args` - Arguments to pass to the function\n    /// * `gas_opts` - An optional allocation of gas to the called function.\n    ///\n    /// # Returns\n    /// * `[Field]` - Return data from the called function\n    ///\n    pub unconstrained fn call_public_function<let N: u32>(\n        _self: Self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; N],\n        gas_opts: GasOpts,\n    ) -> [Field] {\n        let calldata = [function_selector.to_field()].concat(args);\n\n        avm::call(\n            gas_opts.l2_gas.unwrap_or(MAX_U32_VALUE),\n            gas_opts.da_gas.unwrap_or(MAX_U32_VALUE),\n            contract_address,\n            calldata,\n        );\n        // Use success_copy to determine whether the call succeeded\n        let success = avm::success_copy();\n\n        let result_data = avm::returndata_copy(0, avm::returndata_size());\n        if !success {\n            // Rethrow the revert data.\n            avm::revert(result_data);\n        }\n        result_data\n    }\n\n    /// Makes a read-only call to a public function on another contract.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state or emit events. Any nested\n    /// calls are constrained to also be staticcalls.\n    ///\n    /// Useful for querying data from other contracts safely.\n    ///\n    /// Will revert if the called function reverts or runs out of gas.\n    ///\n    /// # Arguments\n    /// * `contract_address` - Address of the contract to call\n    /// * `function_selector` - Function to call on the target contract\n    /// * `args` - Array of arguments to pass to the called function\n    /// * `gas_opts` - An optional allocation of gas to the called function.\n    ///\n    /// # Returns\n    /// * `[Field]` - Return data from the called function\n    ///\n    pub unconstrained fn static_call_public_function<let N: u32>(\n        _self: Self,\n        contract_address: AztecAddress,\n        function_selector: FunctionSelector,\n        args: [Field; N],\n        gas_opts: GasOpts,\n    ) -> [Field] {\n        let calldata = [function_selector.to_field()].concat(args);\n\n        avm::call_static(\n            gas_opts.l2_gas.unwrap_or(MAX_U32_VALUE),\n            gas_opts.da_gas.unwrap_or(MAX_U32_VALUE),\n            contract_address,\n            calldata,\n        );\n        // Use success_copy to determine whether the call succeeded\n        let success = avm::success_copy();\n\n        let result_data = avm::returndata_copy(0, avm::returndata_size());\n        if !success {\n            // Rethrow the revert data.\n            avm::revert(result_data);\n        }\n        result_data\n    }\n\n    /// Adds a new note hash to the Aztec blockchain's global Note Hash Tree.\n    ///\n    /// Notes are ordinarily constructed and emitted by _private_ functions, to ensure that both the content of the\n    /// note, and the contract that emitted the note, stay private.\n    ///\n    /// There are however some useful patterns whereby a note needs to contain _public_ data. The ability to push a new\n    /// note_hash from a _public_ function means that notes can be injected with public data immediately -- as soon as\n    /// the public value is known. The slower alternative would be to submit a follow-up transaction so that a private\n    /// function can inject the data. Both are possible on Aztec.\n    ///\n    /// Search \"Partial Note\" for a very common pattern which enables a note to be \"partially\" populated with some data\n    /// in a _private_ function, and then later \"completed\" with some data in a public function.\n    ///\n    /// # Arguments\n    /// * `note_hash` - The hash of the note to add to the tree\n    ///\n    /// # Advanced\n    /// * The note hash will be siloed with the contract address by the protocol\n    ///\n    pub fn push_note_hash(_self: Self, note_hash: Field) {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe { avm::emit_note_hash(note_hash) };\n    }\n\n    /// Creates a new [nullifier](crate::nullifier).\n    ///\n    /// While nullifiers are primarily intended as a _privacy-preserving_ record of a one-time action, they can also\n    /// be used to efficiently record _public_ one-time actions. This function allows creating nullifiers from public\n    /// contract functions, which behave just like those created from private functions.\n    ///\n    /// ## Safety\n    ///\n    /// This is a low-level function that must be used with great care to avoid subtle corruption of contract state.\n    ///\n    /// In particular, callers must ensure all nullifiers created by a contract are properly domain-separated, so that\n    /// unrelated components don't interfere with one another (e.g. a transaction nullifier accidentally marking a\n    /// variable as initialized). Note nullifiers should only be created via\n    /// [`crate::context::PrivateContext::push_nullifier_for_note_hash`].\n    ///\n    /// ## Advanced\n    ///\n    /// The raw `nullifier` is not what is inserted into the Aztec state tree: it will be first siloed by contract\n    /// address via [`crate::protocol::hash::compute_siloed_nullifier`] in order to prevent accidental or malicious\n    /// interference of nullifiers from different contracts.\n    pub fn push_nullifier_unsafe(_self: Self, nullifier: Field) {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe { avm::emit_nullifier(nullifier) };\n    }\n\n    /// Returns the address of the current contract being executed.\n    ///\n    /// This is equivalent to `address(this)` in Solidity (hence the name). Use this to identify the current contract's\n    /// address, commonly needed for access control or when interacting with other contracts.\n    ///\n    /// # Returns\n    /// * `AztecAddress` - The contract address of the current function being executed.\n    ///\n    pub fn this_address(_self: Self) -> AztecAddress {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::address()\n        }\n    }\n\n    /// Returns the contract address that initiated this function call.\n    ///\n    /// This is similar to `msg.sender` in Solidity (hence the name).\n    ///\n    /// Important Note: If the calling function is a _private_ function, then it had the option of hiding its address\n    /// when enqueuing this public function call. In such cases, this method will return `Option<AztecAddress>::none`.\n    /// If the calling function is a _public_ function, it will always return an `Option<AztecAddress>::some` (i.e. a\n    /// non-null value).\n    ///\n    /// # Returns\n    /// * `Option<AztecAddress>` - The address of the smart contract that called this function (be it an app contract\n    /// or a user's account contract).\n    ///\n    /// # Advanced\n    /// * Value is provided by the AVM sender opcode\n    /// * In nested calls, this is the immediate caller, not the original transaction sender\n    ///\n    pub fn maybe_msg_sender(_self: Self) -> Option<AztecAddress> {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        let maybe_msg_sender = unsafe { avm::sender() };\n        if maybe_msg_sender == NULL_MSG_SENDER_CONTRACT_ADDRESS {\n            Option::none()\n        } else {\n            Option::some(maybe_msg_sender)\n        }\n    }\n\n    /// Returns the function selector of the currently-executing function.\n    ///\n    /// This is similar to `msg.sig` in Solidity, returning the first 4 bytes of the function signature.\n    ///\n    /// # Returns\n    /// * `FunctionSelector` - The 4-byte function identifier\n    ///\n    /// # Advanced\n    /// * Extracted from the first element of calldata\n    /// * Used internally for function dispatch in the AVM\n    ///\n    pub fn selector(_self: Self) -> FunctionSelector {\n        // The selector is the first element of the calldata when calling a public function through dispatch.\n        // Safety: AVM opcodes are constrained by the AVM itself.\n        let raw_selector: [Field; 1] = unsafe { avm::calldata_copy(0, 1) };\n        FunctionSelector::from_field(raw_selector[0])\n    }\n\n    /// Returns the hash of the arguments passed to the current function.\n    ///\n    /// Very low-level function: The #[external(\"public\")] macro uses this internally. Smart contract developers\n    /// typically won't need to access this directly as arguments are automatically made available.\n    ///\n    /// # Returns\n    /// * `Field` - Hash of the function arguments\n    ///\n    pub fn get_args_hash(mut self) -> Field {\n        if !self.args_hash.is_some() {\n            self.args_hash = Option::some((self.compute_args_hash)());\n        }\n\n        self.args_hash.unwrap_unchecked()\n    }\n\n    /// Returns the \"transaction fee\" for the current transaction. This is the final tx fee that will be deducted from\n    /// the fee_payer's \"fee-juice\" balance (in the protocol's Base Rollup circuit).\n    ///\n    /// # Returns\n    /// * `Field` - The actual, final cost of the transaction, taking into account: the actual gas used during the\n    /// setup and app-logic phases, and the fixed amount of gas that's been allocated by the user for the teardown\n    /// phase. I.e. effectiveL2FeePerGas * l2GasUsed + effectiveDAFeePerGas * daGasUsed\n    ///\n    /// This will return `0` during the \"setup\" and \"app-logic\" phases of tx execution (because the final tx fee is not\n    /// known at that time). This will only return a nonzero value during the \"teardown\" phase of execution, where the\n    /// final tx fee can actually be computed.\n    ///\n    /// Regardless of _when_ this function is called during the teardown phase, it will always return the same final tx\n    /// fee value. The teardown phase does not consume a variable amount of gas: it always consumes a pre-allocated\n    /// amount of gas, as specified by the user when they generate their tx.\n    ///\n    pub fn transaction_fee(_self: Self) -> Field {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::transaction_fee()\n        }\n    }\n\n    /// Returns the chain ID of the current network.\n    ///\n    /// This is similar to `block.chainid` in Solidity. Returns the unique identifier for the blockchain network this\n    /// transaction is executing on.\n    ///\n    /// Helps prevent cross-chain replay attacks. Useful if implementing multi-chain contract logic.\n    ///\n    /// # Returns\n    /// * `Field` - The chain ID as a field element\n    ///\n    pub fn chain_id(_self: Self) -> Field {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::chain_id()\n        }\n    }\n\n    /// Returns the Aztec protocol version that this transaction is executing under. Different versions may have\n    /// different rules, opcodes, or cryptographic primitives.\n    ///\n    /// This is similar to how Ethereum has different EVM versions.\n    ///\n    /// Useful for forward/backward compatibility checks\n    ///\n    /// Not to be confused with contract versions; this is the protocol version.\n    ///\n    /// # Returns\n    /// * `Field` - The protocol version as a field element\n    ///\n    pub fn version(_self: Self) -> Field {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::version()\n        }\n    }\n    /// Returns the current block number.\n    ///\n    /// This is similar to `block.number` in Solidity.\n    ///\n    /// Note: the current block number is only available within a public function (as opposed to a private function).\n    ///\n    /// Note: the time intervals between blocks should not be relied upon as being consistent:\n    /// - Timestamps of blocks fall within a range, rather than at exact regular intervals.\n    /// - Slots can be missed.\n    /// - Protocol upgrades can completely change the intervals between blocks (and indeed the current roadmap plans to\n    /// reduce the time between blocks, eventually). Use `context.timestamp()` for more-reliable time-based logic.\n    ///\n    /// # Returns\n    /// * `u32` - The current block number\n    ///\n    pub fn block_number(_self: Self) -> u32 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::block_number()\n        }\n    }\n\n    /// Returns the timestamp of the current block.\n    ///\n    /// This is similar to `block.timestamp` in Solidity.\n    ///\n    /// All functions of all transactions in a block share the exact same timestamp (even though technically each\n    /// transaction is executed one-after-the-other).\n    ///\n    /// Important note: Timestamps of Aztec blocks are not at reliably-fixed intervals. The proposer of the block has\n    /// some flexibility to choose a timestamp which is in a valid _range_: Obviously the timestamp of this block must\n    /// be strictly greater than that of the previous block, and must must be less than the timestamp of whichever\n    /// ethereum block the aztec block is proposed to. Furthermore, if the timestamp is not deemed close enough to the\n    /// actual current time, the committee of validators will not attest to the block.\n    ///\n    /// # Returns\n    /// * `u64` - Unix timestamp in seconds\n    ///\n    pub fn timestamp(_self: Self) -> u64 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::timestamp()\n        }\n    }\n\n    /// Returns the fee per unit of L2 gas for this transaction (aka the \"L2 gas price\"), as chosen by the user.\n    ///\n    /// L2 gas covers the cost of executing public functions and handling side-effects within the AVM.\n    ///\n    /// # Returns\n    /// * `u128` - Fee per unit of L2 gas\n    ///\n    /// Wallet developers should be mindful that the choice of gas price (which is publicly visible) can leak\n    /// information about the user, e.g.:\n    /// - which wallet software the user is using;\n    /// - the amount of time which has elapsed from the time the user's wallet chose a gas price (at the going rate),\n    /// to the time of tx submission. This can give clues about the proving time, and hence the nature of the tx.\n    /// - the urgency of the transaction (which is kind of unavoidable, if the tx is indeed urgent).\n    /// - the wealth of the user.\n    /// - the exact user (if the gas price is explicitly chosen by the user to be some unique number like 0.123456789,\n    /// or their favorite number). Wallet devs might wish to consider fuzzing the choice of gas price.\n    ///\n    pub fn min_fee_per_l2_gas(_self: Self) -> u128 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::min_fee_per_l2_gas()\n        }\n    }\n\n    /// Returns the fee per unit of DA (Data Availability) gas (aka the \"DA gas price\").\n    ///\n    /// DA gas covers the cost of making transaction data available on L1.\n    ///\n    /// See the warning in `min_fee_per_l2_gas` for how gas prices can be leaky.\n    ///\n    /// # Returns\n    /// * `u128` - Fee per unit of DA gas\n    ///\n    pub fn min_fee_per_da_gas(_self: Self) -> u128 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::min_fee_per_da_gas()\n        }\n    }\n\n    /// Returns the remaining L2 gas available for this transaction.\n    ///\n    /// Different AVM opcodes consume different amounts of gas.\n    ///\n    /// # Returns\n    /// * `u32` - Remaining L2 gas units\n    ///\n    pub fn l2_gas_left(_self: Self) -> u32 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::l2_gas_left()\n        }\n    }\n\n    /// Returns the remaining DA (Data Availability) gas available for this transaction.\n    ///\n    /// DA gas is consumed when emitting data that needs to be made available on L1, such as public logs or state\n    /// updates. All of the side-effects from the private part of the tx also consume DA gas before execution of any\n    /// public functions even begins.\n    ///\n    /// # Returns\n    /// * `u32` - Remaining DA gas units\n    ///\n    pub fn da_gas_left(_self: Self) -> u32 {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::da_gas_left()\n        }\n    }\n\n    /// Checks if the current execution is within a staticcall context, where no state changes or logs are allowed to\n    /// be emitted (by this function or any nested function calls).\n    ///\n    /// # Returns\n    /// * `bool` - True if in staticcall context, false otherwise\n    ///\n    pub fn is_static_call(_self: Self) -> bool {\n        // Safety: AVM opcodes are constrained by the AVM itself\n        unsafe {\n            avm::is_static_call()\n        }\n    }\n\n    /// Reads raw field values from public storage. Reads N consecutive storage slots starting from the given slot.\n    ///\n    /// Very low-level function. Users should typically use the public state variable abstractions to perform reads:\n    /// PublicMutable & PublicImmutable.\n    ///\n    /// # Arguments\n    /// * `storage_slot` - The starting storage slot to read from\n    ///\n    /// # Returns\n    /// * `[Field; N]` - Array of N field values from consecutive storage slots\n    ///\n    /// # Generic Parameters\n    /// * `N` - the number of consecutive slots to return, starting from the `storage_slot`.\n    ///\n    pub fn raw_storage_read<let N: u32>(self: Self, storage_slot: Field) -> [Field; N] {\n        let mut out = [0; N];\n        for i in 0..N {\n            // Safety: AVM opcodes are constrained by the AVM itself\n            out[i] = unsafe { avm::storage_read(storage_slot + i as Field, self.this_address().to_field()) };\n        }\n        out\n    }\n\n    /// Reads a typed value from public storage.\n    ///\n    /// Low-level function. Users should typically use the public state variable abstractions to perform reads:\n    /// PublicMutable & PublicImmutable.\n    ///\n    /// # Arguments\n    /// * `storage_slot` - The storage slot to read from\n    ///\n    /// # Returns\n    /// * `T` - The deserialized value from storage\n    ///\n    /// # Generic Parameters\n    /// * `T` - The type that the caller expects to read from the `storage_slot`.\n    ///\n    pub fn storage_read<T>(self, storage_slot: Field) -> T\n    where\n        T: Packable,\n    {\n        T::unpack(self.raw_storage_read(storage_slot))\n    }\n\n    /// Writes raw field values to public storage. Writes to N consecutive storage slots starting from the given slot.\n    ///\n    /// Very low-level function. Users should typically use the public state variable abstractions to perform writes:\n    /// PublicMutable & PublicImmutable.\n    ///\n    /// Public storage writes take effect immediately.\n    ///\n    /// # Arguments\n    /// * `storage_slot` - The starting storage slot to write to\n    /// * `values` - Array of N Fields to write to storage\n    ///\n    pub fn raw_storage_write<let N: u32>(_self: Self, storage_slot: Field, values: [Field; N]) {\n        for i in 0..N {\n            // Safety: AVM opcodes are constrained by the AVM itself\n            unsafe { avm::storage_write(storage_slot + i as Field, values[i]) };\n        }\n    }\n\n    /// Writes a typed value to public storage.\n    ///\n    /// Low-level function. Users should typically use the public state variable abstractions to perform writes:\n    /// PublicMutable & PublicImmutable.\n    ///\n    /// # Arguments\n    /// * `storage_slot` - The storage slot to write to\n    /// * `value` - The typed value to write to storage\n    ///\n    /// # Generic Parameters\n    /// * `T` - The type to write to storage.\n    ///\n    pub fn storage_write<T>(self, storage_slot: Field, value: T)\n    where\n        T: Packable,\n    {\n        self.raw_storage_write(storage_slot, value.pack());\n    }\n}\n\nimpl Empty for PublicContext {\n    fn empty() -> Self {\n        PublicContext::new(|| 0)\n    }\n}\n"
    },
    "70": {
      "function_locations": [
        {
          "name": "ReturnsHash::new",
          "start": 655
        },
        {
          "name": "ReturnsHash::get_preimage",
          "start": 887
        },
        {
          "name": "test::retrieves_preimage",
          "start": 1821
        },
        {
          "name": "test::retrieves_empty_preimage",
          "start": 2244
        },
        {
          "name": "test::rejects_bad_preimage",
          "start": 2669
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/returns_hash.nr",
      "source": "use crate::{hash::hash_args, oracle::execution_cache};\nuse crate::protocol::traits::Deserialize;\n\n/// The hash of a private contract function call's return value.\n///\n/// Use [`ReturnsHash::get_preimage`] to get the underlying value.\n///\n/// The kernels don't process the actual return values but instead their hashes, so it is up to contracts to populate\n/// oracles with the preimages of these hashes on return to make them available to their callers.\n///\n/// Public calls don't utilize this mechanism since the AVM does process the full return values.\npub struct ReturnsHash {\n    hash: Field,\n}\n\nimpl ReturnsHash {\n    pub fn new(hash: Field) -> Self {\n        ReturnsHash { hash }\n    }\n\n    /// Fetches the underlying return value from an oracle, constraining that it corresponds to the return data hash.\n    pub fn get_preimage<T>(self) -> T\n    where\n        T: Deserialize,\n    {\n        // Safety: We verify that the value returned by `load` is the preimage of `hash`, fully constraining it. If `T`\n        // is `()`, then `preimage` must be an array of length 0 (since that is `()`'s deserialization length).\n        // `hash_args` handles empty arrays following the protocol rules (i.e. an empty args array is signaled with a\n        // zero hash), correctly constraining `self.hash`.\n        let preimage = unsafe { execution_cache::load(self.hash) };\n        assert_eq(self.hash, hash_args(preimage), \"Preimage mismatch\");\n\n        Deserialize::deserialize(preimage)\n    }\n}\n\nmod test {\n    use crate::{\n        hash::hash_args,\n        oracle::execution_cache,\n        test::{helpers::test_environment::TestEnvironment, mocks::MockStruct},\n    };\n    use crate::protocol::traits::Serialize;\n    use super::ReturnsHash;\n    use std::test::OracleMock;\n\n    #[test]\n    unconstrained fn retrieves_preimage() {\n        let env = TestEnvironment::new();\n        env.private_context(|_| {\n            let value = MockStruct::new(4, 7);\n            let serialized = value.serialize();\n\n            let hash = hash_args(serialized);\n            execution_cache::store(serialized, hash);\n\n            assert_eq(ReturnsHash::new(hash).get_preimage(), value);\n        });\n    }\n\n    #[test]\n    unconstrained fn retrieves_empty_preimage() {\n        let env = TestEnvironment::new();\n        env.private_context(|_| {\n            let value = ();\n            let serialized = [];\n\n            let hash = hash_args(serialized);\n            execution_cache::store(serialized, hash);\n\n            assert_eq(ReturnsHash::new(hash).get_preimage(), value);\n        });\n    }\n\n    #[test(should_fail_with = \"Preimage mismatch\")]\n    unconstrained fn rejects_bad_preimage() {\n        let value = MockStruct::new(4, 7);\n        let serialized = value.serialize();\n\n        let mut bad_serialized = serialized;\n        bad_serialized[0] += 1;\n\n        let hash = hash_args(serialized);\n\n        let _ = OracleMock::mock(\"aztec_prv_getHashPreimage\").returns(bad_serialized);\n        assert_eq(ReturnsHash::new(hash).get_preimage(), value);\n    }\n}\n"
    },
    "71": {
      "function_locations": [
        {
          "name": "<impl From<UtilityContextData> for UtilityContext>::from",
          "start": 560
        },
        {
          "name": "UtilityContext::new",
          "start": 751
        },
        {
          "name": "UtilityContext::at",
          "start": 858
        },
        {
          "name": "UtilityContext::block_header",
          "start": 1230
        },
        {
          "name": "UtilityContext::block_number",
          "start": 1302
        },
        {
          "name": "UtilityContext::timestamp",
          "start": 1386
        },
        {
          "name": "UtilityContext::this_address",
          "start": 1479
        },
        {
          "name": "UtilityContext::maybe_msg_sender",
          "start": 2268
        },
        {
          "name": "UtilityContext::version",
          "start": 2472
        },
        {
          "name": "UtilityContext::chain_id",
          "start": 2552
        },
        {
          "name": "UtilityContext::raw_storage_read",
          "start": 2699
        },
        {
          "name": "UtilityContext::storage_read",
          "start": 2891
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/context/utility_context.nr",
      "source": "use crate::oracle::{execution::{get_utility_context, UtilityContextData}, storage::storage_read};\nuse crate::protocol::{\n    abis::block_header::BlockHeader, address::AztecAddress, constants::NULL_MSG_SENDER_CONTRACT_ADDRESS,\n    traits::Packable,\n};\n\n// If you'll modify this struct don't forget to update utility_context.ts as well.\npub struct UtilityContext {\n    block_header: BlockHeader,\n    contract_address: AztecAddress,\n    msg_sender: AztecAddress,\n}\n\nimpl From<UtilityContextData> for UtilityContext {\n    fn from(data: UtilityContextData) -> Self {\n        Self { block_header: data.block_header, contract_address: data.contract_address, msg_sender: data.msg_sender }\n    }\n}\n\nimpl UtilityContext {\n    pub unconstrained fn new() -> Self {\n        get_utility_context()\n    }\n\n    pub unconstrained fn at(contract_address: AztecAddress) -> Self {\n        // We get a context with default contract address, and then we construct the final context with the provided\n        // contract address.\n        let default_context = get_utility_context();\n\n        Self { block_header: default_context.block_header, contract_address, msg_sender: default_context.msg_sender }\n    }\n\n    pub fn block_header(self) -> BlockHeader {\n        self.block_header\n    }\n\n    pub fn block_number(self) -> u32 {\n        self.block_header.block_number()\n    }\n\n    pub fn timestamp(self) -> u64 {\n        self.block_header.timestamp()\n    }\n\n    pub fn this_address(self) -> AztecAddress {\n        self.contract_address\n    }\n\n    /// Returns the address that initiated this utility call.\n    ///\n    /// This is similar to `msg.sender` in Solidity (hence the name). A utility function called by another contract\n    /// (via a nested utility call) sees that contract's address. A utility function invoked directly (e.g. by a wallet\n    /// or dApp) has no caller and sees `Option::none`.\n    ///\n    /// Important Note: utility functions are simulated client-side and never proven, so this value is whatever the\n    /// simulator (PXE) set it to: nothing about it is verified onchain. It exists to assist simulation in a\n    /// cooperative environment and must not be relied on as a security guarantee.\n    pub unconstrained fn maybe_msg_sender(self) -> Option<AztecAddress> {\n        if self.msg_sender == NULL_MSG_SENDER_CONTRACT_ADDRESS {\n            Option::none()\n        } else {\n            Option::some(self.msg_sender)\n        }\n    }\n\n    pub fn version(self) -> Field {\n        self.block_header.version()\n    }\n\n    pub fn chain_id(self) -> Field {\n        self.block_header.chain_id()\n    }\n\n    pub unconstrained fn raw_storage_read<let N: u32>(self: Self, storage_slot: Field) -> [Field; N] {\n        storage_read(self.block_header, self.this_address(), storage_slot)\n    }\n\n    pub unconstrained fn storage_read<T>(self, storage_slot: Field) -> T\n    where\n        T: Packable,\n    {\n        T::unpack(self.raw_storage_read(storage_slot))\n    }\n}\n"
    },
    "72": {
      "function_locations": [
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::new",
          "start": 5863
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::msg_sender",
          "start": 6736
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::emit",
          "start": 8509
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::call",
          "start": 11583
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::view",
          "start": 12336
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::enqueue",
          "start": 13869
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::enqueue_view",
          "start": 14531
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::enqueue_incognito",
          "start": 16825
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::enqueue_view_incognito",
          "start": 17540
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::set_as_teardown",
          "start": 19340
        },
        {
          "name": "ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility>::set_as_teardown_incognito",
          "start": 19907
        },
        {
          "name": "PrivateUtilityCalls<CallSelf>::call",
          "start": 22307
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/contract_self/contract_self_private.nr",
      "source": "//! The `self` contract value for private execution contexts.\n\nuse crate::{\n    context::{calls::{PrivateCall, PrivateStaticCall, PublicCall, PublicStaticCall, UtilityCall}, PrivateContext},\n    event::{event_emission::emit_event_in_private, event_interface::EventInterface, EventMessage},\n    oracle::call_utility_function::call_utility_function,\n};\nuse crate::protocol::{address::AztecAddress, traits::{Deserialize, Serialize}};\n\n/// Core interface for interacting with aztec-nr contract features in private execution contexts.\n///\n/// This struct is automatically injected into every [`external`](crate::macros::functions::external) and\n/// [`internal`](crate::macros::functions::internal) contract function marked with `\"private\"` by the Aztec macro\n/// system and is accessible through the `self` variable.\n///\n/// ## Usage in Contract Functions\n///\n/// Once injected, you can use `self` to:\n/// - Access storage: `self.storage.balances.at(owner).read()`\n/// - Call contracts: `self.call(Token::at(address).transfer(recipient, amount))`\n/// - Emit events: `self.emit(event).deliver_to(recipient, delivery_mode)`\n/// - Get the contract address: `self.address`\n/// - Get the caller: `self.msg_sender()`\n/// - Access low-level Aztec.nr APIs through the context: `self.context`\n///\n/// ## Example\n///\n/// ```noir\n/// #[external(\"private\")]\n/// fn withdraw(amount: u128, recipient: AztecAddress) {\n///     // Get the caller of this function\n///     let sender = self.msg_sender();\n///\n///     // Access storage\n///     let token = self.storage.donation_token.get_note().get_address();\n///\n///     // Call contracts\n///     self.call(Token::at(token).transfer(recipient, amount));\n/// }\n/// ```\n///\n/// ## Type Parameters\n///\n/// - `Storage`: The contract's storage struct (defined with [`storage`](crate::macros::storage::storage), or `()` if\n/// the contract has no storage\n/// - `CallSelf`: Macro-generated type for calling contract's own non-view functions\n/// - `EnqueueSelf`: Macro-generated type for enqueuing calls to the contract's own non-view functions\n/// - `CallSelfStatic`: Macro-generated type for calling contract's own view functions\n/// - `EnqueueSelfStatic`: Macro-generated type for enqueuing calls to the contract's own view functions\n/// - `CallInternal`: Macro-generated type for calling internal functions\n/// - `CallSelfUtility`: Macro-generated type for calling the contract's own utility functions\npub struct ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility> {\n    /// The address of this contract\n    pub address: AztecAddress,\n\n    /// The contract's storage instance, representing the struct to which the\n    /// [`storage`](crate::macros::storage::storage) macro was applied in your contract. If the contract has no\n    /// storage, the type of this will be `()`.\n    ///\n    /// This storage instance is specialized for the current execution context (private) and\n    /// provides access to the contract's state variables.\n    ///\n    /// ## Developer Note\n    ///\n    /// If you've arrived here while trying to access your contract's storage while the `Storage` generic type is set\n    /// to unit type `()`, it means you haven't yet defined a Storage struct using the\n    /// [`storage`](crate::macros::storage::storage) macro in your contract. For guidance on setting this up, please\n    /// refer to our docs: https://docs.aztec.network/developers/docs/guides/smart_contracts/storage\n    pub storage: Storage,\n\n    /// The private execution context.\n    pub context: &mut PrivateContext,\n\n    /// Provides type-safe methods for calling this contract's own non-view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.call_self.some_private_function(args)\n    /// ```\n    pub call_self: CallSelf,\n\n    /// Provides type-safe methods for enqueuing calls to this contract's own non-view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.enqueue_self.some_public_function(args)\n    /// ```\n    pub enqueue_self: EnqueueSelf,\n\n    /// Provides type-safe methods for calling this contract's own view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.call_self_static.some_view_function(args)\n    /// ```\n    pub call_self_static: CallSelfStatic,\n\n    /// Provides type-safe methods for enqueuing calls to the contract's own view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.enqueue_self_static.some_public_view_function(args)\n    /// ```\n    pub enqueue_self_static: EnqueueSelfStatic,\n\n    /// Provides type-safe methods for calling internal functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.internal.some_internal_function(args)\n    /// ```\n    pub internal: CallInternal,\n\n    /// A struct that allows for ergonomic calling of utility functions from this private context.\n    ///\n    /// Example API:\n    /// ```noir\n    /// // Safety: result is unconstrained\n    /// unsafe { self.utility.call(MyContract::at(address).my_utility_function(args)) }\n    /// ```\n    pub utility: PrivateUtilityCalls<CallSelfUtility>,\n}\n\nimpl<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility> ContractSelfPrivate<Storage, CallSelf, EnqueueSelf, CallSelfStatic, EnqueueSelfStatic, CallInternal, CallSelfUtility> {\n    /// Creates a new `ContractSelfPrivate` instance for a private function.\n    ///\n    /// This constructor is called automatically by the macro system and should not be called directly.\n    pub fn new(\n        context: &mut PrivateContext,\n        storage: Storage,\n        call_self: CallSelf,\n        enqueue_self: EnqueueSelf,\n        call_self_static: CallSelfStatic,\n        enqueue_self_static: EnqueueSelfStatic,\n        internal: CallInternal,\n        utility: PrivateUtilityCalls<CallSelfUtility>,\n    ) -> Self {\n        Self {\n            context,\n            storage,\n            address: context.this_address(),\n            call_self,\n            enqueue_self,\n            call_self_static,\n            enqueue_self_static,\n            internal,\n            utility,\n        }\n    }\n\n    /// The address of the contract address that made this function call.\n    ///\n    /// This is similar to Solidity's `msg.sender` value.\n    ///\n    /// ## Transaction Entrypoints\n    ///\n    /// As there are no EOAs (externally owned accounts) in Aztec, unlike on Ethereum, the first contract function\n    /// executed in a transaction (i.e. transaction entrypoint) does **not** have a caller. This function panics when\n    /// executed in such a context.\n    ///\n    /// If you need to handle these cases, use [`PrivateContext::maybe_msg_sender`].\n    pub fn msg_sender(self) -> AztecAddress {\n        self.context.maybe_msg_sender().unwrap()\n    }\n\n    /// Emits an event privately.\n    ///\n    /// Unlike public events, private events do not reveal their contents publicly. They instead create an\n    /// [`EventMessage`] containing the private event information, which **MUST** be delivered to a recipient via\n    /// [`EventMessage::deliver_to`] in order for them to learn about the event. Multiple recipients can have the same\n    /// message be delivered to them.\n    ///\n    /// # Example\n    /// ```noir\n    /// #[event]\n    /// struct Transfer { from: AztecAddress, to: AztecAddress, amount: u128 }\n    ///\n    /// #[external(\"private\")]\n    /// fn transfer(to: AztecAddress, amount: u128) {\n    ///     let from = self.msg_sender();\n    ///\n    ///     let message: EventMessage = self.emit(Transfer { from, to, amount });\n    ///     message.deliver_to(from, MessageDelivery::offchain());\n    ///     message.deliver_to(to, MessageDelivery::onchain_constrained());\n    /// }\n    /// ```\n    ///\n    /// # Cost\n    ///\n    /// Private event emission always results in the creation of a nullifer, which acts as a commitment to the event\n    /// and is used by third parties to verify its authenticity. See [`EventMessage::deliver_to`] for the costs\n    /// associated to delivery.\n    ///\n    /// # Privacy\n    ///\n    /// The nullifier created when emitting a private event leaks nothing about the content of the event - it's a\n    /// commitment that includes a random value, so even with full knowledge of the event preimage determining if an\n    /// event was emitted or not requires brute-forcing the entire `Field` space.\n    pub fn emit<Event>(&mut self, event: Event) -> EventMessage<Event>\n    where\n        Event: EventInterface + Serialize,\n    {\n        emit_event_in_private(self.context, event)\n    }\n\n    /// Makes a private contract call.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the private function to invoke.\n    ///\n    /// # Returns\n    /// * `T` - Whatever data the called function has returned.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.call(Token::at(address).transfer_in_private(recipient, amount));\n    /// ```\n    ///\n    /// This enables contracts to interact with each other while maintaining privacy. This \"composability\" of private\n    /// contract functions is a key feature of the Aztec network.\n    ///\n    /// If a user's transaction includes multiple private function calls, then by the design of Aztec, the following\n    /// information will remain private[1]:\n    /// - The function selectors and contract addresses of all private function calls will remain private, so an\n    /// observer of the public mempool will not be able to look at a tx and deduce which private functions have been\n    /// executed.\n    /// - The arguments and return values of all private function calls will remain private.\n    /// - The person who initiated the tx will remain private.\n    /// - The notes and nullifiers and private logs that are emitted by all private function calls will (if designed\n    /// well) not leak any user secrets, nor leak which functions have been executed.\n    ///\n    /// [1] Caveats: Some of these privacy guarantees depend on how app developers design their smart contracts. Some\n    /// actions _can_ leak information, such as:\n    /// - Calling an internal public function.\n    /// - Calling a public function and not setting msg_sender to Option::none (see\n    /// https://github.com/AztecProtocol/aztec-packages/pull/16433)\n    /// - Calling any public function will always leak details about the nature of the transaction, so devs should be\n    /// careful in their contract designs. If it can be done in a private function, then that will give the best\n    /// privacy.\n    /// - Not padding the side-effects of a tx to some standardized, uniform size. The kernel circuits can take hints\n    /// to pad side-effects, so a wallet should be able to request for a particular amount of padding. Wallets should\n    /// ideally agree on some standard.\n    /// - Padding should include:\n    /// - Padding the lengths of note & nullifier arrays\n    /// - Padding private logs with random fields, up to some standardized size. See also:\n    /// https://docs.aztec.network/developers/resources/considerations/privacy_considerations\n    ///\n    /// # Advanced\n    /// * The call is added to the private call stack and executed by kernel circuits after this function completes\n    /// * The called function can modify its own contract's private state\n    /// * Side effects from the called function are included in this transaction\n    /// * The call inherits the current transaction's context and gas limits\n    ///\n    pub fn call<let M: u32, let N: u32, T>(&mut self, call: PrivateCall<M, N, T>) -> T\n    where\n        T: Deserialize,\n    {\n        call.call(self.context)\n    }\n\n    /// Makes a read-only private contract call.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state, emit L2->L1 messages, nor\n    /// emit events. Any nested calls are constrained to also be static calls.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the read-only private function to invoke.\n    ///\n    /// # Returns\n    /// * `T` - Whatever data the called function has returned.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.view(Token::at(address).balance_of_private(recipient));\n    /// ```\n    pub fn view<let M: u32, let N: u32, T>(&mut self, call: PrivateStaticCall<M, N, T>) -> T\n    where\n        T: Deserialize,\n    {\n        call.view(self.context)\n    }\n\n    /// Enqueues a public contract call function.\n    ///\n    /// Unlike private functions which execute immediately on the user's device, public function calls are \"enqueued\"\n    /// and executed some time later by a block proposer.\n    ///\n    /// This means a public function cannot return any values back to a private function, because by the time the\n    /// public function is being executed, the private function which called it has already completed execution. (In\n    /// fact, the private function has been executed and proven, along with all other private function calls of the\n    /// user's tx. A single proof of the tx has been submitted to the Aztec network, and some time later a proposer has\n    /// picked the tx up from the mempool and begun executing all of the enqueued public functions).\n    ///\n    /// # Privacy warning Enqueueing a public function call is an inherently leaky action. Many interesting applications will require some interaction with public state, but smart contract developers should try to use public function calls sparingly, and carefully. _Internal_ public function calls are especially leaky, because they completely leak which private contract made the call. See also: https://docs.aztec.network/developers/resources/considerations/privacy_considerations\n    ///\n    /// # Arguments\n    /// * `call` - The interface representing the public function to enqueue.\n    pub fn enqueue<let M: u32, let N: u32, T>(&mut self, call: PublicCall<M, N, T>) {\n        call.enqueue(self.context)\n    }\n\n    /// Enqueues a read-only public contract call function.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state, emit L2->L1 messages, nor\n    /// emit events. Any nested calls are constrained to also be static calls.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the read-only public function to enqueue.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.enqueue_view(MyContract::at(address).assert_timestamp_less_than(timestamp));\n    /// ```\n    pub fn enqueue_view<let M: u32, let N: u32, T>(&mut self, call: PublicStaticCall<M, N, T>) {\n        call.enqueue_view(self.context)\n    }\n\n    /// Enqueues a privacy-preserving public contract call function.\n    ///\n    /// This is the same as [`ContractSelfPrivate::enqueue`], except it hides this calling contract's address from the\n    /// target public function (i.e. [`ContractSelfPrivate::msg_sender`] will panic).\n    ///\n    /// This means the origin of the call (msg_sender) will not be publicly visible to any blockchain observers, nor to\n    /// the target public function. If the target public function reads `self.msg_sender()` the call will revert.\n    ///\n    /// NOTES:\n    /// - Not all public functions will accept a msg_sender of \"none\". Many public functions will require that\n    /// msg_sender is \"some\" and will revert otherwise. Therefore, if using `enqueue_incognito`, you must understand\n    /// whether the function you're calling will accept a msg_sender of \"none\". Lots of public bookkeeping patterns\n    /// rely on knowing which address made the call, so as to ascribe state against the caller's address. (There are\n    /// patterns whereby bookkeeping could instead be done in private-land).\n    /// - If you are enqueueing a call to an _internal_ public function (i.e. a public function that will only accept\n    /// calls from other functions of its own contract), then by definition a call to it cannot possibly be\n    /// \"incognito\": the msg_sender must be its own address, and indeed the called public function will assert this.\n    /// Tl;dr this is not usable for enqueued internal public calls.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the public function to enqueue.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.enqueue_incognito(Token::at(address).increase_total_supply_by(amount));\n    /// ```\n    ///\n    /// Advanced:\n    /// - The kernel circuits will permit _any_ private function to set the msg_sender field of any enqueued public\n    /// function call to NULL_MSG_SENDER_CONTRACT_ADDRESS.\n    /// - When the called public function calls `PublicContext::msg_sender()`, aztec-nr will translate\n    /// NULL_MSG_SENDER_CONTRACT_ADDRESS into `Option<AztecAddress>::none` for familiarity to devs.\n    ///\n    pub fn enqueue_incognito<let M: u32, let N: u32, T>(&mut self, call: PublicCall<M, N, T>) {\n        call.enqueue_incognito(self.context)\n    }\n\n    /// Enqueues a privacy-preserving read-only public contract call function.\n    ///\n    /// As per `enqueue_view`, but hides this calling contract's address from the target public function.\n    ///\n    /// See `enqueue_incognito` for more details relating to hiding msg_sender.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the read-only public function to enqueue.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.enqueue_view_incognito(MyContract::at(address).assert_timestamp_less_than(timestamp));\n    /// ```\n    ///\n    pub fn enqueue_view_incognito<let M: u32, let N: u32, T>(&mut self, call: PublicStaticCall<M, N, T>) {\n        call.enqueue_view_incognito(self.context)\n    }\n\n    /// Enqueues a call to the public function defined by the `call` parameter, and designates it to be the teardown\n    /// function for this tx. Only one teardown function call can be made by a tx.\n    ///\n    /// Niche function: Only wallet developers and paymaster contract developers (aka Fee-payment contracts) will need\n    /// to make use of this function.\n    ///\n    /// Aztec supports a three-phase execution model: setup, app logic, teardown. The phases exist to enable a fee\n    /// payer to take on the risk of paying a transaction fee, safe in the knowledge that their payment (in whatever\n    /// token or method the user chooses) will succeed, regardless of whether the app logic will succeed. The \"setup\"\n    /// phase ensures the fee payer has sufficient balance to pay the proposer their fees. The teardown phase is\n    /// primarily intended to: calculate exactly how much the user owes, based on gas consumption, and refund the user\n    /// any change.\n    ///\n    /// Note: in some cases, the cost of refunding the user (i.e. DA costs of tx side-effects) might exceed the refund\n    /// amount. For app logic with fairly stable and predictable gas consumption, a material refund amount is unlikely.\n    /// For app logic with unpredictable gas consumption, a refund might be important to the user (e.g. if a hefty\n    /// function reverts very early). Wallet/FPC/Paymaster developers should be mindful of this.\n    ///\n    /// See `enqueue` for more information about enqueuing public function calls.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the public function to designate as teardown.\n    ///\n    pub fn set_as_teardown<let M: u32, let N: u32, T>(&mut self, call: PublicCall<M, N, T>) {\n        call.set_as_teardown(self.context)\n    }\n\n    /// Enqueues a call to the public function defined by the `call` parameter, and designates it to be the teardown\n    /// function for this tx. Only one teardown function call can be made by a tx.\n    ///\n    /// As per `set_as_teardown`, but hides this calling contract's address from the target public function.\n    ///\n    /// See `enqueue_incognito` for more details relating to hiding msg_sender.\n    ///\n    pub fn set_as_teardown_incognito<let M: u32, let N: u32, T>(&mut self, call: PublicCall<M, N, T>) {\n        call.set_as_teardown_incognito(self.context)\n    }\n}\n\n/// A struct that allows for ergonomic calling of utility functions from a private context.\n///\n/// Accessible via `self.utility` in private functions. Results are not part of any circuit\n/// proof; use them to inform logic, not as inputs to constrained assertions.\n///\n/// ## Type Parameters\n///\n/// - `CallSelf`: Macro-generated type for calling the contract's own utility functions (same type\n/// as `CallSelf` in \\[`ContractSelfUtility`\\])\n// Implemented as a separate struct (rather than inlined in ContractSelfPrivate) because Noir does\n// not allow passing `&mut PrivateContext` (held by `ContractSelfPrivate`) into unconstrained code.\n// This struct holds no mutable references, so it can be passed freely into `unconstrained`\n// functions.\npub struct PrivateUtilityCalls<CallSelf> {\n    /// Provides type-safe methods for calling this contract's own utility functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// // Safety: result is unconstrained\n    /// unsafe { self.utility.call_self.some_utility_function(args) }\n    /// ```\n    pub call_self: CallSelf,\n}\n\nimpl<CallSelf> PrivateUtilityCalls<CallSelf> {\n    /// Makes a utility contract call from a private function.\n    ///\n    /// The call executes unconstrained code, so it must be wrapped in `unsafe`, and its result is not part of any\n    /// circuit proof: use it to inform logic, never as an input to a constrained assertion without validating it\n    /// first.\n    ///\n    /// The callee observes this contract's address as its `msg_sender`: see the `msg_sender` docs on\n    /// [`ContractSelfUtility`](crate::contract_self::ContractSelfUtility).\n    ///\n    /// To call one of this contract's own utility functions, prefer the type-safe `self.utility.call_self` stubs.\n    ///\n    /// ## Authorization\n    ///\n    /// A call to this contract itself always succeeds. A call to a different contract can expose that contract's\n    /// private state to the caller, so it requires explicit authorization. A call that is not authorized fails.\n    ///\n    /// # Example\n    /// ```noir\n    /// // Safety: result is unconstrained\n    /// unsafe { self.utility.call(Token::at(address).get_balance_of(owner)) }\n    /// ```\n    pub unconstrained fn call<let M: u32, let N: u32, T>(_self: Self, call: UtilityCall<M, N, T>) -> T\n    where\n        T: Deserialize,\n    {\n        let returns = call_utility_function(call.target_contract, call.selector, call.args);\n        Deserialize::deserialize(returns)\n    }\n}\n"
    },
    "73": {
      "function_locations": [
        {
          "name": "ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal>::new",
          "start": 3401
        },
        {
          "name": "ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal>::msg_sender",
          "start": 4116
        },
        {
          "name": "ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal>::emit",
          "start": 5018
        },
        {
          "name": "ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal>::call",
          "start": 5659
        },
        {
          "name": "ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal>::view",
          "start": 6480
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/contract_self/contract_self_public.nr",
      "source": "//! The `self` contract value for public execution contexts.\n\nuse crate::{\n    context::{calls::{PublicCall, PublicStaticCall}, PublicContext},\n    event::{event_emission::emit_event_in_public, event_interface::EventInterface},\n};\nuse crate::protocol::{address::AztecAddress, traits::{Deserialize, Serialize}};\n\n/// Core interface for interacting with aztec-nr contract features in public execution contexts.\n///\n/// This struct is automatically injected into every [`external`](crate::macros::functions::external) and\n/// [`internal`](crate::macros::functions::internal) contract function marked with `\"public\"` by the Aztec macro\n/// system and is accessible through the `self` variable.\n///\n/// ## Type Parameters\n///\n/// - `Storage`: The contract's storage struct (defined with [`storage`](crate::macros::storage::storage), or `()` if\n/// the contract has no storage\n/// - `CallSelf`: Macro-generated type for calling contract's own non-view functions\n/// - `CallSelfStatic`: Macro-generated type for calling contract's own view functions\n/// - `CallInternal`: Macro-generated type for calling internal functions\npub struct ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal> {\n    /// The address of this contract\n    pub address: AztecAddress,\n\n    /// The contract's storage instance, representing the struct to which the\n    /// [`storage`](crate::macros::storage::storage) macro was applied in your contract. If the contract has no\n    /// storage, the type of this will be `()`.\n    ///\n    /// This storage instance is specialized for the current execution context (public) and\n    /// provides access to the contract's state variables.\n    ///\n    /// ## Developer Note\n    ///\n    /// If you've arrived here while trying to access your contract's storage while the `Storage` generic type is set\n    /// to unit type `()`, it means you haven't yet defined a Storage struct using the\n    /// [`storage`](crate::macros::storage::storage) macro in your contract. For guidance on setting this up, please\n    /// refer to our docs: https://docs.aztec.network/developers/docs/guides/smart_contracts/storage\n    pub storage: Storage,\n\n    /// The public execution context.\n    pub context: PublicContext,\n\n    /// Provides type-safe methods for calling this contract's own non-view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.call_self.some_public_function(args)\n    /// ```\n    pub call_self: CallSelf,\n\n    /// Provides type-safe methods for calling this contract's own view functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.call_self_static.some_view_function(args)\n    /// ```\n    pub call_self_static: CallSelfStatic,\n\n    /// Provides type-safe methods for calling internal functions.\n    ///\n    /// Example API:\n    /// ```noir\n    /// self.internal.some_internal_function(args)\n    /// ```\n    pub internal: CallInternal,\n}\n\nimpl<Storage, CallSelf, CallSelfStatic, CallInternal> ContractSelfPublic<Storage, CallSelf, CallSelfStatic, CallInternal> {\n    /// Creates a new `ContractSelfPublic` instance for a public function.\n    ///\n    /// This constructor is called automatically by the macro system and should not be called directly.\n    pub fn new(\n        context: PublicContext,\n        storage: Storage,\n        call_self: CallSelf,\n        call_self_static: CallSelfStatic,\n        internal: CallInternal,\n    ) -> Self {\n        Self { context, storage, address: context.this_address(), call_self, call_self_static, internal }\n    }\n\n    /// The address of the contract address that made this function call.\n    ///\n    /// This is similar to Solidity's `msg.sender` value.\n    ///\n    /// ## Incognito Calls\n    ///\n    /// Contracts can call public functions from private ones hiding their identity (see\n    ///\n    /// [`ContractSelfPrivate::enqueue_incognito`](crate::contract_self::ContractSelfPrivate::enqueue_incognito)).\n    /// This function reverts when executed in such a context.\n    ///\n    /// If you need to handle these cases, use [`PublicContext::maybe_msg_sender`].\n    pub fn msg_sender(self: Self) -> AztecAddress {\n        self.context.maybe_msg_sender().unwrap()\n    }\n\n    /// Emits an event publicly.\n    ///\n    /// Public events are emitted as plaintext and are therefore visible to everyone. This is is the same as Solidity\n    /// events on EVM chains.\n    ///\n    /// Unlike private events, they don't require delivery of an event message.\n    ///\n    /// # Example\n    /// ```noir\n    /// #[event]\n    /// struct Update { value: Field }\n    ///\n    /// #[external(\"public\")]\n    /// fn publish_update(value: Field) {\n    ///     self.emit(Update { value });\n    /// }\n    /// ```\n    ///\n    /// # Cost\n    ///\n    /// Public event emission is achieved by emitting public transaction logs. A total of `N+1` fields are emitted,\n    /// where `N` is the serialization length of the event.\n    pub unconstrained fn emit<Event>(&mut self, event: Event)\n    where\n        Event: EventInterface + Serialize,\n    {\n        emit_event_in_public(self.context, event);\n    }\n\n    /// Makes a public contract call.\n    ///\n    /// Will revert if the called function reverts or runs out of gas.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the public function to invoke.\n    ///\n    /// # Returns\n    /// * `T` - Whatever data the called function has returned.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.call(Token::at(address).transfer_in_public(recipient, amount));\n    /// ```\n    ///\n    pub unconstrained fn call<let M: u32, let N: u32, T>(self, call: PublicCall<M, N, T>) -> T\n    where\n        T: Deserialize,\n    {\n        call.call(self.context)\n    }\n\n    /// Makes a public read-only contract call.\n    ///\n    /// This is similar to Solidity's `staticcall`. The called function cannot modify state or emit events. Any nested\n    /// calls are constrained to also be static calls.\n    ///\n    /// Will revert if the called function reverts or runs out of gas.\n    ///\n    /// # Arguments\n    /// * `call` - The object representing the read-only public function to invoke.\n    ///\n    /// # Returns\n    /// * `T` - Whatever data the called function has returned.\n    ///\n    /// # Example\n    /// ```noir\n    /// self.view(Token::at(address).balance_of_public(recipient));\n    /// ```\n    ///\n    pub unconstrained fn view<let M: u32, let N: u32, T>(self, call: PublicStaticCall<M, N, T>) -> T\n    where\n        T: Deserialize,\n    {\n        call.view(self.context)\n    }\n}\n"
    },
    "76": {
      "function_locations": [
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::len_oracle",
          "start": 1625
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::push_oracle",
          "start": 1763
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::pop_oracle",
          "start": 1896
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::get_oracle",
          "start": 2032
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::set_oracle",
          "start": 2181
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::remove_oracle",
          "start": 2309
        },
        {
          "name": "<impl ArrayOracles for EphemeralOracles>::clear_oracle",
          "start": 2419
        },
        {
          "name": "<impl Serialize for UnconstrainedArray<T, EphemeralOracles>>::serialize",
          "start": 2754
        },
        {
          "name": "<impl Serialize for UnconstrainedArray<T, EphemeralOracles>>::stream_serialize",
          "start": 2849
        },
        {
          "name": "<impl Deserialize for UnconstrainedArray<T, EphemeralOracles>>::deserialize",
          "start": 3147
        },
        {
          "name": "<impl Deserialize for UnconstrainedArray<T, EphemeralOracles>>::stream_deserialize",
          "start": 3259
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/ephemeral/mod.nr",
      "source": "use crate::oracle::ephemeral_oracles;\nuse crate::protocol::traits::{Deserialize, Serialize};\nuse crate::protocol::utils::{reader::Reader, writer::Writer};\nuse crate::unconstrained_array::{ArrayOracles, UnconstrainedArray};\n\n/// A dynamically sized array that exists only during a single contract call frame.\n///\n/// Ephemeral arrays are backed by in-memory storage on the PXE side rather than a persistent database. Each contract\n/// call frame gets its own isolated slot space of ephemeral arrays. Child simulations cannot see the parent's\n/// ephemeral arrays, and vice versa.\n///\n/// Each logical array operation (push, pop, get, etc.) is a single oracle call, making ephemeral arrays significantly\n/// cheaper than capsule arrays.\n///\n/// ## Use Cases\n///\n/// Ephemeral arrays are designed for passing data between PXE (TypeScript) and contracts (Noir) during simulation,\n/// for example, note validation requests or event validation responses. This data type is appropriate for data that\n/// is not supposed to be persisted.\n///\n/// For data that needs to persist across simulations, contract calls, etc, use\n/// [`CapsuleArray`](crate::capsules::CapsuleArray) instead.\n///\n/// For data that must be shared across all frames of the same contract (private and utility) within one top-level PXE\n/// call (transaction simulation or utility call) but not persisted, use\n/// [`TransientArray`](crate::transient::TransientArray).\npub type EphemeralArray<T> = UnconstrainedArray<T, EphemeralOracles>;\n\npub struct EphemeralOracles {}\n\nimpl ArrayOracles for EphemeralOracles {\n    unconstrained fn len_oracle(slot: Field) -> u32 {\n        ephemeral_oracles::len_oracle(slot)\n    }\n\n    unconstrained fn push_oracle<let N: u32>(slot: Field, values: [Field; N]) -> u32 {\n        ephemeral_oracles::push_oracle(slot, values)\n    }\n\n    unconstrained fn pop_oracle<let N: u32>(slot: Field) -> [Field; N] {\n        ephemeral_oracles::pop_oracle(slot)\n    }\n\n    unconstrained fn get_oracle<let N: u32>(slot: Field, index: u32) -> [Field; N] {\n        ephemeral_oracles::get_oracle(slot, index)\n    }\n\n    unconstrained fn set_oracle<let N: u32>(slot: Field, index: u32, values: [Field; N]) {\n        ephemeral_oracles::set_oracle(slot, index, values)\n    }\n\n    unconstrained fn remove_oracle(slot: Field, index: u32) {\n        ephemeral_oracles::remove_oracle(slot, index)\n    }\n\n    unconstrained fn clear_oracle(slot: Field) {\n        ephemeral_oracles::clear_oracle(slot)\n    }\n}\n\n/// Serializes an `EphemeralArray` as its slot, allowing oracle function signatures to use ephemeral array types\n/// instead of opaque `Field` slots.\nimpl<T> Serialize for UnconstrainedArray<T, EphemeralOracles> {\n    let N: u32 = 1;\n\n    fn serialize(self) -> [Field; Self::N] {\n        [self.slot]\n    }\n\n    fn stream_serialize<let K: u32>(self, writer: &mut Writer<K>) {\n        writer.write(self.slot);\n    }\n}\n\n/// Deserializes a single Field into an `EphemeralArray` handle, treating the field value as the slot identifier.\nimpl<T> Deserialize for UnconstrainedArray<T, EphemeralOracles> {\n    let N: u32 = 1;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        Self { slot: fields[0] }\n    }\n\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        Self { slot: reader.read() }\n    }\n}\n\n#[crate::unconstrained_array::test_suite::unconstrained_array_tests(quote { crate::ephemeral::EphemeralOracles })]\nmod test {}\n"
    },
    "78": {
      "function_locations": [
        {
          "name": "compute_private_event_commitment",
          "start": 1013
        },
        {
          "name": "compute_private_serialized_event_commitment",
          "start": 1803
        },
        {
          "name": "test::max_size_serialized_event_commitment",
          "start": 2570
        },
        {
          "name": "test::event_commitment_equivalence",
          "start": 2814
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/event/event_interface.nr",
      "source": "use crate::{event::EventSelector, messages::logs::event::MAX_EVENT_SERIALIZED_LEN};\nuse crate::protocol::{\n    constants::DOM_SEP__EVENT_COMMITMENT,\n    hash::{poseidon2_hash_with_separator, poseidon2_hash_with_separator_bounded_vec},\n    traits::{Serialize, ToField},\n};\n\npub trait EventInterface {\n    fn get_event_type_id() -> EventSelector;\n}\n\n/// A private event's commitment is a value stored on-chain which is used to verify that the event was indeed emitted.\n///\n/// It requires a `randomness` value that must be produced alongside the event in order to perform said validation.\n/// This random value prevents attacks in which someone guesses plausible events (e.g. 'Alice transfers to Bob an\n/// amount of 10'), since they will not be able to test for existence of their guessed events without brute-forcing the\n/// entire `Field` space by guessing `randomness` values.\npub fn compute_private_event_commitment<Event>(event: Event, randomness: Field) -> Field\nwhere\n    Event: EventInterface + Serialize,\n{\n    poseidon2_hash_with_separator(\n        [randomness, Event::get_event_type_id().to_field()].concat(event.serialize()),\n        DOM_SEP__EVENT_COMMITMENT,\n    )\n}\n\n/// Unconstrained variant of [`compute_private_event_commitment`] which takes the event in serialized form.\n///\n/// This function is unconstrained as the mechanism it uses to compute the commitment would be very inefficient in a\n/// constrained environment (due to the hashing of a dynamically sized array). This is not an issue as it is typically\n/// invoked when processing event messages, which is an unconstrained operation.\npub unconstrained fn compute_private_serialized_event_commitment(\n    serialized_event: BoundedVec<Field, MAX_EVENT_SERIALIZED_LEN>,\n    randomness: Field,\n    event_type_id: Field,\n) -> Field {\n    let mut commitment_preimage =\n        BoundedVec::<_, 2 + MAX_EVENT_SERIALIZED_LEN>::from_array([randomness, event_type_id]);\n    commitment_preimage.extend_from_bounded_vec(serialized_event);\n\n    poseidon2_hash_with_separator_bounded_vec(commitment_preimage, DOM_SEP__EVENT_COMMITMENT)\n}\n\nmod test {\n    use crate::event::event_interface::{\n        compute_private_event_commitment, compute_private_serialized_event_commitment, EventInterface,\n    };\n    use crate::messages::logs::event::MAX_EVENT_SERIALIZED_LEN;\n    use crate::protocol::traits::{Serialize, ToField};\n    use crate::test::mocks::mock_event::MockEvent;\n\n    global VALUE: Field = 7;\n    global RANDOMNESS: Field = 10;\n\n    #[test]\n    unconstrained fn max_size_serialized_event_commitment() {\n        let serialized_event = BoundedVec::from_array([0; MAX_EVENT_SERIALIZED_LEN]);\n        let _ = compute_private_serialized_event_commitment(serialized_event, 0, 0);\n    }\n\n    #[test]\n    unconstrained fn event_commitment_equivalence() {\n        let event = MockEvent::new(VALUE).build_event();\n\n        assert_eq(\n            compute_private_event_commitment(event, RANDOMNESS),\n            compute_private_serialized_event_commitment(\n                BoundedVec::from_array(event.serialize()),\n                RANDOMNESS,\n                MockEvent::get_event_type_id().to_field(),\n            ),\n        );\n    }\n}\n"
    },
    "80": {
      "function_locations": [
        {
          "name": "<impl FromField for EventSelector>::from_field",
          "start": 337
        },
        {
          "name": "<impl ToField for EventSelector>::to_field",
          "start": 449
        },
        {
          "name": "<impl Empty for EventSelector>::empty",
          "start": 542
        },
        {
          "name": "EventSelector::from_u32",
          "start": 647
        },
        {
          "name": "EventSelector::from_signature",
          "start": 751
        },
        {
          "name": "EventSelector::zero",
          "start": 985
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/event/event_selector.nr",
      "source": "use crate::protocol::{hash::poseidon2_hash_bytes, traits::{Deserialize, Empty, FromField, Serialize, ToField}};\n\n#[derive(Deserialize, Eq, Serialize)]\npub struct EventSelector {\n    // Low 32 bits of the poseidon2 hash of the event signature.\n    inner: u32,\n}\n\nimpl FromField for EventSelector {\n    fn from_field(field: Field) -> Self {\n        Self { inner: field as u32 }\n    }\n}\n\nimpl ToField for EventSelector {\n    fn to_field(self) -> Field {\n        self.inner as Field\n    }\n}\n\nimpl Empty for EventSelector {\n    fn empty() -> Self {\n        Self { inner: 0 as u32 }\n    }\n}\n\nimpl EventSelector {\n    pub fn from_u32(value: u32) -> Self {\n        Self { inner: value }\n    }\n\n    pub fn from_signature<let N: u32>(signature: str<N>) -> Self {\n        let bytes = signature.as_bytes();\n        let hash = poseidon2_hash_bytes(bytes);\n\n        // `hash` is automatically truncated to fit within 32 bits.\n        EventSelector::from_field(hash)\n    }\n\n    pub fn zero() -> Self {\n        Self { inner: 0 }\n    }\n}\n"
    },
    "82": {
      "function_locations": [
        {
          "name": "record_retractable_fact",
          "start": 2758
        },
        {
          "name": "record_non_retractable_fact",
          "start": 3394
        },
        {
          "name": "delete_fact_collection",
          "start": 4031
        },
        {
          "name": "get_fact_collection",
          "start": 4409
        },
        {
          "name": "get_fact_collections_by_type",
          "start": 4802
        },
        {
          "name": "test::setup",
          "start": 5529
        },
        {
          "name": "test::make_payload",
          "start": 5744
        },
        {
          "name": "test::assert_payload",
          "start": 5978
        },
        {
          "name": "test::record_fact",
          "start": 6219
        },
        {
          "name": "test::records_and_reads_a_fact",
          "start": 6494
        },
        {
          "name": "test::reads_collections_by_type",
          "start": 7371
        },
        {
          "name": "test::records_a_retractable_fact_finalized_at_latest_block",
          "start": 8121
        },
        {
          "name": "test::retractable_fact_above_proven_tip_is_pending",
          "start": 9360
        },
        {
          "name": "test::deletes_a_fact_collection",
          "start": 10240
        },
        {
          "name": "test::reading_unknown_collection_returns_none",
          "start": 10746
        },
        {
          "name": "test::cannot_record_for_other_contract",
          "start": 11155
        },
        {
          "name": "test::re_recording_an_identical_fact_is_a_no_op",
          "start": 11457
        },
        {
          "name": "test::deleting_a_non_existing_collection_is_a_no_op",
          "start": 11953
        },
        {
          "name": "test::recording_a_fact_after_delete_recreates_the_collection",
          "start": 12385
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/facts/mod.nr",
      "source": "//! Per-contract storage of immutable facts grouped into collections.\n//!\n//! A fact is a contract-defined, typed, immutable datum. Facts are grouped into collections identified by a\n//! `(collection type, collection id)` tuple.\n//!\n//! They are stored in PXE's FactStore, which automatically deals with reorgs by removing any facts\n//! associated with blocks that have been pruned.\nuse crate::ephemeral::EphemeralArray;\nuse crate::oracle::fact_store::{\n    delete_fact_collection_oracle, get_fact_collection_oracle, get_fact_collections_by_type_oracle, record_fact_oracle,\n};\nuse crate::protocol::{address::AztecAddress, traits::{Deserialize, Serialize}};\n\nmod origin_state;\npub use origin_state::OriginBlockState;\n\n/// The block a retractable fact originates from.\n#[derive(Deserialize, Eq, Serialize)]\npub struct OriginBlock {\n    pub block_number: u32,\n    pub block_hash: Field,\n}\n\n/// A retractable fact's origin block.\n#[derive(Deserialize, Eq, Serialize)]\npub struct RetractableFactOrigin {\n    pub block_number: u32,\n    pub block_hash: Field,\n    pub block_state: OriginBlockState,\n}\n\n/// A single immutable fact in a collection.\n#[derive(Deserialize, Serialize)]\npub struct Fact {\n    /// A user-defined identifier for fact kinds. Typically used to determine how to deserialize `payload`.\n    pub fact_type_id: Field,\n    pub payload: EphemeralArray<Field>,\n    /// The block the fact is associated to, if any. A fact with an origin block is said to be a 'retractable' fact,\n    /// and will be automatically deleted if its origin block gets pruned in a reorg. Typically used by facts\n    /// associated with a transaction (e.g. 'processed entry X using data from tx Y in block Z').\n    pub origin_block: Option<RetractableFactOrigin>,\n}\n\n/// A fact collection as returned by the store.\n#[derive(Deserialize, Serialize)]\npub struct FactCollection {\n    pub contract_address: AztecAddress,\n    pub scope: AztecAddress,\n    /// The collection's type. A single contract may have facts in collections of different types (e.g. one for the\n    /// processing offchain messages, another for partial notes, etc.).\n    pub fact_collection_type_id: Field,\n    /// The collection's unique identifier among the other collections of this type in this contract and scope.\n    pub fact_collection_id: Field,\n    pub facts: EphemeralArray<Fact>,\n}\n\n/// Records a retractable fact into a collection: PXE prunes it if `origin_block` is reorg'd away. Re-recording an\n/// identical fact is a no-op.\npub unconstrained fn record_retractable_fact(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n    fact_collection_type_id: Field,\n    fact_collection_id: Field,\n    fact_type_id: Field,\n    payload: EphemeralArray<Field>,\n    origin_block: OriginBlock,\n) {\n    record_fact_oracle(\n        contract_address,\n        scope,\n        fact_collection_type_id,\n        fact_collection_id,\n        fact_type_id,\n        payload,\n        Option::some(origin_block),\n    );\n}\n\n/// Records a non-retractable fact into a collection: it survives reorgs and will persist until the fact collection\n/// itself is deleted. Re-recording an identical fact is a no-op.\npub unconstrained fn record_non_retractable_fact(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n    fact_collection_type_id: Field,\n    fact_collection_id: Field,\n    fact_type_id: Field,\n    payload: EphemeralArray<Field>,\n) {\n    record_fact_oracle(\n        contract_address,\n        scope,\n        fact_collection_type_id,\n        fact_collection_id,\n        fact_type_id,\n        payload,\n        Option::none(),\n    );\n}\n\n/// Deletes a fact collection, removing all its facts from PXE storage.\n///\n/// Collections must be eventually deleted to reclaim storage and to stop reprocessing past the lifespan of the\n/// workflows they enable.\n///\n/// A no-op if no such collection exists.\npub unconstrained fn delete_fact_collection(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n    fact_collection_type_id: Field,\n    fact_collection_id: Field,\n) {\n    delete_fact_collection_oracle(\n        contract_address,\n        scope,\n        fact_collection_type_id,\n        fact_collection_id,\n    );\n}\n\n/// Fetches a fact collection.\npub unconstrained fn get_fact_collection(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n    fact_collection_type_id: Field,\n    fact_collection_id: Field,\n) -> Option<FactCollection> {\n    get_fact_collection_oracle(\n        contract_address,\n        scope,\n        fact_collection_type_id,\n        fact_collection_id,\n    )\n}\n\n/// Returns every fact collection of `fact_collection_type_id`.\npub unconstrained fn get_fact_collections_by_type(\n    contract_address: AztecAddress,\n    scope: AztecAddress,\n    fact_collection_type_id: Field,\n) -> EphemeralArray<FactCollection> {\n    get_fact_collections_by_type_oracle(contract_address, scope, fact_collection_type_id)\n}\n\nmod test {\n    use crate::ephemeral::EphemeralArray;\n    use crate::facts::{\n        delete_fact_collection, get_fact_collection, get_fact_collections_by_type, OriginBlock,\n        record_non_retractable_fact, record_retractable_fact,\n    };\n    use crate::protocol::address::AztecAddress;\n    use crate::protocol::traits::{FromField, ToField};\n    use crate::test::helpers::test_environment::TestEnvironment;\n\n    global TYPE_ID: Field = 42;\n    global COLLECTION_ID: Field = 7;\n    global FACT_TYPE_ID: Field = 99;\n    global PAYLOAD: [Field; 3] = [123, 456, 789];\n\n    unconstrained fn setup() -> (TestEnvironment, AztecAddress) {\n        let mut env = TestEnvironment::new();\n        let scope = env.create_light_account();\n        (env, scope)\n    }\n\n    unconstrained fn make_payload<let N: u32>(values: [Field; N]) -> EphemeralArray<Field> {\n        let payload: EphemeralArray<Field> = EphemeralArray::empty();\n        for i in 0..N {\n            payload.push(values[i]);\n        }\n        payload\n    }\n\n    unconstrained fn assert_payload(payload: EphemeralArray<Field>) {\n        assert_eq(payload.len(), PAYLOAD.len());\n        for i in 0..PAYLOAD.len() {\n            assert_eq(payload.get(i), PAYLOAD[i]);\n        }\n    }\n\n    unconstrained fn record_fact(contract_address: AztecAddress, scope: AztecAddress) {\n        record_non_retractable_fact(\n            contract_address,\n            scope,\n            TYPE_ID,\n            COLLECTION_ID,\n            FACT_TYPE_ID,\n            make_payload(PAYLOAD),\n        );\n    }\n\n    #[test]\n    unconstrained fn records_and_reads_a_fact() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_fact(contract_address, scope);\n\n            let collection = get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).unwrap();\n            assert_eq(collection.contract_address, contract_address);\n            assert_eq(collection.scope, scope);\n            assert_eq(collection.fact_collection_type_id, TYPE_ID);\n            assert_eq(collection.fact_collection_id, COLLECTION_ID);\n            assert_eq(collection.facts.len(), 1);\n\n            let fact = collection.facts.get(0);\n            assert_eq(fact.fact_type_id, FACT_TYPE_ID);\n            assert_payload(fact.payload);\n            assert(fact.origin_block.is_none());\n        });\n    }\n\n    #[test]\n    unconstrained fn reads_collections_by_type() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_fact(contract_address, scope);\n\n            let collections = get_fact_collections_by_type(contract_address, scope, TYPE_ID);\n            assert_eq(collections.len(), 1);\n\n            let collection = collections.get(0);\n            assert_eq(collection.fact_collection_id, COLLECTION_ID);\n            assert_eq(collection.facts.len(), 1);\n\n            let fact = collection.facts.get(0);\n            assert_eq(fact.fact_type_id, FACT_TYPE_ID);\n            assert_payload(fact.payload);\n        });\n    }\n\n    #[test]\n    unconstrained fn records_a_retractable_fact_finalized_at_latest_block() {\n        let (env, scope) = setup();\n        let origin_block_number = env.last_block_number();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_retractable_fact(\n                contract_address,\n                scope,\n                TYPE_ID,\n                COLLECTION_ID,\n                FACT_TYPE_ID,\n                make_payload(PAYLOAD),\n                OriginBlock { block_number: origin_block_number, block_hash: 0xabc },\n            );\n\n            let collection = get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).unwrap();\n            assert_eq(collection.facts.len(), 1);\n\n            let fact = collection.facts.get(0);\n            assert_eq(fact.fact_type_id, FACT_TYPE_ID);\n            assert_payload(fact.payload);\n\n            let origin = fact.origin_block.unwrap();\n            assert_eq(origin.block_number, origin_block_number);\n            assert_eq(origin.block_hash, 0xabc);\n            // TXE finalizes every mined block, so an origin at the latest block is Finalized.\n            assert(origin.block_state.is_finalized());\n        });\n    }\n\n    #[test]\n    unconstrained fn retractable_fact_above_proven_tip_is_pending() {\n        let (env, scope) = setup();\n        let future_block_number = env.last_block_number() + 100;\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_retractable_fact(\n                contract_address,\n                scope,\n                TYPE_ID,\n                COLLECTION_ID,\n                FACT_TYPE_ID,\n                make_payload(PAYLOAD),\n                OriginBlock { block_number: future_block_number, block_hash: 0xabc },\n            );\n\n            let origin = get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID)\n                .unwrap()\n                .facts\n                .get(0)\n                .origin_block\n                .unwrap();\n            assert(origin.block_state.is_pending());\n        });\n    }\n\n    #[test]\n    unconstrained fn deletes_a_fact_collection() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_fact(contract_address, scope);\n            delete_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID);\n\n            let collections = get_fact_collections_by_type(contract_address, scope, TYPE_ID);\n            assert_eq(collections.len(), 0);\n        });\n    }\n\n    #[test]\n    unconstrained fn reading_unknown_collection_returns_none() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            let collection = get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID);\n            assert(collection.is_none());\n        });\n    }\n\n    #[test(should_fail_with = \"not allowed to access\")]\n    unconstrained fn cannot_record_for_other_contract() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let other = AztecAddress::from_field(context.this_address().to_field() + 1);\n            record_fact(other, scope);\n        });\n    }\n\n    #[test]\n    unconstrained fn re_recording_an_identical_fact_is_a_no_op() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            record_fact(contract_address, scope);\n            record_fact(contract_address, scope);\n\n            let collection = get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).unwrap();\n            assert_eq(collection.facts.len(), 1);\n        });\n    }\n\n    #[test]\n    unconstrained fn deleting_a_non_existing_collection_is_a_no_op() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n            delete_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID);\n\n            assert(get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).is_none());\n        });\n    }\n\n    #[test]\n    unconstrained fn recording_a_fact_after_delete_recreates_the_collection() {\n        let (env, scope) = setup();\n        env.private_context(|context| {\n            let contract_address = context.this_address();\n\n            record_fact(contract_address, scope);\n            let collection_before_delete =\n                get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).unwrap();\n            assert_eq(collection_before_delete.facts.len(), 1);\n\n            delete_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID);\n            assert(get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).is_none());\n\n            record_fact(contract_address, scope);\n            let collection_after_recreate =\n                get_fact_collection(contract_address, scope, TYPE_ID, COLLECTION_ID).unwrap();\n            assert_eq(collection_after_recreate.facts.len(), 1);\n        });\n    }\n}\n"
    },
    "83": {
      "function_locations": [
        {
          "name": "OriginBlockState::pending",
          "start": 597
        },
        {
          "name": "OriginBlockState::proven",
          "start": 660
        },
        {
          "name": "OriginBlockState::finalized",
          "start": 726
        },
        {
          "name": "OriginBlockState::is_pending",
          "start": 861
        },
        {
          "name": "OriginBlockState::is_proven",
          "start": 1003
        },
        {
          "name": "OriginBlockState::is_finalized",
          "start": 1185
        },
        {
          "name": "OriginBlockState::from_u8",
          "start": 1262
        },
        {
          "name": "OriginBlockState::is_valid",
          "start": 1414
        },
        {
          "name": "<impl Eq for OriginBlockState>::eq",
          "start": 1560
        },
        {
          "name": "<impl Deserialize for OriginBlockState>::deserialize",
          "start": 1740
        },
        {
          "name": "<impl Deserialize for OriginBlockState>::stream_deserialize",
          "start": 1883
        },
        {
          "name": "test::query_functions_identify_each_state",
          "start": 2098
        },
        {
          "name": "test::origin_state_roundtrips_through_serialization",
          "start": 2710
        },
        {
          "name": "test::deserializing_invalid_state_fails",
          "start": 3216
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/facts/origin_state.nr",
      "source": "use crate::protocol::{traits::{Deserialize, Serialize}, utils::reader::Reader};\n\n/// Chain state of a retractable fact's origin block, mirroring the L2 chain tips.\n#[derive(Serialize)]\npub struct OriginBlockState {\n    // Noir has no enums, so this wraps a `u8` discriminant. The discriminant values must stay in sync with the\n    // TypeScript `OriginBlockState` enum in `yarn-project/pxe/src/storage/fact_store/origin_state.ts`, which PXE\n    // serializes into the `Fact` oracle response that `from_u8` below deserializes.\n    inner: u8,\n}\n\nimpl OriginBlockState {\n    pub fn pending() -> Self {\n        Self { inner: 1 }\n    }\n\n    pub fn proven() -> Self {\n        Self { inner: 2 }\n    }\n\n    pub fn finalized() -> Self {\n        Self { inner: 3 }\n    }\n\n    /// Whether the origin block is still above the proven tip.\n    pub fn is_pending(self) -> bool {\n        self == Self::pending()\n    }\n\n    /// Whether the origin block is proven but not yet finalized.\n    pub fn is_proven(self) -> bool {\n        self == Self::proven()\n    }\n\n    /// Whether the origin block is finalized, and thus facts related to it can no longer be retracted.\n    pub fn is_finalized(self) -> bool {\n        self == Self::finalized()\n    }\n\n    fn from_u8(inner: u8) -> Self {\n        let state = Self { inner };\n        assert(state.is_valid(), \"unrecognized origin state\");\n        state\n    }\n\n    fn is_valid(self) -> bool {\n        self.is_pending() | self.is_proven() | self.is_finalized()\n    }\n}\n\nimpl Eq for OriginBlockState {\n    fn eq(self, other: Self) -> bool {\n        self.inner == other.inner\n    }\n}\n\nimpl Deserialize for OriginBlockState {\n    let N: u32 = <u8 as Deserialize>::N;\n\n    fn deserialize(fields: [Field; Self::N]) -> Self {\n        Self::from_u8(<u8 as Deserialize>::deserialize(fields))\n    }\n\n    fn stream_deserialize<let K: u32>(reader: &mut Reader<K>) -> Self {\n        Self::from_u8(reader.read() as u8)\n    }\n}\n\nmod test {\n    use crate::protocol::traits::{Deserialize, Serialize};\n    use super::OriginBlockState;\n\n    #[test]\n    fn query_functions_identify_each_state() {\n        assert(OriginBlockState::pending().is_pending());\n        assert(!OriginBlockState::pending().is_proven());\n        assert(!OriginBlockState::pending().is_finalized());\n\n        assert(OriginBlockState::proven().is_proven());\n        assert(!OriginBlockState::proven().is_pending());\n        assert(!OriginBlockState::proven().is_finalized());\n\n        assert(OriginBlockState::finalized().is_finalized());\n        assert(!OriginBlockState::finalized().is_pending());\n        assert(!OriginBlockState::finalized().is_proven());\n    }\n\n    #[test]\n    fn origin_state_roundtrips_through_serialization() {\n        let pending = OriginBlockState::pending();\n        let proven = OriginBlockState::proven();\n        let finalized = OriginBlockState::finalized();\n        assert(OriginBlockState::deserialize(pending.serialize()) == pending);\n        assert(OriginBlockState::deserialize(proven.serialize()) == proven);\n        assert(OriginBlockState::deserialize(finalized.serialize()) == finalized);\n    }\n\n    #[test(should_fail_with = \"unrecognized origin state\")]\n    fn deserializing_invalid_state_fails() {\n        let _ = OriginBlockState::deserialize([99]);\n    }\n}\n"
    },
    "84": {
      "function_locations": [
        {
          "name": "compute_secret_hash",
          "start": 536
        },
        {
          "name": "compute_l1_to_l2_message_hash",
          "start": 815
        },
        {
          "name": "compute_l1_to_l2_message_nullifier",
          "start": 1892
        },
        {
          "name": "hash_args",
          "start": 2151
        },
        {
          "name": "hash_calldata_array",
          "start": 2403
        },
        {
          "name": "compute_public_bytecode_commitment",
          "start": 3035
        },
        {
          "name": "secret_hash_matches_typescript",
          "start": 4194
        },
        {
          "name": "var_args_hash_matches_typescript",
          "start": 4555
        },
        {
          "name": "compute_calldata_hash",
          "start": 4965
        },
        {
          "name": "public_bytecode_commitment",
          "start": 5428
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/hash.nr",
      "source": "//! Aztec hash functions.\n\nuse crate::protocol::{\n    address::{AztecAddress, EthAddress},\n    constants::{\n        DOM_SEP__FUNCTION_ARGS, DOM_SEP__MESSAGE_NULLIFIER, DOM_SEP__PUBLIC_BYTECODE, DOM_SEP__PUBLIC_CALLDATA,\n        DOM_SEP__SECRET_HASH, MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS,\n    },\n    hash::{poseidon2_hash_subarray, poseidon2_hash_with_separator, sha256_to_field},\n    traits::ToField,\n};\n\npub use crate::protocol::hash::compute_siloed_nullifier;\n\npub fn compute_secret_hash<let N: u32>(secret: [Field; N]) -> Field {\n    poseidon2_hash_with_separator(secret, DOM_SEP__SECRET_HASH)\n}\n\npub fn compute_l1_to_l2_message_hash(\n    sender: EthAddress,\n    chain_id: Field,\n    recipient: AztecAddress,\n    version: Field,\n    content: Field,\n    secret_hash: Field,\n    leaf_index: Field,\n) -> Field {\n    let mut hash_bytes = [0 as u8; 224];\n    let sender_bytes: [u8; 32] = sender.to_field().to_be_bytes();\n    let chain_id_bytes: [u8; 32] = chain_id.to_be_bytes();\n    let recipient_bytes: [u8; 32] = recipient.to_field().to_be_bytes();\n    let version_bytes: [u8; 32] = version.to_be_bytes();\n    let content_bytes: [u8; 32] = content.to_be_bytes();\n    let secret_hash_bytes: [u8; 32] = secret_hash.to_be_bytes();\n    let leaf_index_bytes: [u8; 32] = leaf_index.to_be_bytes();\n\n    for i in 0..32 {\n        hash_bytes[i] = sender_bytes[i];\n        hash_bytes[i + 32] = chain_id_bytes[i];\n        hash_bytes[i + 64] = recipient_bytes[i];\n        hash_bytes[i + 96] = version_bytes[i];\n        hash_bytes[i + 128] = content_bytes[i];\n        hash_bytes[i + 160] = secret_hash_bytes[i];\n        hash_bytes[i + 192] = leaf_index_bytes[i];\n    }\n\n    sha256_to_field(hash_bytes)\n}\n\n// The nullifier of an l1 to l2 message is the hash of the message salted with the secret.\npub fn compute_l1_to_l2_message_nullifier<let N: u32>(message_hash: Field, secret: [Field; N]) -> Field {\n    poseidon2_hash_with_separator([message_hash].concat(secret), DOM_SEP__MESSAGE_NULLIFIER)\n}\n\n// Computes the hash of input arguments or return values for private functions, or for authwit creation.\npub fn hash_args<let N: u32>(args: [Field; N]) -> Field {\n    if args.len() == 0 {\n        0\n    } else {\n        poseidon2_hash_with_separator(args, DOM_SEP__FUNCTION_ARGS)\n    }\n}\n\n// Computes the hash of calldata for public functions.\npub fn hash_calldata_array<let N: u32>(calldata: [Field; N]) -> Field {\n    poseidon2_hash_with_separator(calldata, DOM_SEP__PUBLIC_CALLDATA)\n}\n\n/// Computes the public bytecode commitment for a contract class. The commitment is `hash([(length | separator),\n/// ...bytecode])`.\n///\n/// @param packed_bytecode - The packed bytecode of the contract class. 0th word is the length in bytes.\n/// packed_bytecode is mutable so that we can avoid copying the array to construct one starting with first_field\n/// instead of length. @returns The public bytecode commitment.\npub fn compute_public_bytecode_commitment(\n    mut packed_public_bytecode: [Field; MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS],\n) -> Field {\n    // First field element contains the length of the bytecode\n    let bytecode_length_in_bytes: u32 = packed_public_bytecode[0] as u32;\n    let bytecode_length_in_fields: u32 = (bytecode_length_in_bytes / 31) + (bytecode_length_in_bytes % 31 != 0) as u32;\n    // Don't allow empty public bytecode. AVM doesn't handle execution of contracts that exist with empty bytecode.\n    assert(bytecode_length_in_fields != 0);\n    assert(bytecode_length_in_fields < MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS);\n\n    // Packed_bytecode's 0th entry is the length. Append it to the separator before hashing.\n    let first_field = DOM_SEP__PUBLIC_BYTECODE.to_field() + (packed_public_bytecode[0] as u64 << 32) as Field;\n    packed_public_bytecode[0] = first_field;\n\n    // `fields_to_hash` is the number of fields from the start of `packed_public_bytecode` that should be included in\n    // the hash. Fields after this length are ignored. +1 to account for the prepended field.\n    let num_fields_to_hash = bytecode_length_in_fields + 1;\n\n    poseidon2_hash_subarray(packed_public_bytecode, num_fields_to_hash)\n}\n\n#[test]\nunconstrained fn secret_hash_matches_typescript() {\n    let secret = 8;\n    let hash = compute_secret_hash([secret]);\n\n    // The following value was generated by `yarn-project/stdlib/src/hash/hash.test.ts`\n    let secret_hash_from_ts = 0x1848b066724ab0ffb50ecb0ee3398eb839f162823d262bad959721a9c13d1e96;\n\n    assert_eq(hash, secret_hash_from_ts);\n}\n\n#[test]\nunconstrained fn var_args_hash_matches_typescript() {\n    let mut input = [0; 100];\n    for i in 0..100 {\n        input[i] = i as Field;\n    }\n    let hash = hash_args(input);\n\n    // The following value was generated by `yarn-project/stdlib/src/hash/hash.test.ts`\n    let var_args_hash_from_ts = 0x262e5e121a8efc0382566ab42f0ae2a78bd85db88484f83018fe07fc2552ba0c;\n\n    assert_eq(hash, var_args_hash_from_ts);\n}\n\n#[test]\nunconstrained fn compute_calldata_hash() {\n    let mut input = [0; 100];\n    for i in 0..input.len() {\n        input[i] = i as Field;\n    }\n    let hash = hash_calldata_array(input);\n\n    // The following value was generated by `yarn-project/stdlib/src/hash/hash.test.ts`\n    let calldata_hash_from_ts = 0x14a1539bdb1d26e03097cf4d40c87e02ca03f0bb50a3e617ace5a7bfd3943944;\n\n    // Used in cpp vm2 tests:\n    assert_eq(hash, calldata_hash_from_ts);\n}\n\n#[test]\nunconstrained fn public_bytecode_commitment() {\n    let mut input = [0; MAX_PACKED_PUBLIC_BYTECODE_SIZE_IN_FIELDS];\n    let len = 99;\n    for i in 1..len + 1 {\n        input[i] = i as Field;\n    }\n    input[0] = (len as Field) * 31;\n    let hash = compute_public_bytecode_commitment(input);\n    // Used in cpp vm2 tests:\n    assert_eq(hash, 0x09348974e76c3602893d7a4b4bb52c2ec746f1ade5004ac471d0fbb4587a81a6);\n}\n"
    },
    "95": {
      "function_locations": [
        {
          "name": "derive_ecdh_shared_secret",
          "start": 993
        },
        {
          "name": "compute_app_siloed_shared_secret",
          "start": 1348
        },
        {
          "name": "derive_shared_secret_subkey",
          "start": 1739
        },
        {
          "name": "derive_shared_secret_field_mask",
          "start": 2057
        },
        {
          "name": "test_consistency_with_typescript",
          "start": 2199
        },
        {
          "name": "test_shared_secret_computation_in_both_directions",
          "start": 3283
        },
        {
          "name": "test_shared_secret_computation_from_address_in_both_directions",
          "start": 3822
        },
        {
          "name": "test_app_siloed_shared_secret_differs_per_contract",
          "start": 5055
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/keys/ecdh_shared_secret.nr",
      "source": "use crate::protocol::{\n    address::aztec_address::AztecAddress,\n    constants::{DOM_SEP__APP_SILOED_ECDH_SHARED_SECRET, DOM_SEP__ECDH_FIELD_MASK, DOM_SEP__ECDH_SUBKEY},\n    hash::poseidon2_hash_with_separator,\n    point::EmbeddedCurvePoint,\n    scalar::Scalar,\n    traits::{FromField, ToField},\n};\nuse std::{embedded_curve_ops::multi_scalar_mul, ops::Neg};\n\n/// Computes a standard ECDH shared secret: secret * public_key = shared_secret.\n///\n/// The input secret is known only to one party. The output shared secret can be derived given knowledge of\n/// `public_key`'s key-pair and the public ephemeral secret, using this same function (with reversed inputs).\n///\n/// E.g.: Epk = esk * G // ephemeral key-pair\n///       Pk = sk * G // recipient key-pair\n///       Shared secret S = esk * Pk = sk * Epk\n///\n/// See also: https://en.wikipedia.org/wiki/Elliptic-curve_Diffie%E2%80%93Hellman\npub fn derive_ecdh_shared_secret(secret: Scalar, public_key: EmbeddedCurvePoint) -> EmbeddedCurvePoint {\n    multi_scalar_mul([public_key], [secret])\n}\n\n/// Computes an app-siloed shared secret from a raw ECDH shared secret point and a contract address.\n///\n/// `s_app = h(DOM_SEP__APP_SILOED_ECDH_SHARED_SECRET, S.x, S.y, contract_address)`\npub fn compute_app_siloed_shared_secret(shared_secret: EmbeddedCurvePoint, contract_address: AztecAddress) -> Field {\n    poseidon2_hash_with_separator(\n        [shared_secret.x, shared_secret.y, contract_address.to_field()],\n        DOM_SEP__APP_SILOED_ECDH_SHARED_SECRET,\n    )\n}\n\n/// Derives an indexed subkey from an app-siloed shared secret, used for AES key/IV derivation.\n///\n/// `s_i = h(DOM_SEP__ECDH_SUBKEY + i, s_app)`\npub(crate) fn derive_shared_secret_subkey(s_app: Field, index: u32) -> Field {\n    poseidon2_hash_with_separator([s_app], DOM_SEP__ECDH_SUBKEY + index)\n}\n\n/// Derives an indexed field mask from an app-siloed shared secret, used for masking ciphertext fields.\n///\n/// `m_i = h(DOM_SEP__ECDH_FIELD_MASK + i, s_app)`\npub(crate) fn derive_shared_secret_field_mask(s_app: Field, index: u32) -> Field {\n    poseidon2_hash_with_separator([s_app], DOM_SEP__ECDH_FIELD_MASK + index)\n}\n\n#[test]\nunconstrained fn test_consistency_with_typescript() {\n    let secret = Scalar {\n        lo: 0x00000000000000000000000000000000649e7ca01d9de27b21624098b897babd,\n        hi: 0x0000000000000000000000000000000023b3127c127b1f29a7adff5cccf8fb06,\n    };\n    let point = EmbeddedCurvePoint {\n        x: 0x2688431c705a5ff3e6c6f2573c9e3ba1c1026d2251d0dbbf2d810aa53fd1d186,\n        y: 0x1e96887b117afca01c00468264f4f80b5bb16d94c1808a448595f115556e5c8e,\n    };\n\n    let shared_secret = derive_ecdh_shared_secret(secret, point);\n\n    // This is just pasted from a test run. The original typescript code from which this could be generated seems to\n    // have been deleted by someone, and soon the typescript code for encryption and decryption won't be needed, so\n    // this will have to do.\n    let hard_coded_shared_secret = EmbeddedCurvePoint {\n        x: 0x15d55a5b3b2caa6a6207f313f05c5113deba5da9927d6421bcaa164822b911bc,\n        y: 0x0974c3d0825031ae933243d653ebb1a0b08b90ee7f228f94c5c74739ea3c871e,\n    };\n    assert_eq(shared_secret, hard_coded_shared_secret);\n}\n\n#[test]\nunconstrained fn test_shared_secret_computation_in_both_directions() {\n    let secret_a = Scalar { lo: 0x1234, hi: 0x2345 };\n    let secret_b = Scalar { lo: 0x3456, hi: 0x4567 };\n\n    let pk_a = std::embedded_curve_ops::fixed_base_scalar_mul(secret_a);\n    let pk_b = std::embedded_curve_ops::fixed_base_scalar_mul(secret_b);\n\n    let shared_secret = derive_ecdh_shared_secret(secret_a, pk_b);\n    let shared_secret_alt = derive_ecdh_shared_secret(secret_b, pk_a);\n\n    assert_eq(shared_secret, shared_secret_alt);\n}\n\n#[test]\nunconstrained fn test_shared_secret_computation_from_address_in_both_directions() {\n    let secret_a = Scalar { lo: 0x1234, hi: 0x2345 };\n    let secret_b = Scalar { lo: 0x3456, hi: 0x4567 };\n\n    let mut pk_a = std::embedded_curve_ops::fixed_base_scalar_mul(secret_a);\n    let mut pk_b = std::embedded_curve_ops::fixed_base_scalar_mul(secret_b);\n\n    let address_b = AztecAddress::from_field(pk_b.x);\n\n    // We were lazy in deriving the secret keys, and didn't check the resulting y-coordinates of the pk_a or pk_b to be\n    // less than half the field modulus. If needed, we negate the pk's so that they yield valid address points. (We\n    // could also have negated the secrets, but there's no negate method for EmbeddedCurvesScalar).\n    pk_a = if (AztecAddress::from_field(pk_a.x).to_address_point().unwrap().inner == pk_a) {\n        pk_a\n    } else {\n        pk_a.neg()\n    };\n    pk_b = if (address_b.to_address_point().unwrap().inner == pk_b) {\n        pk_b\n    } else {\n        pk_b.neg()\n    };\n\n    let shared_secret = derive_ecdh_shared_secret(secret_a, address_b.to_address_point().unwrap().inner);\n    let shared_secret_alt = derive_ecdh_shared_secret(secret_b, pk_a);\n\n    assert_eq(shared_secret, shared_secret_alt);\n}\n\n#[test]\nunconstrained fn test_app_siloed_shared_secret_differs_per_contract() {\n    let secret_a = Scalar { lo: 0x1234, hi: 0x2345 };\n    let pk_b = std::embedded_curve_ops::fixed_base_scalar_mul(Scalar { lo: 0x3456, hi: 0x4567 });\n\n    let shared_secret = derive_ecdh_shared_secret(secret_a, pk_b);\n\n    let contract_a = AztecAddress::from_field(0xAAAA);\n    let contract_b = AztecAddress::from_field(0xBBBB);\n\n    let s_app_a = compute_app_siloed_shared_secret(shared_secret, contract_a);\n    let s_app_b = compute_app_siloed_shared_secret(shared_secret, contract_b);\n\n    assert(s_app_a != s_app_b, \"app-siloed secrets must differ for different contracts\");\n}\n"
    },
    "96": {
      "function_locations": [
        {
          "name": "generate_ephemeral_key_pair",
          "start": 326
        },
        {
          "name": "generate_positive_ephemeral_key_pair",
          "start": 1731
        },
        {
          "name": "generate_secret_key_for_positive_public_key",
          "start": 2479
        },
        {
          "name": "test::generate_positive_ephemeral_key_pair_produces_positive_keys",
          "start": 3211
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/keys/ephemeral.nr",
      "source": "use std::embedded_curve_ops::{EmbeddedCurveScalar, fixed_base_scalar_mul};\n\nuse crate::protocol::{point::EmbeddedCurvePoint, scalar::Scalar};\n\nuse crate::{oracle::random::random, utils::point::get_sign_of_point};\n\n/// Generates a random ephemeral key pair.\npub fn generate_ephemeral_key_pair() -> (Scalar, EmbeddedCurvePoint) {\n    // @todo Need to draw randomness from the full domain of Fq not only Fr\n\n    // Safety: we use the randomness to preserve the privacy of both the sender and recipient via encryption, so a\n    // malicious sender could use non-random values to reveal the plaintext. But they already know it themselves\n    // anyway, and so the recipient already trusts them to not disclose this information. We can therefore assume that\n    // the sender will cooperate in the random value generation.\n    let randomness = unsafe { random() };\n\n    // TODO(#12757): compute the key pair without constraining eph_sk twice (once in from_field, once in the black box\n    // called by fixed_base_scalar_mul).\n    let eph_sk = EmbeddedCurveScalar::from_field(randomness);\n    let eph_pk = fixed_base_scalar_mul(eph_sk);\n\n    (eph_sk, eph_pk)\n}\n\n/// Generates a random ephemeral key pair with a positive y-coordinate.\n///\n/// Unlike [`generate_ephemeral_key_pair`], the y-coordinate of the public key is guaranteed to be a positive value\n/// (i.e. [`crate::utils::point::get_sign_of_point`] will return `true`).\n///\n/// This is useful as it means it is possible to just broadcast the x-coordinate as a single `Field` and then\n/// reconstruct the original public key using [`crate::utils::point::point_from_x_coord_and_sign`] with `sign: true`.\npub fn generate_positive_ephemeral_key_pair() -> (Scalar, EmbeddedCurvePoint) {\n    // Safety: we use the randomness to preserve the privacy of both the sender and recipient via encryption, so a\n    // malicious sender could use non-random values to reveal the plaintext. But they already know it themselves\n    // anyway, and so the recipient already trusts them to not disclose this information. We can therefore assume that\n    // the sender will cooperate in the random value generation.\n    let eph_sk = unsafe { generate_secret_key_for_positive_public_key() };\n    let eph_pk = fixed_base_scalar_mul(eph_sk);\n\n    assert(get_sign_of_point(eph_pk), \"Got an ephemeral public key with a negative y coordinate\");\n\n    (eph_sk, eph_pk)\n}\n\nunconstrained fn generate_secret_key_for_positive_public_key() -> EmbeddedCurveScalar {\n    let mut sk = std::mem::zeroed();\n\n    loop {\n        // We simply produce random secret keys until we find one that has results in a positive public key. About half\n        // of all public keys fulfill this condition, so this should only take a few iterations at most.\n\n        // @todo Need to draw randomness from the full domain of Fq not only Fr\n        sk = EmbeddedCurveScalar::from_field(random());\n        let pk = fixed_base_scalar_mul(sk);\n        if get_sign_of_point(pk) {\n            break;\n        }\n    }\n\n    sk\n}\n\nmod test {\n    use crate::utils::point::get_sign_of_point;\n    use super::generate_positive_ephemeral_key_pair;\n\n    #[test]\n    fn generate_positive_ephemeral_key_pair_produces_positive_keys() {\n        // About half of random points are negative, so testing just a couple gives us high confidence that\n        // `generate_positive_ephemeral_key_pair` is indeed producing positive ones.\n        for _ in 0..10 {\n            let (_, pk) = generate_positive_ephemeral_key_pair();\n            assert(get_sign_of_point(pk));\n        }\n    }\n}\n"
    },
    "97": {
      "function_locations": [
        {
          "name": "get_nhk_app",
          "start": 380
        },
        {
          "name": "get_ovsk_app",
          "start": 787
        },
        {
          "name": "get_public_keys",
          "start": 1263
        },
        {
          "name": "try_get_public_keys",
          "start": 1792
        },
        {
          "name": "test::get_public_keys_fails_with_bad_hint",
          "start": 2270
        }
      ],
      "path": "/home/aztec-dev/aztec-packages/noir-projects/aztec-nr/aztec/src/keys/getters/mod.nr",
      "source": "use crate::{\n    keys::constants::{NULLIFIER_INDEX, OUTGOING_INDEX},\n    oracle::{\n        key_validation_request::get_key_validation_request,\n        keys::{get_public_keys_and_partial_address, try_get_public_keys_and_partial_address},\n    },\n};\nuse crate::protocol::{address::AztecAddress, public_keys::PublicKeys};\n\npub unconstrained fn get_nhk_app(npk_m_hash: Field) -> Field {\n    get_key_validation_request(npk_m_hash, NULLIFIER_INDEX).sk_app\n}\n\n// A helper function that gets app-siloed outgoing viewing key for a given `ovpk_m_hash`. This function is used in\n// unconstrained contexts only - when computing unconstrained note logs. The safe alternative is `request_ovsk_app`\n// function defined on `PrivateContext`.\npub unconstrained fn get_ovsk_app(ovpk_m_hash: Field) -> Field {\n    get_key_validation_request(ovpk_m_hash, OUTGOING_INDEX).sk_app\n}\n\n// Returns all public keys for a given account, applying proper constraints to the context. We read all keys at once\n// since the constraints for reading them all are actually fewer than if we read them one at a time - any read keys\n// that are not required by the caller can simply be discarded.\n// Fails if the public keys are not registered\npub fn get_public_keys(account: AztecAddress) -> PublicKeys {\n    // Safety: Public keys are constrained by showing their inclusion in the address's preimage.\n    let (public_keys, partial_address) = unsafe { get_public_keys_and_partial_address(account) };\n    assert_eq(account, AztecAddress::compute(public_keys, partial_address), \"Invalid public keys hint for address\");\n\n    public_keys\n}\n\n/// Returns all public keys for a given account, or `None` if the public keys are not registered in the PXE.\npub unconstrained fn try_get_public_keys(account: AztecAddress) -> Option<PublicKeys> {\n    try_get_public_keys_and_partial_address(account).map(|(public_keys, _)| public_keys)\n}\n\nmod test {\n    use super::get_public_keys;\n\n    use crate::protocol::{address::PartialAddress, point::EmbeddedCurvePoint, public_keys::{IvpkM, PublicKeys}};\n    use crate::test::helpers::test_environment::TestEnvironment;\n    use std::test::OracleMock;\n\n    #[test(should_fail_with = \"Invalid public keys hint for address\")]\n    unconstrained fn get_public_keys_fails_with_bad_hint() {\n        let mut env = TestEnvironment::new();\n        let account = env.create_light_account();\n\n        // Instead of querying for some unknown account, which would result in the oracle erroring out, we mock a bad\n        // oracle response to check that the circuit properly checks the address derivation. The values below are\n        // arbitrary; `ivpk_m` does not have to be on-curve to make this test fail.\n        let public_keys = PublicKeys {\n            npk_m_hash: 0x292364b852c6c6f01472951e76a39cbcf074591fd0e063a81965e7b51ad868a5,\n            ivpk_m: IvpkM {\n                inner: EmbeddedCurvePoint {\n                    x: 0x173c5229a00c5425255680dd6edc27e278c48883991f348fe6985de43b4ec25f,\n                    y: 0x1698608e23b5f6c2f43c49a559108bb64e2247b8fc2da842296a416817f40b7f,\n                },\n            },\n            ovpk_m_hash: 0x1bad2f7d1ad960a1bd0fe4d2c8d17f5ab4a86ef8b103e0a9e7f67ec0d3b4795e,\n            tpk_m_hash: 0x05e3bd9cfe6b47daa139613619cf7d7fd8bb0112b6f2908caa6d9b536ed948ed,\n            mspk_m_hash: 0x1a4f87ed20a8ce7e8d2b2c731f9b3d39f37e2d4ab2c6db66f7c8e3e9f1b6b39d,\n            fbpk_m_hash: 0x0fbb9c2bf6cb4d4a1d4ee2f8b3a2c5e3d4b9c1a8e5f2d6b7c8e3f4a5b6c7d8e9,\n        };\n        let partial_address = PartialAddress::from_field(\n            0x236703e2cb00a182e024e98e9f759231b556d25ff19f98896cebb69e9e678cc9,\n        );\n\n        let _ = OracleMock::mock(\"aztec_utl_getPublicKeysAndPartialAddress\").returns(Option::some((\n            public_keys, partial_address,\n        )));\n        let _ = get_public_keys(account);\n    }\n}\n"
    }
  },
  "functions": [
    {
      "abi": {
        "error_types": {
          "12469291177396340830": {
            "error_kind": "string",
            "string": "call to assert_max_bit_size"
          },
          "14415304921900233953": {
            "error_kind": "string",
            "string": "Initializer address is not the contract deployer"
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "7555607922535724711": {
            "error_kind": "string",
            "string": "Preimage mismatch"
          },
          "9967937311635654895": {
            "error_kind": "string",
            "string": "Initialization hash does not match"
          }
        },
        "parameters": [
          {
            "name": "inputs",
            "type": {
              "fields": [
                {
                  "name": "call_context",
                  "type": {
                    "fields": [
                      {
                        "name": "msg_sender",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "contract_address",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "function_selector",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                        }
                      },
                      {
                        "name": "is_static_call",
                        "type": {
                          "kind": "boolean"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::call_context::CallContext"
                  }
                },
                {
                  "name": "anchor_block_header",
                  "type": {
                    "fields": [
                      {
                        "name": "last_archive",
                        "type": {
                          "fields": [
                            {
                              "name": "root",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "next_available_leaf_index",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                        }
                      },
                      {
                        "name": "state",
                        "type": {
                          "fields": [
                            {
                              "name": "l1_to_l2_message_tree",
                              "type": {
                                "fields": [
                                  {
                                    "name": "root",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "next_available_leaf_index",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                              }
                            },
                            {
                              "name": "partial",
                              "type": {
                                "fields": [
                                  {
                                    "name": "note_hash_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "nullifier_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "public_data_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::state_reference::StateReference"
                        }
                      },
                      {
                        "name": "sponge_blob_hash",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "global_variables",
                        "type": {
                          "fields": [
                            {
                              "name": "chain_id",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "version",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "block_number",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "slot_number",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "timestamp",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 64
                              }
                            },
                            {
                              "name": "coinbase",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::eth_address::EthAddress"
                              }
                            },
                            {
                              "name": "fee_recipient",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            },
                            {
                              "name": "gas_fees",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                        }
                      },
                      {
                        "name": "total_fees",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "total_mana_used",
                        "type": {
                          "kind": "field"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                  }
                },
                {
                  "name": "tx_context",
                  "type": {
                    "fields": [
                      {
                        "name": "chain_id",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "version",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "gas_settings",
                        "type": {
                          "fields": [
                            {
                              "name": "gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "teardown_gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "max_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            },
                            {
                              "name": "max_priority_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                  }
                },
                {
                  "name": "start_side_effect_counter",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                },
                {
                  "name": "tx_request_salt",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::context::inputs::private_context_inputs::PrivateContextInputs"
            },
            "visibility": "private"
          },
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "fields": [
              {
                "name": "call_context",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "function_selector",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::call_context::CallContext"
                }
              },
              {
                "name": "args_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "returns_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "anchor_block_header",
                "type": {
                  "fields": [
                    {
                      "name": "last_archive",
                      "type": {
                        "fields": [
                          {
                            "name": "root",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "next_available_leaf_index",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                      }
                    },
                    {
                      "name": "state",
                      "type": {
                        "fields": [
                          {
                            "name": "l1_to_l2_message_tree",
                            "type": {
                              "fields": [
                                {
                                  "name": "root",
                                  "type": {
                                    "kind": "field"
                                  }
                                },
                                {
                                  "name": "next_available_leaf_index",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                            }
                          },
                          {
                            "name": "partial",
                            "type": {
                              "fields": [
                                {
                                  "name": "note_hash_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "nullifier_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "public_data_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::state_reference::StateReference"
                      }
                    },
                    {
                      "name": "sponge_blob_hash",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "global_variables",
                      "type": {
                        "fields": [
                          {
                            "name": "chain_id",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "version",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "block_number",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          },
                          {
                            "name": "slot_number",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "timestamp",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 64
                            }
                          },
                          {
                            "name": "coinbase",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::eth_address::EthAddress"
                            }
                          },
                          {
                            "name": "fee_recipient",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                            }
                          },
                          {
                            "name": "gas_fees",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                      }
                    },
                    {
                      "name": "total_fees",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "total_mana_used",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                }
              },
              {
                "name": "tx_context",
                "type": {
                  "fields": [
                    {
                      "name": "chain_id",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "version",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "gas_settings",
                      "type": {
                        "fields": [
                          {
                            "name": "gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "teardown_gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "max_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          },
                          {
                            "name": "max_priority_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                }
              },
              {
                "name": "min_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "is_fee_payer",
                "type": {
                  "kind": "boolean"
                }
              },
              {
                "name": "expiration_timestamp",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 64
                }
              },
              {
                "name": "start_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "end_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_non_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "note_hash_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifier_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "key_validation_requests_and_separators",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "request",
                              "type": {
                                "fields": [
                                  {
                                    "name": "pk_m_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "sk_app",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::validation_requests::key_validation_request::KeyValidationRequest"
                              }
                            },
                            {
                              "name": "key_type_domain_separator",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::validation_requests::key_validation_request_and_separator::KeyValidationRequestAndSeparator"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "call_context",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "function_selector",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::call_context::CallContext"
                              }
                            },
                            {
                              "name": "args_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "returns_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "start_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "end_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::private_call_request::PrivateCallRequest"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 32,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  },
                                  {
                                    "name": "calldata_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_teardown_call_request",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    },
                    {
                      "name": "calldata_hash",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                }
              },
              {
                "name": "note_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifiers",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "note_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::nullifier::Nullifier"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "l2_to_l1_msgs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "recipient",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::eth_address::EthAddress"
                                    }
                                  },
                                  {
                                    "name": "content",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::messaging::l2_to_l1_message::L2ToL1Message"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_logs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "log",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "fields",
                                          "type": {
                                            "kind": "array",
                                            "length": 16,
                                            "type": {
                                              "kind": "field"
                                            }
                                          }
                                        },
                                        {
                                          "name": "length",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::log::Log"
                                    }
                                  },
                                  {
                                    "name": "note_hash_counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::private_log::PrivateLogData"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "contract_class_logs_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 1,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "length",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::log_hash::LogHash"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "tx_request_salt",
                "type": {
                  "kind": "field"
                }
              }
            ],
            "kind": "struct",
            "path": "aztec::protocol_types::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs"
          },
          "visibility": "databus"
        }
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_private",
        "abi_initializer"
      ],
      "debug_symbols": "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",
      "is_unconstrained": false,
      "name": "constructor",
      "verification_key": "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"
    },
    {
      "abi": {
        "error_types": {
          "12469291177396340830": {
            "error_kind": "string",
            "string": "call to assert_max_bit_size"
          },
          "12820178569648940736": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 48
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "16466267804227883608": {
            "error_kind": "string",
            "string": "Got an ephemeral public key with a negative y coordinate"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "1998584279744703196": {
            "error_kind": "string",
            "string": "attempt to subtract with overflow"
          },
          "5449178635769758673": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 61
          },
          "643863379597415252": {
            "error_kind": "string",
            "string": "A NewNote cannot have a zero note hash counter"
          },
          "7217415691812985622": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 123
          },
          "7555607922535724711": {
            "error_kind": "string",
            "string": "Preimage mismatch"
          },
          "9703767922216001139": {
            "error_kind": "string",
            "string": "Can't read a pending nullifier with a zero contract address"
          },
          "9791669845391776238": {
            "error_kind": "string",
            "string": "0 has a square root; you cannot claim it is not square"
          }
        },
        "parameters": [
          {
            "name": "inputs",
            "type": {
              "fields": [
                {
                  "name": "call_context",
                  "type": {
                    "fields": [
                      {
                        "name": "msg_sender",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "contract_address",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "function_selector",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                        }
                      },
                      {
                        "name": "is_static_call",
                        "type": {
                          "kind": "boolean"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::call_context::CallContext"
                  }
                },
                {
                  "name": "anchor_block_header",
                  "type": {
                    "fields": [
                      {
                        "name": "last_archive",
                        "type": {
                          "fields": [
                            {
                              "name": "root",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "next_available_leaf_index",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                        }
                      },
                      {
                        "name": "state",
                        "type": {
                          "fields": [
                            {
                              "name": "l1_to_l2_message_tree",
                              "type": {
                                "fields": [
                                  {
                                    "name": "root",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "next_available_leaf_index",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                              }
                            },
                            {
                              "name": "partial",
                              "type": {
                                "fields": [
                                  {
                                    "name": "note_hash_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "nullifier_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "public_data_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::state_reference::StateReference"
                        }
                      },
                      {
                        "name": "sponge_blob_hash",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "global_variables",
                        "type": {
                          "fields": [
                            {
                              "name": "chain_id",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "version",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "block_number",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "slot_number",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "timestamp",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 64
                              }
                            },
                            {
                              "name": "coinbase",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::eth_address::EthAddress"
                              }
                            },
                            {
                              "name": "fee_recipient",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            },
                            {
                              "name": "gas_fees",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                        }
                      },
                      {
                        "name": "total_fees",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "total_mana_used",
                        "type": {
                          "kind": "field"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                  }
                },
                {
                  "name": "tx_context",
                  "type": {
                    "fields": [
                      {
                        "name": "chain_id",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "version",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "gas_settings",
                        "type": {
                          "fields": [
                            {
                              "name": "gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "teardown_gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "max_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            },
                            {
                              "name": "max_priority_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                  }
                },
                {
                  "name": "start_side_effect_counter",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                },
                {
                  "name": "tx_request_salt",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::context::inputs::private_context_inputs::PrivateContextInputs"
            },
            "visibility": "private"
          },
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "fields": [
              {
                "name": "call_context",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "function_selector",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::call_context::CallContext"
                }
              },
              {
                "name": "args_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "returns_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "anchor_block_header",
                "type": {
                  "fields": [
                    {
                      "name": "last_archive",
                      "type": {
                        "fields": [
                          {
                            "name": "root",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "next_available_leaf_index",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                      }
                    },
                    {
                      "name": "state",
                      "type": {
                        "fields": [
                          {
                            "name": "l1_to_l2_message_tree",
                            "type": {
                              "fields": [
                                {
                                  "name": "root",
                                  "type": {
                                    "kind": "field"
                                  }
                                },
                                {
                                  "name": "next_available_leaf_index",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                            }
                          },
                          {
                            "name": "partial",
                            "type": {
                              "fields": [
                                {
                                  "name": "note_hash_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "nullifier_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "public_data_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::state_reference::StateReference"
                      }
                    },
                    {
                      "name": "sponge_blob_hash",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "global_variables",
                      "type": {
                        "fields": [
                          {
                            "name": "chain_id",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "version",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "block_number",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          },
                          {
                            "name": "slot_number",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "timestamp",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 64
                            }
                          },
                          {
                            "name": "coinbase",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::eth_address::EthAddress"
                            }
                          },
                          {
                            "name": "fee_recipient",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                            }
                          },
                          {
                            "name": "gas_fees",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                      }
                    },
                    {
                      "name": "total_fees",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "total_mana_used",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                }
              },
              {
                "name": "tx_context",
                "type": {
                  "fields": [
                    {
                      "name": "chain_id",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "version",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "gas_settings",
                      "type": {
                        "fields": [
                          {
                            "name": "gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "teardown_gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "max_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          },
                          {
                            "name": "max_priority_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                }
              },
              {
                "name": "min_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "is_fee_payer",
                "type": {
                  "kind": "boolean"
                }
              },
              {
                "name": "expiration_timestamp",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 64
                }
              },
              {
                "name": "start_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "end_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_non_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "note_hash_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifier_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "key_validation_requests_and_separators",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "request",
                              "type": {
                                "fields": [
                                  {
                                    "name": "pk_m_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "sk_app",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::validation_requests::key_validation_request::KeyValidationRequest"
                              }
                            },
                            {
                              "name": "key_type_domain_separator",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::validation_requests::key_validation_request_and_separator::KeyValidationRequestAndSeparator"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "call_context",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "function_selector",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::call_context::CallContext"
                              }
                            },
                            {
                              "name": "args_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "returns_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "start_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "end_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::private_call_request::PrivateCallRequest"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 32,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  },
                                  {
                                    "name": "calldata_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_teardown_call_request",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    },
                    {
                      "name": "calldata_hash",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                }
              },
              {
                "name": "note_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifiers",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "note_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::nullifier::Nullifier"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "l2_to_l1_msgs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "recipient",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::eth_address::EthAddress"
                                    }
                                  },
                                  {
                                    "name": "content",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::messaging::l2_to_l1_message::L2ToL1Message"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_logs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "log",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "fields",
                                          "type": {
                                            "kind": "array",
                                            "length": 16,
                                            "type": {
                                              "kind": "field"
                                            }
                                          }
                                        },
                                        {
                                          "name": "length",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::log::Log"
                                    }
                                  },
                                  {
                                    "name": "note_hash_counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::private_log::PrivateLogData"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "contract_class_logs_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 1,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "length",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::log_hash::LogHash"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "tx_request_salt",
                "type": {
                  "kind": "field"
                }
              }
            ],
            "kind": "struct",
            "path": "aztec::protocol_types::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs"
          },
          "visibility": "databus"
        }
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_private"
      ],
      "debug_symbols": "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",
      "is_unconstrained": false,
      "name": "create_note",
      "verification_key": "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"
    },
    {
      "abi": {
        "error_types": {
          "12820178569648940736": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 48
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "16466267804227883608": {
            "error_kind": "string",
            "string": "Got an ephemeral public key with a negative y coordinate"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "1998584279744703196": {
            "error_kind": "string",
            "string": "attempt to subtract with overflow"
          },
          "5449178635769758673": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 61
          },
          "643863379597415252": {
            "error_kind": "string",
            "string": "A NewNote cannot have a zero note hash counter"
          },
          "7217415691812985622": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 123
          },
          "7555607922535724711": {
            "error_kind": "string",
            "string": "Preimage mismatch"
          },
          "9791669845391776238": {
            "error_kind": "string",
            "string": "0 has a square root; you cannot claim it is not square"
          }
        },
        "parameters": [
          {
            "name": "inputs",
            "type": {
              "fields": [
                {
                  "name": "call_context",
                  "type": {
                    "fields": [
                      {
                        "name": "msg_sender",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "contract_address",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "function_selector",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                        }
                      },
                      {
                        "name": "is_static_call",
                        "type": {
                          "kind": "boolean"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::call_context::CallContext"
                  }
                },
                {
                  "name": "anchor_block_header",
                  "type": {
                    "fields": [
                      {
                        "name": "last_archive",
                        "type": {
                          "fields": [
                            {
                              "name": "root",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "next_available_leaf_index",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                        }
                      },
                      {
                        "name": "state",
                        "type": {
                          "fields": [
                            {
                              "name": "l1_to_l2_message_tree",
                              "type": {
                                "fields": [
                                  {
                                    "name": "root",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "next_available_leaf_index",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                              }
                            },
                            {
                              "name": "partial",
                              "type": {
                                "fields": [
                                  {
                                    "name": "note_hash_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "nullifier_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "public_data_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::state_reference::StateReference"
                        }
                      },
                      {
                        "name": "sponge_blob_hash",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "global_variables",
                        "type": {
                          "fields": [
                            {
                              "name": "chain_id",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "version",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "block_number",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "slot_number",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "timestamp",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 64
                              }
                            },
                            {
                              "name": "coinbase",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::eth_address::EthAddress"
                              }
                            },
                            {
                              "name": "fee_recipient",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            },
                            {
                              "name": "gas_fees",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                        }
                      },
                      {
                        "name": "total_fees",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "total_mana_used",
                        "type": {
                          "kind": "field"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                  }
                },
                {
                  "name": "tx_context",
                  "type": {
                    "fields": [
                      {
                        "name": "chain_id",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "version",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "gas_settings",
                        "type": {
                          "fields": [
                            {
                              "name": "gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "teardown_gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "max_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            },
                            {
                              "name": "max_priority_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                  }
                },
                {
                  "name": "start_side_effect_counter",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                },
                {
                  "name": "tx_request_salt",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::context::inputs::private_context_inputs::PrivateContextInputs"
            },
            "visibility": "private"
          },
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "fields": [
              {
                "name": "call_context",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "function_selector",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::call_context::CallContext"
                }
              },
              {
                "name": "args_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "returns_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "anchor_block_header",
                "type": {
                  "fields": [
                    {
                      "name": "last_archive",
                      "type": {
                        "fields": [
                          {
                            "name": "root",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "next_available_leaf_index",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                      }
                    },
                    {
                      "name": "state",
                      "type": {
                        "fields": [
                          {
                            "name": "l1_to_l2_message_tree",
                            "type": {
                              "fields": [
                                {
                                  "name": "root",
                                  "type": {
                                    "kind": "field"
                                  }
                                },
                                {
                                  "name": "next_available_leaf_index",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                            }
                          },
                          {
                            "name": "partial",
                            "type": {
                              "fields": [
                                {
                                  "name": "note_hash_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "nullifier_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "public_data_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::state_reference::StateReference"
                      }
                    },
                    {
                      "name": "sponge_blob_hash",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "global_variables",
                      "type": {
                        "fields": [
                          {
                            "name": "chain_id",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "version",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "block_number",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          },
                          {
                            "name": "slot_number",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "timestamp",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 64
                            }
                          },
                          {
                            "name": "coinbase",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::eth_address::EthAddress"
                            }
                          },
                          {
                            "name": "fee_recipient",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                            }
                          },
                          {
                            "name": "gas_fees",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                      }
                    },
                    {
                      "name": "total_fees",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "total_mana_used",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                }
              },
              {
                "name": "tx_context",
                "type": {
                  "fields": [
                    {
                      "name": "chain_id",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "version",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "gas_settings",
                      "type": {
                        "fields": [
                          {
                            "name": "gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "teardown_gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "max_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          },
                          {
                            "name": "max_priority_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                }
              },
              {
                "name": "min_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "is_fee_payer",
                "type": {
                  "kind": "boolean"
                }
              },
              {
                "name": "expiration_timestamp",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 64
                }
              },
              {
                "name": "start_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "end_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_non_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "note_hash_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifier_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "key_validation_requests_and_separators",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "request",
                              "type": {
                                "fields": [
                                  {
                                    "name": "pk_m_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "sk_app",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::validation_requests::key_validation_request::KeyValidationRequest"
                              }
                            },
                            {
                              "name": "key_type_domain_separator",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::validation_requests::key_validation_request_and_separator::KeyValidationRequestAndSeparator"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "call_context",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "function_selector",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::call_context::CallContext"
                              }
                            },
                            {
                              "name": "args_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "returns_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "start_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "end_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::private_call_request::PrivateCallRequest"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 32,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  },
                                  {
                                    "name": "calldata_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_teardown_call_request",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    },
                    {
                      "name": "calldata_hash",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                }
              },
              {
                "name": "note_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifiers",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "note_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::nullifier::Nullifier"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "l2_to_l1_msgs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "recipient",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::eth_address::EthAddress"
                                    }
                                  },
                                  {
                                    "name": "content",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::messaging::l2_to_l1_message::L2ToL1Message"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_logs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "log",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "fields",
                                          "type": {
                                            "kind": "array",
                                            "length": 16,
                                            "type": {
                                              "kind": "field"
                                            }
                                          }
                                        },
                                        {
                                          "name": "length",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::log::Log"
                                    }
                                  },
                                  {
                                    "name": "note_hash_counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::private_log::PrivateLogData"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "contract_class_logs_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 1,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "length",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::log_hash::LogHash"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "tx_request_salt",
                "type": {
                  "kind": "field"
                }
              }
            ],
            "kind": "struct",
            "path": "aztec::protocol_types::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs"
          },
          "visibility": "databus"
        }
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_private"
      ],
      "debug_symbols": "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",
      "is_unconstrained": false,
      "name": "create_note_no_init_check",
      "verification_key": "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"
    },
    {
      "abi": {
        "error_types": {
          "10522114655416116165": {
            "error_kind": "string",
            "string": "Can't read a transient note with a zero contract address"
          },
          "10835759466430049078": {
            "error_kind": "string",
            "string": "Collapse hint vec length mismatch"
          },
          "11088061827347467743": {
            "error_kind": "string",
            "string": "Note owner mismatch."
          },
          "12469291177396340830": {
            "error_kind": "string",
            "string": "call to assert_max_bit_size"
          },
          "12820178569648940736": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 48
          },
          "12913276134398371456": {
            "error_kind": "string",
            "string": "push out of bounds"
          },
          "13049348927268151465": {
            "error_kind": "string",
            "string": "Dirty collapsed vec storage"
          },
          "13671158251341025138": {
            "error_kind": "string",
            "string": "Got more notes than limit."
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "16466267804227883608": {
            "error_kind": "string",
            "string": "Got an ephemeral public key with a negative y coordinate"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "17968463464609163264": {
            "error_kind": "string",
            "string": "Note is not in stage SETTLED"
          },
          "18160147074902047180": {
            "error_kind": "string",
            "string": "Out of bounds index hint"
          },
          "18195344559583857168": {
            "error_kind": "string",
            "string": "Wrong collapsed vec length"
          },
          "186772300998906374": {
            "error_kind": "string",
            "string": "Obtained key validation request for wrong pk_m_hash"
          },
          "1998584279744703196": {
            "error_kind": "string",
            "string": "attempt to subtract with overflow"
          },
          "2431956315772066139": {
            "error_kind": "string",
            "string": "Note is not in stage PENDING_PREVIOUS_PHASE"
          },
          "3387382714057837913": {
            "error_kind": "string",
            "string": "Note storage slot mismatch."
          },
          "5449178635769758673": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 61
          },
          "5955197699778714817": {
            "error_kind": "string",
            "string": "Wrong collapsed vec order"
          },
          "643863379597415252": {
            "error_kind": "string",
            "string": "A NewNote cannot have a zero note hash counter"
          },
          "7217415691812985622": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 123
          },
          "7555607922535724711": {
            "error_kind": "string",
            "string": "Preimage mismatch"
          },
          "8754864405609694316": {
            "error_kind": "string",
            "string": "Wrong collapsed vec content"
          },
          "8992688621799713766": {
            "error_kind": "string",
            "string": "Invalid public keys hint for address"
          },
          "9460929337190338452": {
            "error_kind": "string",
            "string": "Note contract address mismatch."
          },
          "9688791427233494233": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 17
          },
          "9791669845391776238": {
            "error_kind": "string",
            "string": "0 has a square root; you cannot claim it is not square"
          },
          "992401946138144806": {
            "error_kind": "string",
            "string": "Attempted to read past end of BoundedVec"
          },
          "9970201630854352883": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "fields": [
                  {
                    "name": "inner",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
              }
            ],
            "length": 48
          }
        },
        "parameters": [
          {
            "name": "inputs",
            "type": {
              "fields": [
                {
                  "name": "call_context",
                  "type": {
                    "fields": [
                      {
                        "name": "msg_sender",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "contract_address",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "function_selector",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                        }
                      },
                      {
                        "name": "is_static_call",
                        "type": {
                          "kind": "boolean"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::call_context::CallContext"
                  }
                },
                {
                  "name": "anchor_block_header",
                  "type": {
                    "fields": [
                      {
                        "name": "last_archive",
                        "type": {
                          "fields": [
                            {
                              "name": "root",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "next_available_leaf_index",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                        }
                      },
                      {
                        "name": "state",
                        "type": {
                          "fields": [
                            {
                              "name": "l1_to_l2_message_tree",
                              "type": {
                                "fields": [
                                  {
                                    "name": "root",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "next_available_leaf_index",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                              }
                            },
                            {
                              "name": "partial",
                              "type": {
                                "fields": [
                                  {
                                    "name": "note_hash_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "nullifier_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "public_data_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::state_reference::StateReference"
                        }
                      },
                      {
                        "name": "sponge_blob_hash",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "global_variables",
                        "type": {
                          "fields": [
                            {
                              "name": "chain_id",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "version",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "block_number",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "slot_number",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "timestamp",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 64
                              }
                            },
                            {
                              "name": "coinbase",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::eth_address::EthAddress"
                              }
                            },
                            {
                              "name": "fee_recipient",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            },
                            {
                              "name": "gas_fees",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                        }
                      },
                      {
                        "name": "total_fees",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "total_mana_used",
                        "type": {
                          "kind": "field"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                  }
                },
                {
                  "name": "tx_context",
                  "type": {
                    "fields": [
                      {
                        "name": "chain_id",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "version",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "gas_settings",
                        "type": {
                          "fields": [
                            {
                              "name": "gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "teardown_gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "max_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            },
                            {
                              "name": "max_priority_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                  }
                },
                {
                  "name": "start_side_effect_counter",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                },
                {
                  "name": "tx_request_salt",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::context::inputs::private_context_inputs::PrivateContextInputs"
            },
            "visibility": "private"
          },
          {
            "name": "recipient",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "fields": [
              {
                "name": "call_context",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "function_selector",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::call_context::CallContext"
                }
              },
              {
                "name": "args_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "returns_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "anchor_block_header",
                "type": {
                  "fields": [
                    {
                      "name": "last_archive",
                      "type": {
                        "fields": [
                          {
                            "name": "root",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "next_available_leaf_index",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                      }
                    },
                    {
                      "name": "state",
                      "type": {
                        "fields": [
                          {
                            "name": "l1_to_l2_message_tree",
                            "type": {
                              "fields": [
                                {
                                  "name": "root",
                                  "type": {
                                    "kind": "field"
                                  }
                                },
                                {
                                  "name": "next_available_leaf_index",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                            }
                          },
                          {
                            "name": "partial",
                            "type": {
                              "fields": [
                                {
                                  "name": "note_hash_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "nullifier_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "public_data_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::state_reference::StateReference"
                      }
                    },
                    {
                      "name": "sponge_blob_hash",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "global_variables",
                      "type": {
                        "fields": [
                          {
                            "name": "chain_id",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "version",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "block_number",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          },
                          {
                            "name": "slot_number",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "timestamp",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 64
                            }
                          },
                          {
                            "name": "coinbase",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::eth_address::EthAddress"
                            }
                          },
                          {
                            "name": "fee_recipient",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                            }
                          },
                          {
                            "name": "gas_fees",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                      }
                    },
                    {
                      "name": "total_fees",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "total_mana_used",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                }
              },
              {
                "name": "tx_context",
                "type": {
                  "fields": [
                    {
                      "name": "chain_id",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "version",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "gas_settings",
                      "type": {
                        "fields": [
                          {
                            "name": "gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "teardown_gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "max_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          },
                          {
                            "name": "max_priority_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                }
              },
              {
                "name": "min_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "is_fee_payer",
                "type": {
                  "kind": "boolean"
                }
              },
              {
                "name": "expiration_timestamp",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 64
                }
              },
              {
                "name": "start_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "end_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_non_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "note_hash_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifier_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "key_validation_requests_and_separators",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "request",
                              "type": {
                                "fields": [
                                  {
                                    "name": "pk_m_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "sk_app",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::validation_requests::key_validation_request::KeyValidationRequest"
                              }
                            },
                            {
                              "name": "key_type_domain_separator",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::validation_requests::key_validation_request_and_separator::KeyValidationRequestAndSeparator"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "call_context",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "function_selector",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::call_context::CallContext"
                              }
                            },
                            {
                              "name": "args_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "returns_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "start_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "end_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::private_call_request::PrivateCallRequest"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 32,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  },
                                  {
                                    "name": "calldata_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_teardown_call_request",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    },
                    {
                      "name": "calldata_hash",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                }
              },
              {
                "name": "note_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifiers",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "note_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::nullifier::Nullifier"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "l2_to_l1_msgs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "recipient",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::eth_address::EthAddress"
                                    }
                                  },
                                  {
                                    "name": "content",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::messaging::l2_to_l1_message::L2ToL1Message"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_logs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "log",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "fields",
                                          "type": {
                                            "kind": "array",
                                            "length": 16,
                                            "type": {
                                              "kind": "field"
                                            }
                                          }
                                        },
                                        {
                                          "name": "length",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::log::Log"
                                    }
                                  },
                                  {
                                    "name": "note_hash_counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::private_log::PrivateLogData"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "contract_class_logs_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 1,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "length",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::log_hash::LogHash"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "tx_request_salt",
                "type": {
                  "kind": "field"
                }
              }
            ],
            "kind": "struct",
            "path": "aztec::protocol_types::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs"
          },
          "visibility": "databus"
        }
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_private"
      ],
      "debug_symbols": "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",
      "is_unconstrained": false,
      "name": "destroy_and_create_no_init_check",
      "verification_key": "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"
    },
    {
      "abi": {
        "error_types": {
          "13455385521185560676": {
            "error_kind": "string",
            "string": "Storage slot 0 not allowed. Storage slots must start from 1."
          },
          "14252875450498112560": {
            "error_kind": "string",
            "string": "Function get_public_value can only be called statically"
          }
        },
        "parameters": [
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "kind": "field"
          },
          "visibility": "public"
        }
      },
      "bytecode": "JwACBAEoAAABBIBFJwAABEUnAgMEAScCBAQAHwoAAwAEAEMtCEMCJQAAAEAtAgJEJwIDBEQnAgQEATsOAAQAAx4CAAMAHgIAAwAeAgADCScCBAEBJAIAAwAAAGElAAABIykCAAMA71JTTScCBAACKwIABQAAAAAAAAAAAwAAAAAAAAAALQgBBicCBwQFAAgBBwEnAwYEAQAiBgIHLQoHCC0OAwgAIggCCC0OBAgAIggCCC0OAggAIggCCC0OBQgtCAECJwIDBAUACAEDAScDAgQBACIGAgMAIgICBD8PAAMABCcCAwQBACoCAwQtCwQEJwICAAAKKgQCAycCAgEACioDAgUkAgAFAAABESUAAAE1HgIAAgAvKgAEAAIAAy0KAwImKgEAAQXFzGK1DtNcMDwEAgEmKgEAAQW6uyHXgjMYZDwEAgEm",
      "custom_attributes": [
        "abi_public",
        "abi_view"
      ],
      "debug_symbols": "rZbbTuMwEIbfxde58IzHh+mrIIRCCShSlFahXWmF+u5rg8dJkGyxwE39Z9x8md8eH97U0/B4fXkY5+fTqzrcvanHZZym8eVhOh37y3iaY/RN6fTjSB1spxyrA3fKxyfA2MZHMJ0K9NEy5tarA+pOgXZZAGRhUIR0kXSRRKxErEScFkEiOAtvRIQsgnwiSBqcgJiE/RCotQiJgERAIigRTGlEW2hAhEQo/ccmYbOwKeKSsFk4ibiQRcrZJHLK2dDt1ikZ8ofLMgxpxDdzEGfm3C/DfFGH+TpNnfrTT9f3P72e+/m9vfRL7I1eh/kpthH4PE5DUrdufVvXX7Xauvy2BfAFAMA7BNQRpB1mBAFSFYF1BAQWD3HSdBVh6og4o2lm3hlRm9WK2zOowfBBCLzxEexXfSB6EILxpurD1RGGyGaEIWcLItK2BP8LIxF+OhKtunJc6spjfSSgwTBx+2AZCwDSNSPQqE7QQRIB0Pw9L4GLF3JVLy0rAaTATTBrFhb2Rqi5Um1ZqXotDMS9EbCNaQ0lCw6FQBD2hEZ5stGSBRvCwjCfhhMaBcqapD5Zs64zQmuZmDKeqxNktydwYyzAS2EgBPoeA01ZaXGbrzKwtX2Cl0kh1Jsd2H85DcNl24mS61aa5aV5PQhctbywwSDDkgeR3gyHCf/BCFQYmy30M+Oriy2usMpiw0aJuniJyAiHgHUnrRJFvxYpeke17QtbU4valfMAdcAaxOhfOBEM/PhwbHtBvXphV02jcc4ba0utO437RO7jY38cl91N9pZgy9g/TkN+fL7Ox03v5e9ZeuQmfF5Ox+HpugyJtF6H03X2zvrO8v0tfe0f",
      "is_unconstrained": true,
      "name": "get_public_value"
    },
    {
      "abi": {
        "error_types": {
          "13455385521185560676": {
            "error_kind": "string",
            "string": "Storage slot 0 not allowed. Storage slots must start from 1."
          },
          "459713770342432051": {
            "error_kind": "string",
            "string": "Not initialized"
          }
        },
        "parameters": [
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "JwACBAEoAAABBIBIJwAABEglAAAARScCBAQCJwIFBAAfCgAEAAUARi0IRgItCEcDJQAAAGUnAgIESCcCAwQAOw4AAwACJwBDAAAnAEQEASsAAEUAAAAAAAAAAAMAAAAAAAAAACYeAgAEAB4CAAQAJwIEBAUtCAAFAAgABAAlAAABMC0CAAAnAgQAAikCAAUA71JTTS0IAQYnAgcEBQAIAQcBJwMGBAEAIgYCBy0KBwgtDgUIACIIAggtDgQIACIIAggtDgIIACIIAggtDEUILQgBAicCBAQFAAgBBAEnAwIEAQAiBgIEACICAgU/DwAEAAUAIgJEBC0LBAQKIgRDAicCBQEACioCBQYkAgAGAAABFyUAAAJIHgIAAgAvKgAEAAIABQAqBQMCMAoAAgAEJh4CAAIAKQIAAwDHMvl3KwIABAAAAAAAAAAAAgAAAAAAAAAALQgBBScCBgQFAAgBBgEnAwUEAQAiBQIGLQoGBy0OAwcAIgcCBy0OAgcAIgcCBy0MQwcAIgcCBy0OBActCAECJwIDBAUACAEDAScDAgQBACIFAgMAIgICBD8PAAMABAAiAkQDLQsDAx4CAAIAKQIABAADbVJ/LQgBBScCBgQFAAgBBgEnAwUEAQAiBQIGLQoGBy0OBAcAIgcCBy0OAgcAIgcCBy0OAwcAIgcCBy0MRQctCAECJwIDBAUACAEDAScDAgQBACIFAgMAIgICBD8PAAMABAAiAkQDLQsDAzMKAAMAAicCAwEBJAIAAgAAAkclAAACWiYqAQABBbq7IdeCMxhkPAQCASYqAQABBQZhOz0Lnb0zPAQCASY=",
      "custom_attributes": [
        "abi_public"
      ],
      "debug_symbols": "tZjfbuI6EMbfJddc2PPPdl9ltapom66QEK1YONJRxbufMXicpJJ92KZ7Az8myZex/Y0n5GN4GZ/Ovx53h9e338PDj4/h6bjb73e/Hvdvz9vT7u2g0Y/B5Q/v/PDAG/2W4SHpt9ff3mWQAuAMuABaBEkhZEgFKBZgMAgFxCJikWCRIAWiM2ADU052r1RuAQ4NsqAmD9fkryAFwCJgEbQIWoQ0DXAZQgHWcwAy6DmACuINLBLIQDOErBM1gl4hqSDmy5MKomaITg+Ry6Ankyj4WAAtQmhgh9gibBGxSJ7DKwRvIAXyHN6ADewWeQ5vkAXjZiAHBqGAt4i3CFgELII5jZQhFshzyJBBz+EcyVN3BXEGXCBYJFgkWiTP4Q1igYQGRZlzzjcot+C87jdQQfEZUgEgA4ugRdAiZBHWNAQysEE+hxRy8qKFwjn5G8QMl8tmsLJ6PB3HMVfVrM60+t63x/FwGh4O5/1+M/yz3Z+vJ/1+3x6u36ftUY+qO8bDi36r4OtuP2a6bKarXftSdizlap2KUAW8TwsJ35Ygl4d7lVAHUFMC2hJaqjYGn7xrSmBbAhznkrpqKOM0FFlqUEcjRFNIs3FEvnccAMGbAgZsjkPaEkjERQLV9lVC1eYK4RtmIq6diY6vhMSGIVoSzZnoSACD+QqYfZVQXDjTd93N1d1uygJgORDfW9No1tStryqQj0uFjjUTOssiIUHVwE/T6TvWTI5sTZNLrq3BPWuZBMZpJJBkqdAxJ2i7tSXxkb6mAVjdCdLJo2NPbTC2KKQtfHJXuDsNTLVUFVM7ja69XJo2T2naC3q7JybLg8jNpgPjH2hEqhqzbeezRrfYpornKK1ig45FxcdgJQ8e2iPpWVSfjapJIQi19i7oLS24uvkoR2iKfMcuCqu30f8ZC7hpLElaaWBncVG3T9MQB1/Zzxf+SE1/dBVkUgihpYCdjTQkZ9tPSNh2GFJvE/Q4NVj9i9Gc0J5NkZ15XVmwKdJbWonW3zAAfmVVGKItLKPzsy4LyzTiNxgd0198XtCH7dlIqDkS6myDQarDQogdDVjfqwnX92qitb2aOh4FAbMoCPKXNLQ3UW2S1G6SFFb36n4a9/Xqnr+mYtO/YdD0BrtvqBT2f7NSBG1NWITbI+k41DsnJqKvcaDZVbhjUU61VLSpSNPmzOvLjWV9uXFYW24c1z8adzXufDQWt7rcemncW259h0H996YsvuUw6YlQffbxNJP4o2qpuyAH+FQtP/Xn9nl3XLzcvGSx4277tB/Lz9fz4Xl29PTvux2xl6Pvx7fn8eV8HLPS7A2pvlv6oXfaeE8/L/l+/wE=",
      "is_unconstrained": true,
      "name": "increment_public_value"
    },
    {
      "abi": {
        "error_types": {
          "13455385521185560676": {
            "error_kind": "string",
            "string": "Storage slot 0 not allowed. Storage slots must start from 1."
          }
        },
        "parameters": [
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "JwACBAEoAAABBIBFJwAABEUnAgQEAicCBQQAHwoABAAFAEMtCEMCLQhEAyUAAABAJwICBEUnAgMEADsOAAMAAh4CAAQAHgIABAApAgAEAO9SU00nAgUAAisCAAYAAAAAAAAAAAMAAAAAAAAAAC0IAQcnAggEBQAIAQgBJwMHBAEAIgcCCC0KCAktDgQJACIJAgktDgUJACIJAgktDgIJACIJAgktDgYJLQgBAicCBAQFAAgBBAEnAwIEAQAiBwIEACICAgU/DwAEAAUnAgQEAQAqAgQFLQsFBScCAgAACioFAgQnAgIBAAoqBAIGJAIABgAAAPolAAABEx4CAAIALyoABQACAAQAKgQDAjAKAAIABSYqAQABBbq7IdeCMxhkPAQCASY=",
      "custom_attributes": [
        "abi_public"
      ],
      "debug_symbols": "rZbbjqMwDIbfhetexHZO7quMRhVt6QgJ0YppV1pVffdNZuMAlRLN6ab8mPLh2D8m9+bY7W9vu348nd+b7cu92U/9MPRvu+F8aK/9eQzRe6Pij9XN1mway82WN40LZ2A3jad09P+PoDgJIBFyCSWCEiGJkEtCgwibhFEijAh5hNUiItAH4VCES8JLxEuEJcIpgiqmwVH4JEAiEP6DEASiiBjBIAhFSESbJGLOGMkxZ1JB2ACkeHtMlezjsWmkxLvr1HWxwouah05c2qkbr812vA3DpvnTDrePP71f2vHjeG2ncDWwu/EYjgF46ocuqsdmvluVbzXK2HS3AXAZAMArBJQRWllMCA2oiwgsI8CzrAEYVBFBZQQqg5QYQdO8FLtm6ArDeSHwYh3efHYdwRcgBHJUXIctI0hrkxCkrcmIQFsS3C9Uwv+0EqoGMNJRdI4zwsDaVnVrmmxNNVcCcZ0FVLyJXrIg9pmgwa8JlZYyKcmCSWNm0FMtoOJNVloawopVmaFrvhAE+XklyHZNMJVagJNXHcHr7zGQsrXCFCszKv7U4KQpGtVi5LhPp0Gc37MguZxG1V6K58lni/bCCkMTSx5aq0U5yH+B4XVmLGbGM0NVXZ4760GXXjasWNSGT2NCWAQsr6RmUXSzSdFZXRo8WGstKpsHYPgWYxFif2EEovvx16C+FlTzWtgW0+AKxJjsdavwW8N46Q8s+qM6znkmLGbxE4Eqg9RxTsIxlR1GVBuCQPPXEUyxr1SzKRklXg/aUhFSa631sukhh7Tuyms4bQ/9tNpAPyJs6tv90KXT0208LK5e/17kimzAL9P50B1vUxdJ8y4cwv74JbjC0OsjPu0f",
      "is_unconstrained": true,
      "name": "increment_public_value_no_init_check"
    },
    {
      "abi": {
        "error_types": {
          "14415304921900233953": {
            "error_kind": "string",
            "string": "Initializer address is not the contract deployer"
          },
          "8502498164115016271": {
            "error_kind": "string",
            "string": "semantic length returned from oracle does not match data"
          },
          "9967937311635654895": {
            "error_kind": "string",
            "string": "Initialization hash does not match"
          }
        },
        "parameters": [
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          },
          {
            "name": "value",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "JwACBAEoAAABBIBIJwAABEglAAAARScCBAQCJwIFBAAfCgAEAAUARi0IRgItCEcDJQAAAHknAgIESCcCAwQAOw4AAwACLAAAQwAwZE5y4TGgKbhQRbaBgVhdKDPoSHm5cJFD4fWT8AAAACkAAEQE/////ycARQQDJh4CAAQAHgIABQAeAgAFAC0IAQYnAgcEAwAIAQcBJwMGBAEAIgYCBzYOAAUABwAnAgcEAQAqBgcILQsICCcCCQQCACoGCQotCwoKHAoIBgAEKgYKCycCBgEBJAIACAAAAOMnAgoEADwGCgEtCAEIJwIKBAMACAEKAScDCAQBACIIAgo2DgAFAAoCACoIBwUtCwUFACoICQotCwoKHAoFCAAEKggKDCQCAAUAAAEvJwIIBAA8BggBJwIFBAAtCAEIJwIKBAIACAEKAScDCAQBACIIAgofOgAHAAUACgAqCAcKLQsKChwKCg0EHAoNCAAtCAEKJwINBAMACAENAScDCgQBACIKAg0fOgAJAAcADQAqCgcNLQsNDQAqCgkOLQsODikCAAoA1S3jaysCAA8AAAAAAAAAAAMAAAAAAAAAAC0IARAnAhEEBQAIAREBJwMQBAEAIhACES0KERItDgoSACISAhItDg0SACISAhItDg4SACISAhItDg8SLQgBCicCDQQFAAgBDQEnAwoEAQAiEAINACIKAg4/DwANAA4AKgoHDS0LDQ0pAgAKABb4ryctCAEOJwIQBAUACAEQAScDDgQBACIOAhAtChARLQ4KEQAiEQIRLQ4IEQAiEQIRLQ4NEQAiEQIRLQ4PES0IAQgnAgoEBQAIAQoBJwMIBAEAIg4CCgAiCAINPw8ACgANACoIBwotCwoKCioMCggkAgAIAAACoCUAAAVsJwIIAAAKKgsICh4CAAwBCiIMQw0WCg0OHAoOEAAEKhAMDicCDAEACioNDBAkAgAQAAAC3ScCEQQAPAYRAQoqCw4MEioKDAskAgALAAAC9CUAAAV+KQIACgDZtRV4LQgBCycCDAQEAAgBDAEnAwsEAQAiCwIMLQoMDS0OCg0AIg0CDS0OAg0AIg0CDS0OAw0AIgsCAjkDIABEAEQABABFAAIgAgACIQIAAy0IAQonAgQEAAAiCgIMLQsMDCcCDQQDACoKDQsiOgADAAUACy0KAwwnAwoEAQAiCgINLQ4MDQAiDQINLQ4MDScCDgQDACoMDg0ACAENAScCDQQALQoMDgYiDgIOCioEDRAkAgAQAAADuy0KBAQjAAADvy0KDgQkAgAQAAAD2QoqBA4RJAIAEQAAA9klAAAFkCQCAAIAAAQCIwAAA+YAIgoCAy0LAwMnAgsEAwAqCgsCPA4DAiMAAAQCCioEBQIkAgACAAAEGCcCAwQAPAYDAR4CAAIALQgBAycCBAQDAAgBBAEnAwMEAQAiAwIENg4AAgAEAgAqAwcELQsEBAAqAwkFLQsFBRwKBAMABCoDBQkkAgAEAAAEaScCAwQAPAYDASkCAAMA7eAidi0IAQQnAgUEBQAIAQUBJwMEBAEAIgQCBS0KBQYtDgMGACIGAgYtDgIGACIGAgYtDgkGACIGAgYtDg8GLQgBAicCAwQFAAgBAwEnAwIEAQAiBAIDACICAgU/DwADAAUAKgIHAy0LAwM0AgADHgIAAgApAgADAMcy+XcrAgAEAAAAAAAAAAACAAAAAAAAAAAtCAEFJwIGBAUACAEGAScDBQQBACIFAgYtCgYJLQ4DCQAiCQIJLQ4CCQAiCQIJLQ4ICQAiCQIJLQ4ECS0IAQInAgMEBQAIAQMBJwMCBAEAIgUCAwAiAgIEPw8AAwAEACoCBwMtCwMDNAIAAyYqAQABBYpVOiwrZ8jvPAQCASYqAQABBcgNc3NuzbThPAQCASYqAQABBXX+8Qg3fIpPPAQCASY=",
      "custom_attributes": [
        "abi_public",
        "abi_initializer"
      ],
      "debug_symbols": "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",
      "is_unconstrained": true,
      "name": "public_constructor"
    },
    {
      "abi": {
        "error_types": {
          "10835759466430049078": {
            "error_kind": "string",
            "string": "Collapse hint vec length mismatch"
          },
          "12913276134398371456": {
            "error_kind": "string",
            "string": "push out of bounds"
          },
          "13049348927268151465": {
            "error_kind": "string",
            "string": "Dirty collapsed vec storage"
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "15764276373176857197": {
            "error_kind": "string",
            "string": "Stack too deep"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "18160147074902047180": {
            "error_kind": "string",
            "string": "Out of bounds index hint"
          },
          "18195344559583857168": {
            "error_kind": "string",
            "string": "Wrong collapsed vec length"
          },
          "459713770342432051": {
            "error_kind": "string",
            "string": "Not initialized"
          },
          "5955197699778714817": {
            "error_kind": "string",
            "string": "Wrong collapsed vec order"
          },
          "8754864405609694316": {
            "error_kind": "string",
            "string": "Wrong collapsed vec content"
          },
          "992401946138144806": {
            "error_kind": "string",
            "string": "Attempted to read past end of BoundedVec"
          }
        },
        "parameters": [
          {
            "name": "owner",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "kind": "field"
          },
          "visibility": "public"
        }
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_utility"
      ],
      "debug_symbols": "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",
      "is_unconstrained": true,
      "name": "summed_values"
    },
    {
      "abi": {
        "error_types": {
          "12469291177396340830": {
            "error_kind": "string",
            "string": "call to assert_max_bit_size"
          },
          "14415304921900233953": {
            "error_kind": "string",
            "string": "Initializer address is not the contract deployer"
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "9967937311635654895": {
            "error_kind": "string",
            "string": "Initialization hash does not match"
          }
        },
        "parameters": [
          {
            "name": "inputs",
            "type": {
              "fields": [
                {
                  "name": "call_context",
                  "type": {
                    "fields": [
                      {
                        "name": "msg_sender",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "contract_address",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                        }
                      },
                      {
                        "name": "function_selector",
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                        }
                      },
                      {
                        "name": "is_static_call",
                        "type": {
                          "kind": "boolean"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::call_context::CallContext"
                  }
                },
                {
                  "name": "anchor_block_header",
                  "type": {
                    "fields": [
                      {
                        "name": "last_archive",
                        "type": {
                          "fields": [
                            {
                              "name": "root",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "next_available_leaf_index",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                        }
                      },
                      {
                        "name": "state",
                        "type": {
                          "fields": [
                            {
                              "name": "l1_to_l2_message_tree",
                              "type": {
                                "fields": [
                                  {
                                    "name": "root",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "next_available_leaf_index",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                              }
                            },
                            {
                              "name": "partial",
                              "type": {
                                "fields": [
                                  {
                                    "name": "note_hash_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "nullifier_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  },
                                  {
                                    "name": "public_data_tree",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "root",
                                          "type": {
                                            "kind": "field"
                                          }
                                        },
                                        {
                                          "name": "next_available_leaf_index",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::state_reference::StateReference"
                        }
                      },
                      {
                        "name": "sponge_blob_hash",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "global_variables",
                        "type": {
                          "fields": [
                            {
                              "name": "chain_id",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "version",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "block_number",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "slot_number",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "timestamp",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 64
                              }
                            },
                            {
                              "name": "coinbase",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::eth_address::EthAddress"
                              }
                            },
                            {
                              "name": "fee_recipient",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            },
                            {
                              "name": "gas_fees",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                        }
                      },
                      {
                        "name": "total_fees",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "total_mana_used",
                        "type": {
                          "kind": "field"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                  }
                },
                {
                  "name": "tx_context",
                  "type": {
                    "fields": [
                      {
                        "name": "chain_id",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "version",
                        "type": {
                          "kind": "field"
                        }
                      },
                      {
                        "name": "gas_settings",
                        "type": {
                          "fields": [
                            {
                              "name": "gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "teardown_gas_limits",
                              "type": {
                                "fields": [
                                  {
                                    "name": "da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  },
                                  {
                                    "name": "l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas::Gas"
                              }
                            },
                            {
                              "name": "max_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            },
                            {
                              "name": "max_priority_fees_per_gas",
                              "type": {
                                "fields": [
                                  {
                                    "name": "fee_per_da_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  },
                                  {
                                    "name": "fee_per_l2_gas",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 128
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                        }
                      }
                    ],
                    "kind": "struct",
                    "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                  }
                },
                {
                  "name": "start_side_effect_counter",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                },
                {
                  "name": "tx_request_salt",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::context::inputs::private_context_inputs::PrivateContextInputs"
            },
            "visibility": "private"
          }
        ],
        "return_type": {
          "abi_type": {
            "fields": [
              {
                "name": "call_context",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "function_selector",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::call_context::CallContext"
                }
              },
              {
                "name": "args_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "returns_hash",
                "type": {
                  "kind": "field"
                }
              },
              {
                "name": "anchor_block_header",
                "type": {
                  "fields": [
                    {
                      "name": "last_archive",
                      "type": {
                        "fields": [
                          {
                            "name": "root",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "next_available_leaf_index",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                      }
                    },
                    {
                      "name": "state",
                      "type": {
                        "fields": [
                          {
                            "name": "l1_to_l2_message_tree",
                            "type": {
                              "fields": [
                                {
                                  "name": "root",
                                  "type": {
                                    "kind": "field"
                                  }
                                },
                                {
                                  "name": "next_available_leaf_index",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                            }
                          },
                          {
                            "name": "partial",
                            "type": {
                              "fields": [
                                {
                                  "name": "note_hash_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "nullifier_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                },
                                {
                                  "name": "public_data_tree",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "root",
                                        "type": {
                                          "kind": "field"
                                        }
                                      },
                                      {
                                        "name": "next_available_leaf_index",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::abis::append_only_tree_snapshot::AppendOnlyTreeSnapshot"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::partial_state_reference::PartialStateReference"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::state_reference::StateReference"
                      }
                    },
                    {
                      "name": "sponge_blob_hash",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "global_variables",
                      "type": {
                        "fields": [
                          {
                            "name": "chain_id",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "version",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "block_number",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 32
                            }
                          },
                          {
                            "name": "slot_number",
                            "type": {
                              "kind": "field"
                            }
                          },
                          {
                            "name": "timestamp",
                            "type": {
                              "kind": "integer",
                              "sign": "unsigned",
                              "width": 64
                            }
                          },
                          {
                            "name": "coinbase",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::eth_address::EthAddress"
                            }
                          },
                          {
                            "name": "fee_recipient",
                            "type": {
                              "fields": [
                                {
                                  "name": "inner",
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                            }
                          },
                          {
                            "name": "gas_fees",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::global_variables::GlobalVariables"
                      }
                    },
                    {
                      "name": "total_fees",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "total_mana_used",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::block_header::BlockHeader"
                }
              },
              {
                "name": "tx_context",
                "type": {
                  "fields": [
                    {
                      "name": "chain_id",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "version",
                      "type": {
                        "kind": "field"
                      }
                    },
                    {
                      "name": "gas_settings",
                      "type": {
                        "fields": [
                          {
                            "name": "gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "teardown_gas_limits",
                            "type": {
                              "fields": [
                                {
                                  "name": "da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                },
                                {
                                  "name": "l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 32
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas::Gas"
                            }
                          },
                          {
                            "name": "max_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          },
                          {
                            "name": "max_priority_fees_per_gas",
                            "type": {
                              "fields": [
                                {
                                  "name": "fee_per_da_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                },
                                {
                                  "name": "fee_per_l2_gas",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 128
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::protocol_types::abis::gas_fees::GasFees"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::abis::gas_settings::GasSettings"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::transaction::tx_context::TxContext"
                }
              },
              {
                "name": "min_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "is_fee_payer",
                "type": {
                  "kind": "boolean"
                }
              },
              {
                "name": "expiration_timestamp",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 64
                }
              },
              {
                "name": "start_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "end_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_non_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "expected_revertible_side_effect_counter",
                "type": {
                  "kind": "integer",
                  "sign": "unsigned",
                  "width": 32
                }
              },
              {
                "name": "note_hash_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifier_read_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::side_effect::counted::Counted"
                              }
                            },
                            {
                              "name": "contract_address",
                              "type": {
                                "fields": [
                                  {
                                    "name": "inner",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::scoped::Scoped"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "key_validation_requests_and_separators",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "request",
                              "type": {
                                "fields": [
                                  {
                                    "name": "pk_m_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "sk_app",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::validation_requests::key_validation_request::KeyValidationRequest"
                              }
                            },
                            {
                              "name": "key_type_domain_separator",
                              "type": {
                                "kind": "field"
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::validation_requests::key_validation_request_and_separator::KeyValidationRequestAndSeparator"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "call_context",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "function_selector",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::function_selector::FunctionSelector"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::call_context::CallContext"
                              }
                            },
                            {
                              "name": "args_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "returns_hash",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "start_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            },
                            {
                              "name": "end_side_effect_counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::abis::private_call_request::PrivateCallRequest"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_call_requests",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 32,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "msg_sender",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "contract_address",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                    }
                                  },
                                  {
                                    "name": "is_static_call",
                                    "type": {
                                      "kind": "boolean"
                                    }
                                  },
                                  {
                                    "name": "calldata_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "public_teardown_call_request",
                "type": {
                  "fields": [
                    {
                      "name": "msg_sender",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "contract_address",
                      "type": {
                        "fields": [
                          {
                            "name": "inner",
                            "type": {
                              "kind": "field"
                            }
                          }
                        ],
                        "kind": "struct",
                        "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                      }
                    },
                    {
                      "name": "is_static_call",
                      "type": {
                        "kind": "boolean"
                      }
                    },
                    {
                      "name": "calldata_hash",
                      "type": {
                        "kind": "field"
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::abis::public_call_request::PublicCallRequest"
                }
              },
              {
                "name": "note_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "kind": "field"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "nullifiers",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "note_hash",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::nullifier::Nullifier"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "l2_to_l1_msgs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 8,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "recipient",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "inner",
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::address::eth_address::EthAddress"
                                    }
                                  },
                                  {
                                    "name": "content",
                                    "type": {
                                      "kind": "field"
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::messaging::l2_to_l1_message::L2ToL1Message"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "private_logs",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 16,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "log",
                                    "type": {
                                      "fields": [
                                        {
                                          "name": "fields",
                                          "type": {
                                            "kind": "array",
                                            "length": 16,
                                            "type": {
                                              "kind": "field"
                                            }
                                          }
                                        },
                                        {
                                          "name": "length",
                                          "type": {
                                            "kind": "integer",
                                            "sign": "unsigned",
                                            "width": 32
                                          }
                                        }
                                      ],
                                      "kind": "struct",
                                      "path": "aztec::protocol_types::abis::log::Log"
                                    }
                                  },
                                  {
                                    "name": "note_hash_counter",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::private_log::PrivateLogData"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "contract_class_logs_hashes",
                "type": {
                  "fields": [
                    {
                      "name": "array",
                      "type": {
                        "kind": "array",
                        "length": 1,
                        "type": {
                          "fields": [
                            {
                              "name": "inner",
                              "type": {
                                "fields": [
                                  {
                                    "name": "value",
                                    "type": {
                                      "kind": "field"
                                    }
                                  },
                                  {
                                    "name": "length",
                                    "type": {
                                      "kind": "integer",
                                      "sign": "unsigned",
                                      "width": 32
                                    }
                                  }
                                ],
                                "kind": "struct",
                                "path": "aztec::protocol_types::abis::log_hash::LogHash"
                              }
                            },
                            {
                              "name": "counter",
                              "type": {
                                "kind": "integer",
                                "sign": "unsigned",
                                "width": 32
                              }
                            }
                          ],
                          "kind": "struct",
                          "path": "aztec::protocol_types::side_effect::counted::Counted"
                        }
                      }
                    },
                    {
                      "name": "length",
                      "type": {
                        "kind": "integer",
                        "sign": "unsigned",
                        "width": 32
                      }
                    }
                  ],
                  "kind": "struct",
                  "path": "aztec::protocol_types::utils::arrays::claimed_length_array::ClaimedLengthArray"
                }
              },
              {
                "name": "tx_request_salt",
                "type": {
                  "kind": "field"
                }
              }
            ],
            "kind": "struct",
            "path": "aztec::protocol_types::abis::private_circuit_public_inputs::PrivateCircuitPublicInputs"
          },
          "visibility": "databus"
        }
      },
      "bytecode": "H4sIAAAAAAAA/+2dd2BURfu2M88EQu/FQgmgYkEU7F0IQVCaIHaNS7LAatgNmw1NUQIqdpMNKgoI0qRIURErCAKKcm5BLIiiiA0sgA0BsXwnhGRPsmwyu8n9ws/P95933DPneubMmZkzJV7qYO6jG1unpLhGBNypKV5/iscbcPu9rvTMlJShfp93QEqqz5sZ8GelBnz+Tfr97IUd012pt3T0Deuc5U1NcqWnZ8/o3aHHJcnB7Kev8gS87sxMSTTIpJVBprompPoXG2RqZI0yyNXYKFcTk1I1NcnUzCRTc5NMiUYlb2GUq6VRrlZGuY5JzJ7b0e9JT/cMyL8+Li4nJy8nZ2ViXOn/U9lzOmRmuv2Ba91+X15OMFj2HcfYeU5N6+Hf0m7KCS/1Sl6cnX31Dceftq3L8JczcpO27Mr7yc4EPcggdNlPZXMSoy9hfaMSessAqctHGZXQe3Hxmle52TP7eLwD0t15ObkGpTWpq7j9zEEZ6W5on9l7NSm6TxUvelVy0TOib5K5eUbFsNlmBR5cdtOILf7gsp8sFrLPJucZtWefUa7BRrn8Bm+pWMuRKFuOKruyJobaTWYoGQgls0LJIaHk0FByWCg5PJQcEUreGkreFkqODCVvj2EMzTWq4TtKx05fuGFZLNhREbGVChMHGRkW9fJluj1pPm/7Xm7/oKyAK+DxeYPjHCPFHY50piM9xJEeNQ46G3o09BjoO4uXPs+ocwaMcmUb1cRdUXZHwyIONco12qiIdxsUMZaXdZcjfbcjPcaRvtN+WWOh74G+F/q+WJra/aWXfmS/r0fEgn0gIlaXq1Lud6SzHOmxjvQDdqU8CP0Q9MPQObGUPrf0SsEbrskxlT7XkR7uSI8oUfogdB60nXgkltI/Wnrp215V69JYsI9FxCaU65U+6kgPc6SdU5zH7LoYD/049BPQE2Lp8bca5RpvVBMTOYPSbUa5Hjcq4iROEUca5XrCqIhPksbNiY70JEf6SUd6gt2eJkNPgX4KemosNXG7Ua7JRjUxjVQT0xzpKY70U470VLsmpkPPgJ4J/XQs48Ks0kv/25U/b4mp9LMc6emO9IMlBsvZ0HOg50I/U3wyq6NeBs0u+z0EQ7PKeaHk/BgmmGbNbLbRK5gXnuv6Erls1nyDZlasBuODoRo8yPOVjBBtdc+LatW5oOIWzAsO8irMKrlkuJLxbbYRa2GZtRln9CQL7V2lGB5lvlEus0d5NvxRSt5k9CjPHnSDbH73rPSAp0+qK93lt5PjgtmzkvI3WF3egEFjCM8ra+vfmFV5+g2pJ7eumfzzEfXGjblo5YOjL2rdxlmUeY70/GgC2vO256CfP8hzLEwe1M+dluZOS8ryD3F3SEsb5wz4nCP9fDDiJDG6kiyCfiF8162sF6qMuu6iaKcXZp+SxaVjG+1Z0DoW7Iuk7+vi0B6+49cXS3yfXoJ+GfoV6Fej3wO1l+ZGT/hStEN79HuEgahG69dYe4QBm21W4CWUPUI7/pIcdm3HlZ3FUddLOXVtN6ulZm10qVGu1wnvwy7j67mm0cvI9D99Z8to72yZWX0sI70NkwlInPE2Ytkj33L+yLc8qpHvDdbIt9xmmxV4BWXks+OviOV0pOx3uMQmm400Syrs+Yu1iUrB7Bkd/H7X8GCZL2+L/5UZJm/4xGJLpyNGVm/acsqLY1v5R9dZ08BKbeFpfW/rLdUWNOy0ZMSOdTtOYZ3y2mdaRr1oZQWtrFaWOL+unMuohv/hmdWqUPLNUPKtUHJ1KPl2KPlOKLkmlLRCSYSS74aSa0PJdbEud6M7BVrlSK8ucQr0HvR66PehP4hl5+JNo1zvGTXPDzm7mW8b5VpvVMSPSGuMDx3pjxzp9x3pD+yXtQH6Y+iN0J+U+1zlLUd6Q4nFzKfQm6A/g/683Acgaxxpq0SYzdBfQG+B/rLcRwrvONKbSxwpfAX9NfQ30N/G0nxglOsro+azldPC3zXK9bVREbdxirjWKNc3RkX8jtQJtzrS2xzp7xzpb+329D30D9A/Qm+PpSbWGeX63qgmdpBqYocj/YMj/aMjvd2uiZ3QP0H/DP1Luff+dzrSn5YYJ36F/g16F/Tv5d37/zWqvf/doeQe2t7/r0ZverfR3v+ew2zvf3dUa6q9Fbf3vzemvf/dRnv/e41Yf1TQ3v8fse397zHKZfYo+ypo73/f4bP3v9uR3hPljvuf0H9Fvff/pyP9VzDi/Ci6kvwN/Q9r7/9vyt5/fBn7Z9u/aDkklk9JfFxRWkVY69gfkniFeEG8Rnx88WEwIdoPSbzB+pK32l9pVNWVKmYsja9UYrVfpXAbJbfMB9zR4ptbi31gTmiR/sXi68c/tKLJG2NnjT/H5V++au7Wn0bvGtRk7QPf9oifR6uz+EpGdVa5guqscuk7JBVUDeX7U3aDh3V8neMTKuzrHJ8Q45+N+8zGmCr0zWKTEI6qq0raLI6vYrPNClyNsVmcH79a1Mdk1UJzTrONY5/98iuiRe+fy5U63y2ZObQWiK8eStaouJ5Q3SxbjcQY9tvzO0yeWbWV3q2C+xcX8dWNOl8Ng1cQfUOrlh/eKL5ZKWtSumOCDTYbomoxTlj2xzf7GiYYlbJ2DKUsM3YUA3mdcg4tZZfFf2BoKe/MoFxDS91Qsl7FDS11zbLVS4ztFfrzzKrNaGipa8SqRxla7E5T1+xZzDqN2bPUj2WWa4A1ytWAcnKd3yjM+lLDKMeVoNGLrGwPq0YZa9sji1lBG0W7CDZbv/nMmlsswSvijzKOYwQ22XVozQgsBoGPZwTWBoFPiGWXpSzoiQzoSYwqijcI3IYRuJJB4JMZgSsbBG7LCJxgEPgURuAqBoFPZQSuahC4HSNwNYPA7RmBqxsEPo0RuIZB4NMZgWsaBD6DEbiWQeAzGYFrGwQ+ixG4jkHgsxmB6xoEPocRuJ5B4HMZgesbBD6PEbiBQeDzGYEbGgS+gBG4kUHgCxmBGxsEvogR+AiDwBczAh9pELgDI/BRBoE7MgIfbRA4iRG4iUHgTozATQ0CJzMCNzMI3JkRuLlB4EsYgRMNAndhBG5hELgrI3BLg8CXMgK3Mgh8GWPR3Y0B7c7Y1Oph9JdEXsbbOcageD0Zz9yrAg4OwkMHjY567M3O+kYZG9jbrSat4nLKnqy9uV7H9OiqkUmd966wg6Oo+00fBvQKBrQvA3olA3oVA3o1A3oNA3otA3odA3o9A3oDA3ojA5rCgN7EgLoY0H4MaCoDmsaAuhnQ/gzoAAZ0IAPqYUBvZkBvYUDTGdBBDKiXAfUxoBkM6GAG1M+AZjKgAQY0iwEdwoAOZUCHMaDDGdARDOitDOhtDOhIBvR2BvQOBtQaRaFmU6ijKdQxFOqdFOpdFOrdFOpYCvUeCvVeCvU+CvV+CvUBCvVBCvUhCvVhCjWHQs2lUIMUah6FOo5CfYRCfZRCfYxCHU+hPk6hPkGhTqBQJ1KokyjUJynUyRTqFAr1KQp1KoU6jUKdTqHOoFBnUqhPU6izKNTZFOocCnUuhfoMhTqPQp1PoS6gUBdSqM9SqM9RqM9TqIso1Bco1MUU6osU6ksU6ssU6isU6qsU6msU6hIKdSmF+jqFuoxCXU6hvkGhrqBQV1KoqyjUNynUtyjU1RTq2xTqOxTqGgrVolBBob5Loa6lUNdRqO9RqOsp1Pcp1A8o1A8p1I8o1A0U6scU6kYK9RMK9VMKdROF+hmF+jmFuplC/YJC3UKhfkmhfkWhfk2hfkOhfkuhbqVQt1Go31Go31OoP1CoP1Ko2ynUHRTqTgr1Jwr1Zwr1Fwr1Vwr1Nwp1F4X6O4W6m0LdQ6HupVD/oFD3Uah/Uqh/Uah/U6j/MKgw+K89xoRVHKxwsJqDjedgK3GwlTnYBA62CgdblYOtxsFW52BrcLA1OdhaHGxtDrYOB1uXg63HwdbnYBtwsA052EYcbGMO9ggO9kgO9igO9mgOtgkH25SDbcbBNudgEznYFhxsSw62FQd7DAd7LAd7yJzf4Fi/zUIfMu83OOZv5Lu/G29N6rs0Z9vUcZ+tmLE4/f4/Kr+z7PXLP3Z/2XbS2UeqU+quD3+isrEnBU30XoMO3Ztsc+hCn3zoGlFbTiM6ZWViQsctwRM/THhi12lj2n78XbN9L/hbTsxdvX3CR6uOS6j67L4rYmlEp5o0onjSAr4dB9uegz2Ngz2dgz2Dgz2Tgz2Lgz2bgz2Hgz2Xgz2Pgz2fg72Ag72Qg72Ig72Yg+3AwXbkYJM42E4cbDIH25mDvYSD7cLBduVgL+VgL+Ngu3Gw3TnYHhxsTw62Fwd7OQfbm4Ptw8FewcH25WCv5GCv4mCv5mCv4WCv5WCv42Cv52Bv4GBv5GBTONibOFgXB9uPg03lYNM4WDcH25+DHcDBDuRgPRzszRzsLRxsOgc7iIP1crA+DjaDgx3Mwfo52EwONsDBZnGwQzjYoRzsMA52OAc7goO9lYO9jYMdycHezsHewcGO4mCzOdjRHOwYDvZODvYuDvZuDnYsB3sPB3svB3sfB3s/B/sAB/sgB/sQB/swB5vDweZysEEONo+DHcfBPsLBPsrBPsbBjudgH+dgn+BgJ3CwEznYSRzskxzsZA52Cgf7FAc7lYOdxsFO52BncLAzOdinOdhZHOxsDnYOBzuXg32Gg53Hwc7nYBdwsAs52Gc52Oc42Oc52EUc7Asc7GIO9kUO9iUO9mUO9hUO9lUO9jUOdgkHu5SDfZ2DXcbBLudg3+BgV3CwKznYVRzsmxzsW6X/Wzc7//nnn1iwqzmlfZuDfYeDXcPBWhwsONh3Odi1HOw6DvY9DnY9B/s+B/sBB/shB/sRB7uBg/2Yg93IwX7CwX7KwW7iYD/jYD/nYDdzsF9wsFs42C852K842K852G842G852K0c7DYO9jsO9nsO9gcONmohsJlgYHvQRDBAsi/u4DzTTpNn0qSF7k8c7M8c7C8c7K8c7G8c7C4O9ncOdjcHu4eD3cvB/sHB7uNg/+Rg/+Jg/+ZgOb5h4fiGhfPFE45vWDi+YeH4hoWjKxKOb1g4vmHh+IaF4xsWjm9YOL5h4fiGheMbFo5vWDi+YeH4hoXjG5Z6HCzHNywc37BwfMPC8Q0LxzcsHN+wcHzDwvENC8c3LBzfsDQtexkfC5bjGxaOb1g4vmHh+IaF4xsWjm9YOL5h4fiG5TgOtjUHezwHy3EAy4kc7EkcbBsO9mQOlmPclVM42FM5WI5LV9pzsByXrnBcusJx6QrHpSscl65wXLrCcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcelKbw6W49IVjktXOC5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3huHSF49IVjktXOC5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3huHSF49IVjktXOC5d4bh0hePSFY5LVzguXfFzsByXrnBcusJx6QrHpSscl65wXLrCcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcelKkIPluHSF49IVjktXOC5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3huHSF49IVjktXOC5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3huHSF49IVjktXOC5d4bh0hePSFY5LV57jYDkuXeG4dIXj0hWOS1c4Ll3huHSF49IVjktXOC5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3hKIaE49IVjktX3uJgOS5d4bh0hePSFY5LVzguXeG4dIXj0hWOS1c4Ll3huHRlPQfLcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcekKx6UrHJeucFy6wnHpCselKxyXrnBcusJx6QrHpSscl65wXLrCcenKjxzsdg52Bwe7k4Pl+G+F47+VXzhYjv9WOP5b4fhvheO/FY7/Vjj+W+H4b4XjvxWO/1Y4/lvh+G+F478Vjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvN8d9qjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvN8d9qjv9Wc/y3muO/1fU4WI7/VnP8t5rjv9Uc/63m+G81x3+rOf5bzfHfao7/VnP8t7opB8vx32qO/1Zz/Lea47/VHP+t5vhvNcd/qzn+W83x32qO/1Zz/Lea47/VHP+t5vhvNcd/qzn+W83x32qO/1Zz/Lea47/V7TlYjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvN8d9qjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvN8d9qjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvN8d9qjv9Wc/y3muO/1Rz/reb4bzXHf6s5/lvdm4Pl+G81x3+rOf5bzfHfao7/VnP8t5rjv9Uc/63m+G81x3+rOf5bzfHfao7/VnP8t5rjv9Uc/63m+G81x3+rOf5bzfHfao7/VnP8t5rjv9Uc/62O2n8bDJb932w81ii0kSO3u3uQzz+8q9cTyGu0SV9yXOvjTzjxpDYntz3l1HbtTzv9jDPPOvucc887/4ILL7q4Q8ekTsmdL+nS9dLLunXv0bPX5b37XNH3yquuvuba666/4caUm1z9UtPc/QcM9Nx8S/ogry9jsD8zkDVk6LDhI269beTtd1ijrGxrtDXGutO6y7rbGmvdY91r3Wfdbz1gPWg9ZD1s5Vi5VtDKs8ZZj1iPWo9Z463HrSesCdZEa5L1pDXZmmI9ZU21plnTrRnWTOtpa5Y125pjzbWeseZZ860F1kLrWes563lrkfWCtdh60XrJetl6xXrVes1aYi21XreWWcutN6wV1kprlfWm9Za12nrbesdaY1kWrHettdY66z1rvfW+9YH1ofWRtcH62NpofWJ9am2yPrM+tzZbX1hbrC+tr6yvrW+sb62t1jbrO+t76wfrR2u7tcPaaf1k/Wz9Yv1q/Wbtsn63dlt7rL3WH9Y+60/rL+tv6x+oOCgFJVAaKh6qElRlqASoKlBVoapBVYeqAVUTqhZUbag6UHWh6kHVh2oA1RCqEVRjqCOgjoQ6CupoqCZQTaGaQTWHSoRqAdUSqhXUMVDHQh0H1RrqeKgToE6EOgmqDdTJUG2hToE6FaodVHuo06BOhzoD6kyos6DOhjoH6lyo86DOh7oA6kKoi6AuhuoA1REqCaoTVDJUZ6hLoLpAdYW6FOoyqG5Q3aF6QPWE6gV1OVRvqD5QV0D1hboS6iqoq6GugboW6jqo66FugLoRKgXqJigXVD+oVKg0KDdUf6gBUAOhPFA3Q90ClQ41CMoL5YPKgBoM5YfKhApAZUENgRoKNQxqONQIqFuhboMaCXU71B1Qo6CyoUZDjYG6E+ouqLuhxkLdA3Uv1H1Q90M9APUg1ENQD0PlQOVCBaHyoMZBPQL1KNRjUOOhHod6AmoC1ESoSVBPQk2GmgL1FNRUqGlQ06FmQM2EehpqFtRsqDlQc6GegZoHNR9qAdRCqGehnoN6HmoR1AtQi6FehHoJ6mWoV6BehXoNagnUUqjXoZZBLYd6A2oF1EqoVVBvQr0FtRrqbah3oNZAWVCAehdqLdQ6qPeg1kO9D/UB1IdQH0FtgPoYaiPUJ1CfQm2C+gzqc6jNUF9AbYH6EuorqK+hvoH6Fmor1Dao76C+h/oB6keo7VA7oHZC/QT1M9QvUL9C/Qa1C+p3qN1Qe6D2Qv0BtQ/qT6i/oP6G+gcSB1EQgWhIPKQSpDIkAVIFUhVSDVIdUgNSE1ILUhtSB1IXUg9SH9IA0hDSCNIYcgTkSMhRkKMhTSBNIc0gzSGJkBaQlpBWkGMgx0KOg7SGHA85AXIi5CRIG8jJkLaQUyCnQtpB2kNOg5wOOQNyJuQsyNmQcyDnQs6DnA+5AHIh5CLIxZAOkI6QJEgnSDKkM+QSSBdIV8ilkMsg3SDdIT0gPSG9IJdDekP6QK6A9IVcCbkKcjXkGsi1kOsg10NugNwISYHcBHFB+kFSIWkQN6Q/ZABkIMQDuRlyCyQdMgjihfggGZDBED8kExKAZEGGQIZChkGGQ0ZAboXcBhkJuR1yB2QUJBsyGjIGcifkLsjdkLGQeyD3Qu6D3A95APIg5CHIw5AcSC4kCMmDjIM8AnkU8hhkPORxyBOQCZCJkEmQJyGTIVMgT0GmQqZBpkNmQGZCnobMgsyGzIHMhTwDmQeZD1kAWQh5FvIc5HnIIsgLkMWQFyEvQV6GvAJ5FfIaZAlkKeR1yDLIcsgbkBWQlZBVkDchb0FWQ96GvANZA7EggLwLWQtZB3kPsh7yPuQDyIeQjyAbIB9DNkI+gXwK2QT5DPI5ZDPkC8gWyJeQryBfQ76BfAvZCtkG+Q7yPeQHyI+Q7ZAdkJ2QnyA/Q36B/Ar5DbIL8jtkN2QPZC/kD8g+yJ+QvyB/Q/6BjoPO//tdaA0dD10JujJ0AnQV6KrQ1aCrQ9eArgldC7o2dB3outD1oOtDN4BuCN0IujH0EdBHQh8FfTR0E+im0M2gm0MnQreAbgndCvoY6GPt8377bN4+R7fPvO3zafss2T73tc9o7fNU++zTPqe0zxTt8z/7rM4+V7PPwOzzKvtsyT4Hss9s7PMV+yzEPrewzxjs8wB7797eZ7f3xO39a3uv2d4Xtvdw7f1We2/U3se09xzt/UF7L8/ed7P3yOz9LHvvyd4nsvd07P0Xe6/E3tew9yDs/QJ7bW+vw+01s72+tdei9rrRXuPZ6zF77WSvc+w1ib1+sOf69rzcnkPb8117bmrPI+05nz0/s+dS9pxmTm93IMvv7eQKuDbFHRenRMdXqpxQpWq16jVq1qpdp269+g0aNmp8xJFHHd2kabPmiS1atjrm2JycicHs6R1SPf66wbXrEn74bc2bA3JyDvxUP/ynM4Nr51Vf33HJ5Co3Fv50dvhPFwXX3tf33DYnDVi9s/CnbsG1q2tmZnqxaEvhTz3D8e5w1oDwn3zhN/rDf7LuC67dnlX7zPVokb4pLjV7TvKwDL87M9Pj8+bllC067RXtDQOjvcEV7Q2Z0d7gjvaGxGhvSD38askb7Q0DDr9qTaMXKUCPkHr4FSmN/uJ89NYadZH6R3tDFv0Z+E3D8y94cUPpDx2gj95RP3TGf5/dw+Kzyx/ub4n2hrb0au1KH1sTD78u6qH3h8R/QZGi7g/D6CPf/5czsjb0N51Fb3z870OraG+4jv4VTaffEPUULuoJVsp/sxlGLf23iWByww3R3hA3IbjxeNf+89OUVN+gDFfA0y/dneLzu1Lt/xvi9ueDUob6XRkZbv+muDrZM5J83sxAXvbMTvZOXGpAsp/u6g24B7j90/qe1r7sY9WS96uo7h+VXPL+uOjiJ2dPT3Klp+dWL+LM6u1Otx96iDvKJ4kLJ+hoCc/klyXN3opN8mUML3qkZGeZHPCCktcqd8mTK6Dk0/sEfBm5wQglLfGOkmZ09rjTy/5TkWYlb+xkeGPCzIJd7ey5nX1+t2eAN7+mHrHb9YiAOzVlkCczNaWgiScVtfCe+xv4lQXtO387eF7BSX6HtLT83lNU9Ai/dwpmz+zjGZSR7i4oYvF/OlCc4MZET2aKe5g7NSuQ34s83hS/2+5SBV0sY6Ar0/1v6FHlbU0qnBBfMT0pyVkmB9zuSc7mGUo4o2ZP6+4bUqyFF2Ur6Ik1D+QobBLOrOWtk07lrhMV3keL1UHxrnJcQVfJ8A9J8WQmF7bYrt7eRe21V35zzS3ZHULs3MIuUFTMqX3bRc4v4fkPXumhCIW9aukAd/63yhuwu3DA7lSZAZc31W0nAm6/12Uf4xx7iLtUr3J2qV7/B7tUWZ2lcSmdpdiVZGeAYlc6h8c7cOWS0JVKxa90CV2pXPxK19CVhOJXLg1dqVL8ymWhK1WLX+kWulKt+JXuoSvVi1/pEbpSo/iVnqErNcPfZK1yDyW1oyPUCB9KajlhxYaSJQUjSVYgPcXup0kHumnXA710YuQBJOKV+IhXKkW8UjnilYSIV6pEvFI14pVqEa9Uj3ilRsQrNSNeqTWxtPnG4fRPJkP+gftKGetLXittrIkP7/2OH8L6v+OHsBHA8UPYGOD4IWwUcPwQNg44fggbCRw/hI0Fjh8cDaTEtZqOJlL4fZyf5s5fyfky3SkD7Y/ipriGh/h72Lmc38PO/8LvYc2YvoflfYqDfAsqRUeQ8G9Bsf53YGp9sIuhVje9b7v2Z4dlddbfgRFiXkeP1+Ufvv8femaMc2SY1ierXxmrz9DVwmVk/XZxG5pvPmP4SY3O9PUccufmK+bd3mDaCVtrH7Ej6/whezf5IserNK17VnqEp4ptGKtU2F1npQcKO2rjf19HjY+2eZW3gRp01NI+GI6OGvbuivrqQbtwckWu/5Lp67/ITX1m8uAsV3pmhBY989KsQRld+zu/sfWyp+f/mFunlP46q5s9F7hioMsbaXNrP6FhaZtb9nrS4KkjTw6kKEjkHhsf2rrJtFeZ9pp3oL0odnsGuQYUbYoWbYYe6nXmoe+u+n/eXcu7+ZlUAV/AsCZW9PrC2JWjrc+5BT3IvqlnxiNF4Gn2ZHr/9khRJOdKp6s3raDOyjtiFA8eClEUPvyZS8xWdMR5THz4TPzAlUol5g+O3YKDdtGIA3Ph5n7LcreS8s84y9oiP+h7Tij5nnWojopVWZVQhmK/Vw3VdsFY1zx7ejefK60oQ+UQYYZdPr87/NbKBy9blZJlqxJqAge9oWrJG6qWcUO1om/EQcMkhD49hTccXbTvf/CGGx/ecMVRCOe2xcuhDVB74O9ij/u9Dgz7+YcDs7u4XRkd/H7XcGe/l8ibGcHsGQXZS6x5JcJBQZsDR3BDXOmetJSMrH7pntSUVLtgKfkjY4kvz6RD/N3pVM7vTqd/4Xqu/AeKnfhjTrEt/1ahFl/Q+K7Mb3u99je9wqrJyTHfzilqy8d6fQFP/+EpqX63K+BOS/Fmpad7+nvc/sJmnOH3DRv+XyP+rxEf/JmiacSJoUZc0OqSChpdj8I2F1ML/j8w9ycc2x72S/VDP/dXxLm//Df3L8fcv1OFzf2T/5v7/zf3L3Pur6Kf+6uDf20WFnRg+84Ujzf/ry0eLzm0Nyznp6VBxQzLcaHyFIFLfgQN/2ArLmynsLBNF24+lowpYS1AVwn7hBpGV5Gix03r5BkSGmeLylDYnYseu7Aigq84X97+Kk4ZnGVPRNzewPiSxasW6/f1wP3VK/g1VguBI9SHzDkQ0FEtcaH6iXCX2n9WEnpvZWbPP8oJpxcb3BztoMTLqF70OP8PeVIOJwCqAQA=",
      "custom_attributes": [
        "abi_private",
        "abi_initializer"
      ],
      "debug_symbols": "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",
      "is_unconstrained": false,
      "name": "wrong_constructor",
      "verification_key": "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"
    },
    {
      "abi": {
        "error_types": {
          "3078752124079901409": {
            "error_kind": "string",
            "string": "Function __emit_public_init_nullifier can only be called by the same contract"
          }
        },
        "parameters": [],
        "return_type": null
      },
      "bytecode": "JwACBAEoAAABBIBEJwAABEQlAAAAPScCAgQAJwIDBAAfCgACAAMARCUAAABjJwICBEQnAgMEADsOAAMAAiwAAEMAMGROcuExoCm4UEW2gYFYXSgz6Eh5uXCRQ+H1k/AAAAAmHgIAAgEKIgJDAxYKAwQcCgQFAAQqBQIEJwICAQAKKgMCBSQCAAUAAACWJwIGBAA8BgYBHgIAAgAKKgQCAyQCAAMAAACtJQAAAUYeAgACACcCAwAAKQIABADHMvl3KwIABQAAAAAAAAAAAgAAAAAAAAAALQgBBicCBwQFAAgBBwEnAwYEAQAiBgIHLQoHCC0OBAgAIggCCC0OAggAIggCCC0OAwgAIggCCC0OBQgtCAECJwIDBAUACAEDAScDAgQBACIGAgMAIgICBD8PAAMABCcCAwQBACoCAwQtCwQENAIABCYqAQABBSq57L6zQwrhPAQCASY=",
      "custom_attributes": [
        "abi_public"
      ],
      "debug_symbols": "rVbbjuIwDP2XPvMQO4kT8yuj0ahAGVWqCurASivEv68zjVsYKdHO7L7gE4ecHl/i9tYcut31/a0fj6ePZvtya3ZTPwz9+9tw2reX/jSK99aY9MPcbO2mAeOarU+WZwt29kOcLco6JBtna/PaQbY0Wy+sYBLwAkAAGQUxgyBnIT0kiAeTJ9oMGGeAYBWEDFC3UD1WPVY9Sc0MfAZJzwycAs6A9BGUZWBIhDYByiCCAvWwejh7rAEFSYYTAKhAPZj+E+73TaMleLtMXZcq8FATqdS5nbrx0mzH6zBsml/tcP3808e5HT/tpZ1kVxLcjQexQnjshy6h+2Y9bcpHwSHm0+AcLQRS+ScKKFMgEHLmEOxwIaFnDixzWKcMltwqIvpviPBhERFEfUGEK3M41ER6eCDwP8ql98VcUpmCTcwMjKsCSelfSyBYJEQoSoiVTBqf2nfOpPE2lDLJFY6gYSCXy1mLw7LTOPxDR32No0bhScspTWnLnV1pSySnHEi0Xi+A54qA/Q/5BPevCa2HYh5CseVQKt0ZiFRGCNGVOUKlw63x2uL2obL2ayyxdkucZpQNmzIH1yaOUtgYFwYZ488jy9QyisvEIet/xGEZtM+l47nMUamsk3GXOWSCre0F4RsyAiwyQllGvcFoeQsQx2JzoK/cWWZc5hezh+KrhGoXH9fZ4en5trzKst3309O3zz2RTX27G7q8PF7H/cPu5fdZd/Tb6Tyd9t3hOnWJaf2AAnmzv3ja+Ph6T0/7Aw==",
      "is_unconstrained": true,
      "name": "__emit_public_init_nullifier"
    },
    {
      "abi": {
        "error_types": {
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "9530675838293881722": {
            "error_kind": "string",
            "string": "Writer did not write all data"
          }
        },
        "parameters": [
          {
            "name": "messages",
            "type": {
              "fields": [
                {
                  "name": "storage",
                  "type": {
                    "kind": "array",
                    "length": 16,
                    "type": {
                      "fields": [
                        {
                          "name": "ciphertext",
                          "type": {
                            "fields": [
                              {
                                "name": "storage",
                                "type": {
                                  "kind": "array",
                                  "length": 15,
                                  "type": {
                                    "kind": "field"
                                  }
                                }
                              },
                              {
                                "name": "len",
                                "type": {
                                  "kind": "integer",
                                  "sign": "unsigned",
                                  "width": 32
                                }
                              }
                            ],
                            "kind": "struct",
                            "path": "std::collections::bounded_vec::BoundedVec"
                          }
                        },
                        {
                          "name": "recipient",
                          "type": {
                            "fields": [
                              {
                                "name": "inner",
                                "type": {
                                  "kind": "field"
                                }
                              }
                            ],
                            "kind": "struct",
                            "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                          }
                        },
                        {
                          "name": "tx_hash",
                          "type": {
                            "fields": [
                              {
                                "name": "_is_some",
                                "type": {
                                  "kind": "boolean"
                                }
                              },
                              {
                                "name": "_value",
                                "type": {
                                  "kind": "field"
                                }
                              }
                            ],
                            "kind": "struct",
                            "path": "std::option::Option"
                          }
                        },
                        {
                          "name": "anchor_block_timestamp",
                          "type": {
                            "kind": "integer",
                            "sign": "unsigned",
                            "width": 64
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::messages::processing::offchain::OffchainMessage"
                    }
                  }
                },
                {
                  "name": "len",
                  "type": {
                    "kind": "integer",
                    "sign": "unsigned",
                    "width": 32
                  }
                }
              ],
              "kind": "struct",
              "path": "std::collections::bounded_vec::BoundedVec"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_utility"
      ],
      "debug_symbols": "tZzdbhy3EoTfRde+mG7++1UCI1AcJRAgyIZiH+Ag8LuH3cNirWIMs9pd3Xg/RztVJIddQ3IU/333+8Nv3//89fH5jy9/3X385e+7314en54e//z16cvn+2+PX577f/37brM/cpC7j+HDXU7l7mPun7n/52afMj51fIbxGcdnGp95fJbxWcdn2z/L0CtDrwy90q+XzaBfIGrQBtT+VYkGCgiACEiADCiACmgD2gaAcoNyg3KDcjPlZJABBVABbYeybQABKMAuLwYFUAFtgGwAASggACIgAaAsUBYoC5QVygplhbJCWaGsUFYoK5QVygrlAOUA5QDlAOUA5QDl0JV1MyiACujK2ke+xA0gAAUEQAQkQAYUQAVAOUE5QTmZcjYIgAgw5WqQAWWAFUWwNlsVBDXoXw4maHWwQwH0ZgSbCVYKDlYLOwhAAQEQAaZs7SkZUAAVYMrWsLoBBGDKzSAAIiABMqAAKqArR+up1c4OAlBAV442CFY70bpstbNDBnTlaN2x2tmh7VCtdnYQgAICwJSzQQJkQBlgRRSrgQAUEAD9qiQGBVABvT2p96JayewgAAUEQAQkgCkHgwKogDbAKiVFAxO0Nlul7BABJlgMMqAAKqANsErZQQCmbD21StkhAhKgK+fNoAAqoCtna6FVyg4CUEAAREACZEABVACUM5QzlK2Ist1lK5lsg2Als4NdZf2yktlBADq+YyWzQwQkQAZA2Uom2yBYyThYyeRmIAAFBHwnAhIgAwoAylYyxWaUlcwOAlBAAERAAnTlYjPKSmaHrlys8VYyBs1KZgcBKCAAIiABMqAAKgDKAmUrolINFBAAXbluBgmQB1jtVDXoX67JIAISwL5sFlYpO1RAG2APlx0EoABTLgYRkAAZYMrNoALaACuZZk21ktlBAQEQAQmQAba8EYMKaAOsZHYw5WiggAAwZRsEK5kdMqAAKqAN8LWYgynbIPhqzCEAIsB07Db5CsyhDfA1mIM9oDdrq9XMoDTJnv6b3UUrm0F1UgNZ5QySSTrJPYJRnJQm5UmubL3zdZqTL9R2cmXrly/VdgqT4qQ0KU8qk9zDZoav2Ixk8zXbQCG6TXMMxEg0J1ufdjQrCY6FaGZSHdtEX+INFKISAzESzc2WRx0zkW6+5BtIN6Wb0k3ppnRTuvkCcCDdfBE4kG6+ENwx0C3QLdAt0C3QLdAtZCLdQiXSLW5EukW6RbpFukW6RbrFQqRbbBMT3ZIQ6ZboluiW6JboluiWOEsS3azSgXTLSqRbplumW6ZbplumW+YsKXSzxyqQbp4TA+lW6FboVuhW6FboVjlLKt08MAbSzSNjIN0q3SrdKt0q3RrdGmdJo5unyEC6eY4MpFujW6Nbm26ybUQhKnG6iWfJwOkmzBLZCi+rRLoxS4RZIswSYZaI0I1ZIkI3ZokI3ZglwiwRZokwS4RZIswSUboxS0TpxiwRpRuzRJglwiwRZokwS4RZIoFuzBIJdGOWSKQbs0SYJcIsEWaJMEuEWSKRbswSiXRjlkiiG7NEmCXCLBFmiTBLhFkiiW7MEsl0Y5ZIphuzRJglwiwRZokwS4RZIpluzBIpdGOWSKEbs0SYJcIsEWaJMEuEWSKVbswSqXRjlkilG7NEmCXCLBFmiTBLhFkijW7MEml0Y5ZIoxuzRJglwiwRZokyS5RZott0U2aJbtNNmSW6ZV5WiJVIN2aJMkuUWaJCN2aJCt2YJSp0Y5Yos0SZJcosUWaJMktU6cYs0T1L1NHc/KseGupN8NAYqETvRHaMxER02eJYiJXYJnpoDBSiEt3NW+ahMTARM9HdoqEHgTbHQDSF4H33IAjimImFWIltogfBQCHSLdPNg2BgImZiIbqb3woPgh09CIKPugfBQCUGovfNO+9BMDATC7ES20QPgoEy2+BBMDAQIzERM9HdkmMlupvPEg+CgUJUorv5JPAgGJiImViIldiAwYPA2xA8CAYqMRAjMRHdrTkWYiW2iR4EA4WoRHerjn7YvjkWYiX6kbvd4+AlP1CIfvAeHQMxEhMxEwuxEt3Ne+xJMFCISnQ3+fHjwx3egvz67eXhwV6CnLwW6S9Lvt6/PDx/u/v4/P3p6cPd/+6fvvuX/vp6/+yf3+5f+k97dx+ef++fXfCPx6cHox8fePV2fKklSRqXW1LolOjLxVcicizSz6KHRD/qnQJFXl2vx9dXS26/vh8isgFN39CLIrMXKeXDXsRjkT7B69DoszpRIr+WSIt29LcxczT7CxmK5LNb0R+BaEV/Eh22oixakbYNA9pZt4NW1GOJ/twqQ6E/rMqBwLINflQx2tDXFheMhGSORDy+H7KamXb0ss/Msp3MrO0N/UiF/ShHd9Rm8GFH+gk9OtKPwi8azFDZiKQHEquZ2V8GZs7Mw1ZIvrYf/9GIeNKIetSIuqpSe80zqrTW41nR3lejn9ljfvcz+pO5lePr2FvMTjvsQnbbaVc5VlmkZ5SMQY2WmdCI8fUs17CaYTrnVzhRCOe3grkV++LouBWr+dHXZWhGOKn4n9qx0Aj9je2cpLIdt6O8r0YPrznJOpfTUX39XNPFLOvn7xiRjvFYY9mS0GbV5fiqP69VwmKuhoyZ2kfn8M4sFSIKJqR2rLCYpXELCKC4nTyVfupHWD3Z0A9NelErtKIRfd1+PEcXGZbyhqmR+jQ57ke5wViUq8eiXD0Wq9nZT5aZgTkc9yQu5laK0EjpeHYuFRSzM4Xj2RlvMDvj1bMzhve9I6XMvOiH5+m4JysVlXlb+/HMpXODy+n+ImDRknZ9taXt+nu70jjv3i4Vrr63vfF19iPLRc+Ts8civa/GmeOZrh7P5aqnYXcQw2KlkNoNVj3rlWRgpWg5Xo/mhUrb4lxt9JdXUyPU9FpDV0/5MJdOXFn3M6fXCqu1aEtz59hOevIWjX4oDY1+Eq2XafCR0M9Cy4UacyXZj0vDZRqZe/F8koFv0wizLzlfphGa4LHQF5TtUKOsclTKNncJ28l+p7yhGfOop+NxM9abtzpPnNqmh8VSVtM0hjDrNoZ0XHIlXr95K+nazduyFWdu3kq5PsbKDTZepb2vxvmbtyrXb97WLTl381bDtVuvGq9/YK80zntgLxXOemDX7frFYK03GIt69VjUa8diObfO3no1vXbj1G6wcWpXb5xaeN/xPHfj1G6wcfqPO3vmxqndYOMk2w12TkuR8+7uWuLq23t+T+I7i5w7HFcn6XrNcN7WR7Z6g0XDeiHGyR6j1MOFmMi2eruRuHM52Rpr+dedWb1vijMAYj3ZMWztDb2JRdmbKhcuTiM3UV1RFmOyXJ2WzNXpakzS6mxuvrxK8dXy498i+QZZJFefd65H5HSlfLLa/nlEVvFcOOurcJ6UN+xgci5zByPh+Pbq8kR+27guZAnXN6xx83wN1vKrp9WFGuF4re2/onT1BNEbHEstRc6cZXr1wdT6AKTqPABpFx6iyJweHS87zOnmkRrtwnbwAEQuPQDxX70ZGunCwxzhIYqkC8eDiapS44UaHNN+unWhRq3UuHA8dB6AqObj8fBfXrjyRGj5kvTMDDpbY5VBy3dI52ZQ1Btk0ErkzAxaShxn0Kf+1/vPjy+v/h/+Hyb18nj/29PD+Osf358/n/z02/+/4if4NwC+vnz5/PD795cHU+I/BND/+KUvB+VDr/b26cNd6H+3rWoO2yf7RWX/cX8f3f/QTz+sPf8A",
      "is_unconstrained": true,
      "name": "offchain_receive"
    },
    {
      "abi": {
        "error_types": {
          "11194752367584870169": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              }
            ],
            "length": 27
          },
          "13455385521185560676": {
            "error_kind": "string",
            "string": "Storage slot 0 not allowed. Storage slots must start from 1."
          },
          "14252875450498112560": {
            "error_kind": "string",
            "string": "Function get_public_value can only be called statically"
          },
          "14415304921900233953": {
            "error_kind": "string",
            "string": "Initializer address is not the contract deployer"
          },
          "3078752124079901409": {
            "error_kind": "string",
            "string": "Function __emit_public_init_nullifier can only be called by the same contract"
          },
          "459713770342432051": {
            "error_kind": "string",
            "string": "Not initialized"
          },
          "8502498164115016271": {
            "error_kind": "string",
            "string": "semantic length returned from oracle does not match data"
          },
          "9967937311635654895": {
            "error_kind": "string",
            "string": "Initialization hash does not match"
          }
        },
        "parameters": [
          {
            "name": "selector",
            "type": {
              "kind": "field"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "JwACBAEoAAABBIBNJwAABE0lAAAAQScCAwQBJwIEBAAfCgADAAQATC0ITAIlAAAAtycCAgRNJwIDBAA7DgADAAIsAABDADBkTnLhMaApuFBFtoGBWF0oM+hIeblwkUPh9ZPwAAAAKQAARAT/////JwBFBAMnAEYAACcARwEBJwBIBAEpAABJAMcy+XcrAABKAAAAAAAAAAACAAAAAAAAAAArAABLAAAAAAAAAAADAAAAAAAAAAAmKQIAAwAyTeYvCioCAwQnAgUEACcCBwQDACoFBwYtCAEDAAgBBgEnAwMEAQAiAwIGLQ4FBgAiBgIGLQ4FBicCBgQDACoDBgUnAgUEAicCBgQAJwIHAQApAgAIANm1FXgkAgAEAAABIyMAAAYYLQgBBCcCCQQDAAgBCQEnAwQEAQAiBAIJHzIABQBIAAkAIgRICS0LCQkAKgQFCi0LCgoeAgAEAB4CAAsAHgIACwAtCAEMJwINBAMACAENAScDDAQBACIMAg02DgALAA0AACIMSA0tCw0NACoMBQ4tCw4OHAoNDAAEKgwODyQCAA0AAAGwJwIMBAA8BgwBLQgBDCcCDQQDAAgBDQEnAwwEAQAiDAINNg4ACwANAgAiDEgLLQsLCwAqDAUNLQsNDRwKCwwABCoMDQ4kAgALAAAB/CcCDAQAPAYMAS0IAQsnAgwEAgAIAQwBJwMLBAEAIgsCDB84AEgABgAMACILSAwtCwwMHAoMDQQcCg0LAC0IAQwnAg0EAwAIAQ0BJwMMBAEAIgwCDR8yAAUASAANACIMSA0tCw0NACoMBRAtCxAQKQIADADVLeNrLQgBEScCEgQFAAgBEgEnAxEEAQAiEQISLQoSEy0ODBMAIhMCEy0ODRMAIhMCEy0OEBMAIhMCEy0MSxMtCAEMJwINBAUACAENAScDDAQBACIRAg0AIgwCED8PAA0AEAAiDEgNLQsNDSkCAAwAFvivJy0IARAnAhEEBQAIAREBJwMQBAEAIhACES0KERItDgwSACISAhItDgsSACISAhItDg0SACISAhItDEsSLQgBCycCDAQFAAgBDAEnAwsEAQAiEAIMACILAg0/DwAMAA0AIgtIDC0LDAwKKg4MCyQCAAsAAANTJQAADG8KIg9GCx4CAAwBCiIMQw0WCg0OHAoOEAAEKhAMDgoqDQcMJAIADAAAA4YnAhAEADwGEAEKKg8ODBIqCwwNJAIADQAAA50lAAAMgS0IAQsnAgwEBAAIAQwBJwMLBAEAIgsCDC0KDA0tDggNACINAg0tDgkNACINAg0tDgoNACILAgk5AyAARABEAAQARQAJIAIABCECAAktCAELJwIKBAAAIgsCDS0LDQ0nAg4EAwAqCw4MIjoACQAGAAwtCgkNJwMLBAEAIgsCDi0ODQ4AIg4CDi0ODQ4nAg8EAwAqDQ8OAAgBDgEnAg4EAC0KDQ8GIg8CDwoqCg4QJAIAEAAABFstCgoKIwAABF8tCg8KJAIAEAAABHkKKgoPESQCABEAAAR5JQAADJMkAgAEAAAEoiMAAASGACILAgktCwkJJwIMBAMAKgsMBDwOCQQjAAAEogoqCgYEJAIABAAABLgnAgkEADwGCQEeAgAEAC0IAQknAgoEAwAIAQoBJwMJBAEAIgkCCjYOAAQACgIAIglICi0LCgoAKgkFCy0LCwscCgoJAAQqCQsMJAIACgAABQknAgkEADwGCQEpAgAJAO3gInYtCAEKJwILBAUACAELAScDCgQBACIKAgstCgsNLQ4JDQAiDQINLQ4EDQAiDQINLQ4MDQAiDQINLQxLDS0IAQQnAgkEBQAIAQkBJwMEBAEAIgoCCQAiBAILPw8ACQALACIESAktCwkJNAIACR4CAAQALQgBCScCCgQFAAgBCgEnAwkEAQAiCQIKLQoKCy0MSQsAIgsCCy0OBAsAIgsCCy0MRgsAIgsCCy0MSgstCAEEJwIKBAUACAEKAScDBAQBACIJAgoAIgQCCz8PAAoACwAiBEgJLQsJCTQCAAktCwMEACIEAgQtDgQDACIDAgktCwkJJwIKBAMAKgMKBDsOAAkABCMAAAYYKQIABABb2fLaCioCBAknAgQAAikCAAoA71JTTSQCAAkAAAZBIwAAB1UtCAEJJwILBAMACAELAScDCQQBACIJAgsfMgAFAEgACwAiCUgLLQsLCwAqCQUMLQsMDB4CAAkAHgIACQAnAgkEDS0IAA0ACAAJACUAAAylLQIAAC0IAQknAg0EBQAIAQ0BJwMJBAEAIgkCDS0KDQ4tDgoOACIOAg4tDgQOACIOAg4tDgsOACIOAg4tDEsOLQgBCycCDQQFAAgBDQEnAwsEAQAiCQINACILAg4/DwANAA4AIgtICS0LCQkKIglGCwoqCwcNJAIADQAABxIlAAANmh4CAAsALyoACQALAA0AKg0MCzAKAAsACS0LAwkAIgkCCS0OCQMAIgMCCy0LCwsnAgwEAwAqAwwJOw4ACwAJIwAAB1UKKgIICSQCAAkAAAdnIwAACGQtCAEIJwIJBAMACAEJAScDCAQBACIIAgkfMgAFAEgACQAiCEgJLQsJCQAqCAULLQsLCx4CAAUAHgIABQAtCAEFJwIIBAUACAEIAScDBQQBACIFAggtCggMLQ4KDAAiDAIMLQ4EDAAiDAIMLQ4JDAAiDAIMLQxLDC0IAQgnAgkEBQAIAQkBJwMIBAEAIgUCCQAiCAIMPw8ACQAMACIISAUtCwUFCiIFRggKKggHCSQCAAkAAAghJQAADZoeAgAIAC8qAAUACAAJACoJCwgwCgAIAAUtCwMFACIFAgUtDgUDACIDAggtCwgIJwIJBAMAKgMJBTsOAAgABSMAAAhkKQIABQC7GQl+CioCBQgkAgAIAAAIfyMAAAmuLQgBBScCCAQCAAgBCAEnAwUEAQAiBQIIHzAASABIAAgAIgVICC0LCAgeAgAFAB4CAAUAHgIABQkkAgAFAAAIxCUAAA2sLQgBBScCCQQFAAgBCQEnAwUEAQAiBQIJLQoJCy0OCgsAIgsCCy0OBAsAIgsCCy0OCAsAIgsCCy0MSwstCAEEJwIIBAUACAEIAScDBAQBACIFAggAIgQCCT8PAAgACQAiBEgFLQsFBQoiBUYECioEBwgkAgAIAAAJQiUAAA2aHgIABAAvKgAFAAQACCcCBQQBJwIKBAMAKgUKCS0IAQQACAEJAScDBAQBACIEAgktDgUJACIJAgktDgUJJwIJBAMAKgQJBS0KBQktDggJACIEAggtCwgIJwIJBAMAKgQJBTsOAAgABSMAAAmuKQIABADuIeV7CioCBAUkAgAFAAAJySMAAAqpHgIABAEKIgRDBRYKBQgcCggJAAQqCQQICioFBwQkAgAEAAAJ9ycCCQQAPAYJAR4CAAQACioIBAUkAgAFAAAKDiUAAA2+HgIABAAtCAEFJwIIBAUACAEIAScDBQQBACIFAggtCggJLQxJCQAiCQIJLQ4ECQAiCQIJLQxGCQAiCQIJLQxKCS0IAQQnAggEBQAIAQgBJwMEBAEAIgUCCAAiBAIJPw8ACAAJACIESAUtCwUFNAIABS0LAwQAIgQCBC0OBAMAIgMCBS0LBQUnAggEAwAqAwgEOw4ABQAEIwAACqknAgMCVScCBAJuJwIFAmsnAgYCbycCCAJ3JwIJAiAnAgoCcycCCwJlJwIMAmwnAg0CYycCDgJ0JwIPAnInAhACeycCEQJ9LQgBEicCEwQcAAgBEwEnAxIEAQAiEgITLQoTFC0OAxQAIhQCFC0OBBQAIhQCFC0OBRQAIhQCFC0OBBQAIhQCFC0OBhQAIhQCFC0OCBQAIhQCFC0OBBQAIhQCFC0OCRQAIhQCFC0OChQAIhQCFC0OCxQAIhQCFC0ODBQAIhQCFC0OCxQAIhQCFC0ODRQAIhQCFC0ODhQAIhQCFC0OBhQAIhQCFC0ODxQAIhQCFC0OCRQAIhQCFC0OEBQAIhQCFC0OChQAIhQCFC0OCxQAIhQCFC0ODBQAIhQCFC0OCxQAIhQCFC0ODRQAIhQCFC0ODhQAIhQCFC0OBhQAIhQCFC0ODxQAIhQCFC0OERQnAgMAAQoiB0cEJAIABAAADG8nAgUEHi0IAQYnAggEHgAIAQgBLQoGCCoDAAgFm1u/90pb/xkAIggCCAAiEgIJJwIKBBstAgkDLQIIBC0CCgUlAAAN0CcCCQQbACoICQgtDgMIACIIAggtDgIIACIIAgg8DgUGKgEAAQWKVTosK2fI7zwEAgEmKgEAAQXIDXNzbs204TwEAgEmKgEAAQV1/vEIN3yKTzwEAgEmHgIAAgAtCAEDJwIEBAUACAEEAScDAwQBACIDAgQtCgQFLQxJBQAiBQIFLQ4CBQAiBQIFLQxGBQAiBQIFLQxKBS0IAQInAgQEBQAIAQQBJwMCBAEAIgMCBAAiAgIFPw8ABAAFACICSAMtCwMDHgIAAgApAgAEAANtUn8tCAEFJwIGBAUACAEGAScDBQQBACIFAgYtCgYHLQ4EBwAiBwIHLQ4CBwAiBwIHLQ4DBwAiBwIHLQxLBy0IAQInAgMEBQAIAQMBJwMCBAEAIgUCAwAiAgIEPw8AAwAEACICSAMtCwMDMwoAAwACJAIAAgAADZklAAAOAiYqAQABBbq7IdeCMxhkPAQCASYqAQABBcXMYrUO01wwPAQCASYqAQABBSq57L6zQwrhPAQCASYAAAMFBy0AAwgtAAQJIwAADfQtAQgGLQQGCQAACAIIAAAJAgkMAAgHCiQAAAoAAA3iJioBAAEFBmE7PQudvTM8BAIBJg==",
      "custom_attributes": [
        "abi_public"
      ],
      "debug_symbols": "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",
      "is_unconstrained": true,
      "name": "public_dispatch"
    },
    {
      "abi": {
        "error_types": {
          "1064022259863234536": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "integer",
                "sign": "unsigned",
                "width": 32
              }
            ],
            "length": 101
          },
          "10791800398362570014": {
            "error_kind": "string",
            "string": "extend_from_bounded_vec out of bounds"
          },
          "11767537932002121452": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "integer",
                "sign": "unsigned",
                "width": 32
              }
            ],
            "length": 66
          },
          "12820178569648940736": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 48
          },
          "12913276134398371456": {
            "error_kind": "string",
            "string": "push out of bounds"
          },
          "14990209321349310352": {
            "error_kind": "string",
            "string": "attempt to add with overflow"
          },
          "16431471497789672479": {
            "error_kind": "string",
            "string": "Index out of bounds"
          },
          "17110599087403377004": {
            "error_kind": "fmtstring",
            "item_types": [],
            "length": 98
          },
          "17655676068928457687": {
            "error_kind": "string",
            "string": "Reader did not read all data"
          },
          "1998584279744703196": {
            "error_kind": "string",
            "string": "attempt to subtract with overflow"
          },
          "226260835993583084": {
            "error_kind": "string",
            "string": "unrecognized origin state"
          },
          "361444214588792908": {
            "error_kind": "string",
            "string": "attempt to multiply with overflow"
          },
          "5421095327929394772": {
            "error_kind": "string",
            "string": "attempt to bit-shift with overflow"
          },
          "5449178635769758673": {
            "error_kind": "fmtstring",
            "item_types": [
              {
                "kind": "field"
              },
              {
                "kind": "field"
              }
            ],
            "length": 61
          },
          "5877671415717063005": {
            "error_kind": "string",
            "string": "get_shared_secrets: response length does not match request length"
          },
          "9530675838293881722": {
            "error_kind": "string",
            "string": "Writer did not write all data"
          },
          "9791669845391776238": {
            "error_kind": "string",
            "string": "0 has a square root; you cannot claim it is not square"
          },
          "9829419490427811213": {
            "error_kind": "string",
            "string": "DstLen too large for offset"
          },
          "992401946138144806": {
            "error_kind": "string",
            "string": "Attempted to read past end of BoundedVec"
          }
        },
        "parameters": [
          {
            "name": "scope",
            "type": {
              "fields": [
                {
                  "name": "inner",
                  "type": {
                    "kind": "field"
                  }
                }
              ],
              "kind": "struct",
              "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
            },
            "visibility": "private"
          }
        ],
        "return_type": null
      },
      "bytecode": "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",
      "custom_attributes": [
        "abi_utility"
      ],
      "debug_symbols": "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",
      "is_unconstrained": true,
      "name": "sync_state"
    }
  ],
  "name": "StatefulTest",
  "noir_version": "1.0.0-beta.22+c57152f91260ecdb9faad4efc20abb14b6d2ece7",
  "outputs": {
    "globals": {
      "storage": [
        {
          "fields": [
            {
              "name": "contract_name",
              "value": {
                "kind": "string",
                "value": "StatefulTest"
              }
            },
            {
              "name": "fields",
              "value": {
                "fields": [
                  {
                    "name": "notes",
                    "value": {
                      "fields": [
                        {
                          "name": "slot",
                          "value": {
                            "kind": "integer",
                            "sign": false,
                            "value": "0000000000000000000000000000000000000000000000000000000000000001"
                          }
                        }
                      ],
                      "kind": "struct"
                    }
                  },
                  {
                    "name": "public_values",
                    "value": {
                      "fields": [
                        {
                          "name": "slot",
                          "value": {
                            "kind": "integer",
                            "sign": false,
                            "value": "0000000000000000000000000000000000000000000000000000000000000002"
                          }
                        }
                      ],
                      "kind": "struct"
                    }
                  }
                ],
                "kind": "struct"
              }
            }
          ],
          "kind": "struct"
        }
      ]
    },
    "structs": {
      "functions": [
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::constructor_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::constructor_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::create_note_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::create_note_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::create_note_no_init_check_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::create_note_no_init_check_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "recipient",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::destroy_and_create_no_init_check_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::destroy_and_create_no_init_check_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::get_public_value_parameters"
              }
            },
            {
              "name": "return_type",
              "type": {
                "kind": "field"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::get_public_value_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::increment_public_value_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::increment_public_value_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::increment_public_value_no_init_check_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::increment_public_value_no_init_check_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "messages",
                    "type": {
                      "fields": [
                        {
                          "name": "storage",
                          "type": {
                            "kind": "array",
                            "length": 16,
                            "type": {
                              "fields": [
                                {
                                  "name": "ciphertext",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "storage",
                                        "type": {
                                          "kind": "array",
                                          "length": 15,
                                          "type": {
                                            "kind": "field"
                                          }
                                        }
                                      },
                                      {
                                        "name": "len",
                                        "type": {
                                          "kind": "integer",
                                          "sign": "unsigned",
                                          "width": 32
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "std::collections::bounded_vec::BoundedVec"
                                  }
                                },
                                {
                                  "name": "recipient",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "inner",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                                  }
                                },
                                {
                                  "name": "tx_hash",
                                  "type": {
                                    "fields": [
                                      {
                                        "name": "_is_some",
                                        "type": {
                                          "kind": "boolean"
                                        }
                                      },
                                      {
                                        "name": "_value",
                                        "type": {
                                          "kind": "field"
                                        }
                                      }
                                    ],
                                    "kind": "struct",
                                    "path": "std::option::Option"
                                  }
                                },
                                {
                                  "name": "anchor_block_timestamp",
                                  "type": {
                                    "kind": "integer",
                                    "sign": "unsigned",
                                    "width": 64
                                  }
                                }
                              ],
                              "kind": "struct",
                              "path": "aztec::messages::processing::offchain::OffchainMessage"
                            }
                          }
                        },
                        {
                          "name": "len",
                          "type": {
                            "kind": "integer",
                            "sign": "unsigned",
                            "width": 32
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "std::collections::bounded_vec::BoundedVec"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::offchain_receive_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::offchain_receive_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  },
                  {
                    "name": "value",
                    "type": {
                      "kind": "field"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::public_constructor_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::public_constructor_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "owner",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::summed_values_parameters"
              }
            },
            {
              "name": "return_type",
              "type": {
                "kind": "field"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::summed_values_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [
                  {
                    "name": "scope",
                    "type": {
                      "fields": [
                        {
                          "name": "inner",
                          "type": {
                            "kind": "field"
                          }
                        }
                      ],
                      "kind": "struct",
                      "path": "aztec::protocol_types::address::aztec_address::AztecAddress"
                    }
                  }
                ],
                "kind": "struct",
                "path": "StatefulTest::sync_state_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::sync_state_abi"
        },
        {
          "fields": [
            {
              "name": "parameters",
              "type": {
                "fields": [],
                "kind": "struct",
                "path": "StatefulTest::wrong_constructor_parameters"
              }
            }
          ],
          "kind": "struct",
          "path": "StatefulTest::wrong_constructor_abi"
        }
      ]
    }
  },
  "transpiled": true,
  "aztec_version": "5.0.0"
}
